Cache.MarkDelete(I);
else
{
- // preserver the information if the package was auto
- // or manual installed
+ // preserve the information whether the package was auto
+ // or manually installed
bool autoInst = (Cache[I].Flags & pkgCache::Flag::Auto);
Cache.MarkInstall(I, false, 0, !autoInst);
}
*/
string Configuration::FindFile(const char *Name,const char *Default) const
{
+ const Item *RootItem = Lookup("RootDir");
+ std::string rootDir = (RootItem == 0) ? "" : RootItem->Value;
+ if(rootDir.size() > 0 && rootDir[rootDir.size() - 1] != '/')
+ rootDir.push_back('/');
+
const Item *Itm = Lookup(Name);
if (Itm == 0 || Itm->Value.empty() == true)
{
Itm = Itm->Parent;
}
- return val;
+ return rootDir + val;
}
/*}}}*/
// Configuration::FindDir - Find a directory name /*{{{*/
#include <termios.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
+#include <sys/statfs.h>
#include <sys/statvfs.h>
#include <signal.h>
#include <unistd.h>
#include <sstream>
/*}}}*/
+#define RAMFS_MAGIC 0x858458f6
+
using namespace std;
ostream c0out(0);
if (DebBytes != FetchBytes)
ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"),
SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
- else
+ else if (DebBytes != 0)
ioprintf(c1out,_("Need to get %sB of archives.\n"),
SizeToStr(DebBytes).c_str());
// Size delta
if (Cache->UsrSize() >= 0)
- ioprintf(c1out,_("After unpacking %sB of additional disk space will be used.\n"),
+ ioprintf(c1out,_("After this operation, %sB of additional disk space will be used.\n"),
SizeToStr(Cache->UsrSize()).c_str());
else
- ioprintf(c1out,_("After unpacking %sB disk space will be freed.\n"),
+ ioprintf(c1out,_("After this operation, %sB disk space will be freed.\n"),
SizeToStr(-1*Cache->UsrSize()).c_str());
if (_error->PendingError() == true)
return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
OutputDir.c_str());
if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
- return _error->Error(_("You don't have enough free space in %s."),
- OutputDir.c_str());
+ {
+ struct statfs Stat;
+ if (statfs(OutputDir.c_str(),&Stat) != 0 ||
+ unsigned(Stat.f_type) != RAMFS_MAGIC)
+ return _error->Error(_("You don't have enough free space in %s."),
+ OutputDir.c_str());
+ }
}
// Fail safe check
(Cache[Pkg].Flags & pkgCache::Flag::Auto) &&
_config->FindB("APT::Get::ReInstall",false) == false)
{
- ioprintf(c1out,_("%s set to manual installed.\n"),
+ ioprintf(c1out,_("%s set to manually installed.\n"),
Pkg.Name());
Cache->MarkAuto(Pkg,false);
AutoMarkChanged++;
return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
OutputDir.c_str());
if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
- return _error->Error(_("You don't have enough free space in %s"),
- OutputDir.c_str());
+ {
+ struct statfs Stat;
+ if (statfs(OutputDir.c_str(),&Stat) != 0 ||
+ unsigned(Stat.f_type) != RAMFS_MAGIC)
+ return _error->Error(_("You don't have enough free space in %s"),
+ OutputDir.c_str());
+ }
// Number of bytes
if (DebBytes != FetchBytes)
# We don't use a secret keyring, of course, but gpg panics and
# implodes if there isn't one available
-GPG_CMD="gpg --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg"
+GPG_CMD="gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg"
GPG="$GPG_CMD --keyring /etc/apt/trusted.gpg"
fi
# add new keys
- $GPG_CMD --quiet --batch --keyring $ARCHIVE_KEYRING --export | $GPG --ignore-time-conflict --import
+ $GPG_CMD --quiet --batch --keyring $ARCHIVE_KEYRING --export | $GPG --import
# remove no-longer used keys
keys=`$GPG_CMD --keyring $REMOVED_KEYS --with-colons --list-keys | grep ^pub | cut -d: -f5`
fi
}
+if ! which apt-config >/dev/null; then
+ exit 0
+fi
UpdateInterval=0
DownloadUpgradeableInterval=0
closes: #452862.
* Applied patch from Alexander Winston <alexander.winston@comcast.net>
to use 'min' as symbol for minute, closes: #219034.
+ * Applied patch from Amos Waterland <apw@us.ibm.com> to allow apt to
+ work properly in initramfs, closes: #448316.
+ * Applied patch from Robert Millan <rmh@aybabtu.com> to make apt-key and
+ apt-get to ignore time conflicts, closes: #451328.
+ * Applied patch from Peter Eisentraut <peter_e@gmx.net> to fix a
+ grammatical error ("manual installed" -> "manually installed"),
+ closes: #438136.
+ * Fix cron.daily job to not call fail if apt isn't installed, closes:
+ #443286.
[ Program translations ]
- Basque updated. Closes: #453088
+ - Vietnamese updated. Closes: #453774
+ - Japanese updated. Closes: #456909
+ - French updated.
[ Michael Vogt ]
* debian/rules
- support lzma data members
* ftparchive/multicompress.cc:
- support lzma output
+
+ [ Daniel Burrows ]
+ * apt-pkg/contrib/configuration.cc:
+ - if RootDir is set, then FindFile and FindDir will return paths
+ relative to the directory stored in RootDir, closes: #456457.
+
+ [ Christian Perrier ]
+ * Fix wording for "After unpacking...". Thans to Michael Gilbert
+ for the patch. Closes: #260825
- -- Otavio Salvador <otavio@ossystems.com.br> Sat, 08 Dec 2007 12:13:58 -0200
+ -- Christian Perrier <bubulle@debian.org> Mon, 17 Dec 2007 10:10:17 +0530
apt (0.7.9) unstable; urgency=low
<literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</literal>
<literal>dpkg-buildpackage</literal> and <literal>apt-cache</literal> specify the location
of the respective programs.</para>
+
+ <para>
+ The configuration item <literal>RootDir</literal> has a special
+ meaning. If set, all paths in <literal>Dir::</literal> will be
+ relative to <literal>RootDir</literal>, <emphasis>even paths that
+ are specified absolutely</emphasis>. So, for instance, if
+ <literal>RootDir</literal> is set to
+ <filename>/tmp/staging</filename> and
+ <literal>Dir::State::status</literal> is set to
+ <filename>/var/lib/dpkg/status</filename>, then the status file
+ will be looked up in
+ <filename>/tmp/staging/var/lib/dpkg/status</filename>.
+ </para>
</refsect1>
<refsect1><title>APT in DSelect</title>
Args[i++] = gpgvpath.c_str();
Args[i++] = "--status-fd";
Args[i++] = "3";
+ Args[i++] = "--ignore-time-conflict";
Args[i++] = "--keyring";
Args[i++] = pubringpath.c_str();
+2007-12-18 Kenshi Muto <kmuto@debian.org>
+
+ * ja.po: Updated to 536t. Closes: #456909
+
+2007-12-17 Christian Perrier <bubulle@debian.org>
+
+ * fr.po: completed to 536t.
+
+2007-12-17 Christian Perrier <bubulle@debian.org>
+
+ * Update all PO files and apt-all.pot. 536 strings.
+ Formerly complete PO files are now 530t6f
+
+2007-12-15 Christian Perrier <bubulle@debian.org>
+
+ * fr.po: completed to 542t.
+
+2007-12-15 Christian Perrier <bubulle@debian.org>
+
+ * Update all PO files and apt-all.pot. 542 strings.
+ Formerly complete PO files are now 536t6f
+
+2007-12-01 Clytie Siddall <clytie@riverland.net.au>
+
+ * vi.po: updated to 536t.
+
2007-11-27 Piarres Beobide <pi@beobide.net>
* eu.po: updated to 536t.
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-06-07 00:57+0200\n"
+"POT-Creation-Date: 2007-12-17 10:36+0530\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"
msgstr ""
#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:550
-#: cmdline/apt-get.cc:2564 cmdline/apt-sortpkgs.cc:144
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
#, c-format
-msgid "%s %s for %s %s compiled on %s %s\n"
+msgid "%s %s for %s compiled on %s %s\n"
msgstr ""
#: cmdline/apt-cache.cc:1721
" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:819
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
msgid "Unable to write to %s"
msgstr ""
msgid "Cannot get debconf version. Is debconf installed?"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:167 ftparchive/apt-ftparchive.cc:341
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
msgid "Package extension list is too long"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:169 ftparchive/apt-ftparchive.cc:183
-#: ftparchive/apt-ftparchive.cc:206 ftparchive/apt-ftparchive.cc:256
-#: ftparchive/apt-ftparchive.cc:270 ftparchive/apt-ftparchive.cc:292
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
msgid "Error processing directory %s"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:254
+#: ftparchive/apt-ftparchive.cc:251
msgid "Source extension list is too long"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:371
+#: ftparchive/apt-ftparchive.cc:368
msgid "Error writing header to contents file"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:401
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
msgid "Error processing contents %s"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:556
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
"Usage: apt-ftparchive [options] command\n"
"Commands: packages binarypath [overridefile [pathprefix]]\n"
" -o=? Set an arbitrary configuration option"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:762
+#: ftparchive/apt-ftparchive.cc:759
msgid "No selections matched"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:835
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
msgid "Some files are missing in the package file group `%s'"
msgstr ""
-#: ftparchive/cachedb.cc:47
+#: ftparchive/cachedb.cc:43
#, c-format
msgid "DB was corrupted, file renamed to %s.old"
msgstr ""
-#: ftparchive/cachedb.cc:65
+#: ftparchive/cachedb.cc:61
#, c-format
msgid "DB is old, attempting to upgrade %s"
msgstr ""
-#: ftparchive/cachedb.cc:76
+#: ftparchive/cachedb.cc:72
msgid ""
"DB format is invalid. If you upgraded from a older version of apt, please "
"remove and re-create the database."
msgstr ""
-#: ftparchive/cachedb.cc:81
+#: ftparchive/cachedb.cc:77
#, c-format
msgid "Unable to open DB file %s: %s"
msgstr ""
-#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193
-#: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121 methods/gpgv.cc:272
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr ""
-#: ftparchive/cachedb.cc:242
+#: ftparchive/cachedb.cc:238
msgid "Archive has no control record"
msgstr ""
-#: ftparchive/cachedb.cc:448
+#: ftparchive/cachedb.cc:444
msgid "Unable to get a cursor"
msgstr ""
-#: ftparchive/writer.cc:79
+#: ftparchive/writer.cc:76
#, c-format
msgid "W: Unable to read directory %s\n"
msgstr ""
-#: ftparchive/writer.cc:84
+#: ftparchive/writer.cc:81
#, c-format
msgid "W: Unable to stat %s\n"
msgstr ""
-#: ftparchive/writer.cc:135
+#: ftparchive/writer.cc:132
msgid "E: "
msgstr ""
-#: ftparchive/writer.cc:137
+#: ftparchive/writer.cc:134
msgid "W: "
msgstr ""
-#: ftparchive/writer.cc:144
+#: ftparchive/writer.cc:141
msgid "E: Errors apply to file "
msgstr ""
-#: ftparchive/writer.cc:161 ftparchive/writer.cc:191
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
msgid "Failed to resolve %s"
msgstr ""
-#: ftparchive/writer.cc:173
+#: ftparchive/writer.cc:170
msgid "Tree walking failed"
msgstr ""
-#: ftparchive/writer.cc:198
+#: ftparchive/writer.cc:195
#, c-format
msgid "Failed to open %s"
msgstr ""
-#: ftparchive/writer.cc:257
+#: ftparchive/writer.cc:254
#, c-format
msgid " DeLink %s [%s]\n"
msgstr ""
-#: ftparchive/writer.cc:265
+#: ftparchive/writer.cc:262
#, c-format
msgid "Failed to readlink %s"
msgstr ""
-#: ftparchive/writer.cc:269
+#: ftparchive/writer.cc:266
#, c-format
msgid "Failed to unlink %s"
msgstr ""
-#: ftparchive/writer.cc:276
+#: ftparchive/writer.cc:273
#, c-format
msgid "*** Failed to link %s to %s"
msgstr ""
-#: ftparchive/writer.cc:286
+#: ftparchive/writer.cc:283
#, c-format
msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: ftparchive/writer.cc:390
+#: ftparchive/writer.cc:387
msgid "Archive had no package field"
msgstr ""
-#: ftparchive/writer.cc:398 ftparchive/writer.cc:613
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
msgid " %s has no override entry\n"
msgstr ""
-#: ftparchive/writer.cc:443 ftparchive/writer.cc:701
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: ftparchive/writer.cc:623
+#: ftparchive/writer.cc:620
#, c-format
msgid " %s has no source override entry\n"
msgstr ""
-#: ftparchive/writer.cc:627
+#: ftparchive/writer.cc:624
#, c-format
msgid " %s has no binary override entry either\n"
msgstr ""
-#: ftparchive/contents.cc:317
+#: ftparchive/contents.cc:321
#, c-format
msgid "Internal error, could not locate member %s"
msgstr ""
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
msgid "realloc - Failed to allocate memory"
msgstr ""
-#: ftparchive/override.cc:38 ftparchive/override.cc:146
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
msgid "Unable to open %s"
msgstr ""
-#: ftparchive/override.cc:64 ftparchive/override.cc:170
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
msgid "Malformed override %s line %lu #1"
msgstr ""
-#: ftparchive/override.cc:78 ftparchive/override.cc:182
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
msgid "Malformed override %s line %lu #2"
msgstr ""
-#: ftparchive/override.cc:92 ftparchive/override.cc:195
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
msgid "Malformed override %s line %lu #3"
msgstr ""
-#: ftparchive/override.cc:131 ftparchive/override.cc:205
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
msgid "Failed to read the override file %s"
msgstr ""
-#: ftparchive/multicompress.cc:75
+#: ftparchive/multicompress.cc:72
#, c-format
msgid "Unknown compression algorithm '%s'"
msgstr ""
-#: ftparchive/multicompress.cc:105
+#: ftparchive/multicompress.cc:102
#, c-format
msgid "Compressed output %s needs a compression set"
msgstr ""
-#: ftparchive/multicompress.cc:172 methods/rsh.cc:91
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr ""
-#: ftparchive/multicompress.cc:198
+#: ftparchive/multicompress.cc:195
msgid "Failed to create FILE*"
msgstr ""
-#: ftparchive/multicompress.cc:201
+#: ftparchive/multicompress.cc:198
msgid "Failed to fork"
msgstr ""
-#: ftparchive/multicompress.cc:215
+#: ftparchive/multicompress.cc:212
msgid "Compress child"
msgstr ""
-#: ftparchive/multicompress.cc:238
+#: ftparchive/multicompress.cc:235
#, c-format
msgid "Internal error, failed to create %s"
msgstr ""
-#: ftparchive/multicompress.cc:289
+#: ftparchive/multicompress.cc:286
msgid "Failed to create subprocess IPC"
msgstr ""
-#: ftparchive/multicompress.cc:324
+#: ftparchive/multicompress.cc:321
msgid "Failed to exec compressor "
msgstr ""
-#: ftparchive/multicompress.cc:363
+#: ftparchive/multicompress.cc:360
msgid "decompressor"
msgstr ""
-#: ftparchive/multicompress.cc:406
+#: ftparchive/multicompress.cc:403
msgid "IO to subprocess/file failed"
msgstr ""
-#: ftparchive/multicompress.cc:458
+#: ftparchive/multicompress.cc:455
msgid "Failed to read while computing MD5"
msgstr ""
-#: ftparchive/multicompress.cc:475
+#: ftparchive/multicompress.cc:472
#, c-format
msgid "Problem unlinking %s"
msgstr ""
-#: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
msgid "Failed to rename %s to %s"
msgstr ""
-#: cmdline/apt-get.cc:121
+#: cmdline/apt-get.cc:124
msgid "Y"
msgstr ""
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1655
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
msgid "Regex compilation error - %s"
msgstr ""
-#: cmdline/apt-get.cc:238
+#: cmdline/apt-get.cc:241
msgid "The following packages have unmet dependencies:"
msgstr ""
-#: cmdline/apt-get.cc:328
+#: cmdline/apt-get.cc:331
#, c-format
msgid "but %s is installed"
msgstr ""
-#: cmdline/apt-get.cc:330
+#: cmdline/apt-get.cc:333
#, c-format
msgid "but %s is to be installed"
msgstr ""
-#: cmdline/apt-get.cc:337
+#: cmdline/apt-get.cc:340
msgid "but it is not installable"
msgstr ""
-#: cmdline/apt-get.cc:339
+#: cmdline/apt-get.cc:342
msgid "but it is a virtual package"
msgstr ""
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not installed"
msgstr ""
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not going to be installed"
msgstr ""
-#: cmdline/apt-get.cc:347
+#: cmdline/apt-get.cc:350
msgid " or"
msgstr ""
-#: cmdline/apt-get.cc:376
+#: cmdline/apt-get.cc:379
msgid "The following NEW packages will be installed:"
msgstr ""
-#: cmdline/apt-get.cc:402
+#: cmdline/apt-get.cc:405
msgid "The following packages will be REMOVED:"
msgstr ""
-#: cmdline/apt-get.cc:424
+#: cmdline/apt-get.cc:427
msgid "The following packages have been kept back:"
msgstr ""
-#: cmdline/apt-get.cc:445
+#: cmdline/apt-get.cc:448
msgid "The following packages will be upgraded:"
msgstr ""
-#: cmdline/apt-get.cc:466
+#: cmdline/apt-get.cc:469
msgid "The following packages will be DOWNGRADED:"
msgstr ""
-#: cmdline/apt-get.cc:486
+#: cmdline/apt-get.cc:489
msgid "The following held packages will be changed:"
msgstr ""
-#: cmdline/apt-get.cc:539
+#: cmdline/apt-get.cc:542
#, c-format
msgid "%s (due to %s) "
msgstr ""
-#: cmdline/apt-get.cc:547
+#: cmdline/apt-get.cc:550
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:578
+#: cmdline/apt-get.cc:581
#, c-format
msgid "%lu upgraded, %lu newly installed, "
msgstr ""
-#: cmdline/apt-get.cc:582
+#: cmdline/apt-get.cc:585
#, c-format
msgid "%lu reinstalled, "
msgstr ""
-#: cmdline/apt-get.cc:584
+#: cmdline/apt-get.cc:587
#, c-format
msgid "%lu downgraded, "
msgstr ""
-#: cmdline/apt-get.cc:586
+#: cmdline/apt-get.cc:589
#, c-format
msgid "%lu to remove and %lu not upgraded.\n"
msgstr ""
-#: cmdline/apt-get.cc:590
+#: cmdline/apt-get.cc:593
#, c-format
msgid "%lu not fully installed or removed.\n"
msgstr ""
-#: cmdline/apt-get.cc:664
+#: cmdline/apt-get.cc:667
msgid "Correcting dependencies..."
msgstr ""
-#: cmdline/apt-get.cc:667
+#: cmdline/apt-get.cc:670
msgid " failed."
msgstr ""
-#: cmdline/apt-get.cc:670
+#: cmdline/apt-get.cc:673
msgid "Unable to correct dependencies"
msgstr ""
-#: cmdline/apt-get.cc:673
+#: cmdline/apt-get.cc:676
msgid "Unable to minimize the upgrade set"
msgstr ""
-#: cmdline/apt-get.cc:675
+#: cmdline/apt-get.cc:678
msgid " Done"
msgstr ""
-#: cmdline/apt-get.cc:679
+#: cmdline/apt-get.cc:682
msgid "You might want to run `apt-get -f install' to correct these."
msgstr ""
-#: cmdline/apt-get.cc:682
+#: cmdline/apt-get.cc:685
msgid "Unmet dependencies. Try using -f."
msgstr ""
-#: cmdline/apt-get.cc:704
+#: cmdline/apt-get.cc:707
msgid "WARNING: The following packages cannot be authenticated!"
msgstr ""
-#: cmdline/apt-get.cc:708
+#: cmdline/apt-get.cc:711
msgid "Authentication warning overridden.\n"
msgstr ""
-#: cmdline/apt-get.cc:715
+#: cmdline/apt-get.cc:718
msgid "Install these packages without verification [y/N]? "
msgstr ""
-#: cmdline/apt-get.cc:717
+#: cmdline/apt-get.cc:720
msgid "Some packages could not be authenticated"
msgstr ""
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
msgid "There are problems and -y was used without --force-yes"
msgstr ""
-#: cmdline/apt-get.cc:770
+#: cmdline/apt-get.cc:773
msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: cmdline/apt-get.cc:779
+#: cmdline/apt-get.cc:782
msgid "Packages need to be removed but remove is disabled."
msgstr ""
-#: cmdline/apt-get.cc:790
+#: cmdline/apt-get.cc:793
msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:1995 cmdline/apt-get.cc:2028
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
msgid "Unable to lock the download directory"
msgstr ""
-#: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2076 cmdline/apt-get.cc:2312
-#: apt-pkg/cachefile.cc:67 apt-pkg/cachefile.cc:63
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
msgid "The list of sources could not be read."
msgstr ""
-#: cmdline/apt-get.cc:831
+#: cmdline/apt-get.cc:834
msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-#: cmdline/apt-get.cc:836
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Need to get %sB/%sB of archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:839
+#: cmdline/apt-get.cc:842
#, c-format
msgid "Need to get %sB of archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:844
+#: cmdline/apt-get.cc:847
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr ""
-#: cmdline/apt-get.cc:847
+#: cmdline/apt-get.cc:850
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2166
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
msgid "Couldn't determine free space in %s"
msgstr ""
-#: cmdline/apt-get.cc:864
+#: cmdline/apt-get.cc:871
#, c-format
msgid "You don't have enough free space in %s."
msgstr ""
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: cmdline/apt-get.cc:881
+#: cmdline/apt-get.cc:889
msgid "Yes, do as I say!"
msgstr ""
-#: cmdline/apt-get.cc:883
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
"You are about to do something potentially harmful.\n"
" ?] "
msgstr ""
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
msgid "Abort."
msgstr ""
-#: cmdline/apt-get.cc:904
+#: cmdline/apt-get.cc:912
msgid "Do you want to continue [Y/n]? "
msgstr ""
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2209
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
msgid "Failed to fetch %s %s\n"
msgstr ""
-#: cmdline/apt-get.cc:994
+#: cmdline/apt-get.cc:1002
msgid "Some files failed to download"
msgstr ""
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2218
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
msgid "Download complete and in download only mode"
msgstr ""
-#: cmdline/apt-get.cc:1001
+#: cmdline/apt-get.cc:1009
msgid ""
"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
"missing?"
msgstr ""
-#: cmdline/apt-get.cc:1005
+#: cmdline/apt-get.cc:1013
msgid "--fix-missing and media swapping is not currently supported"
msgstr ""
-#: cmdline/apt-get.cc:1010
+#: cmdline/apt-get.cc:1018
msgid "Unable to correct missing packages."
msgstr ""
-#: cmdline/apt-get.cc:1011
+#: cmdline/apt-get.cc:1019
msgid "Aborting install."
msgstr ""
-#: cmdline/apt-get.cc:1045
+#: cmdline/apt-get.cc:1053
#, c-format
msgid "Note, selecting %s instead of %s\n"
msgstr ""
-#: cmdline/apt-get.cc:1055
+#: cmdline/apt-get.cc:1063
#, c-format
msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-#: cmdline/apt-get.cc:1073
+#: cmdline/apt-get.cc:1081
#, c-format
msgid "Package %s is not installed, so not removed\n"
msgstr ""
-#: cmdline/apt-get.cc:1084
+#: cmdline/apt-get.cc:1092
#, c-format
msgid "Package %s is a virtual package provided by:\n"
msgstr ""
-#: cmdline/apt-get.cc:1096
+#: cmdline/apt-get.cc:1104
msgid " [Installed]"
msgstr ""
-#: cmdline/apt-get.cc:1101
+#: cmdline/apt-get.cc:1109
msgid "You should explicitly select one to install."
msgstr ""
-#: cmdline/apt-get.cc:1106
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
"Package %s is not available, but is referred to by another package.\n"
"is only available from another source\n"
msgstr ""
-#: cmdline/apt-get.cc:1125
+#: cmdline/apt-get.cc:1133
msgid "However the following packages replace it:"
msgstr ""
-#: cmdline/apt-get.cc:1128
+#: cmdline/apt-get.cc:1136
#, c-format
msgid "Package %s has no installation candidate"
msgstr ""
-#: cmdline/apt-get.cc:1148
+#: cmdline/apt-get.cc:1156
#, c-format
msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr ""
-#: cmdline/apt-get.cc:1156
+#: cmdline/apt-get.cc:1164
#, c-format
msgid "%s is already the newest version.\n"
msgstr ""
-#: cmdline/apt-get.cc:1185
+#: cmdline/apt-get.cc:1193
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: cmdline/apt-get.cc:1187
+#: cmdline/apt-get.cc:1195
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: cmdline/apt-get.cc:1193
+#: cmdline/apt-get.cc:1201
#, c-format
msgid "Selected version %s (%s) for %s\n"
msgstr ""
-#: cmdline/apt-get.cc:1330
+#: cmdline/apt-get.cc:1338
msgid "The update command takes no arguments"
msgstr ""
-#: cmdline/apt-get.cc:1343
+#: cmdline/apt-get.cc:1351
msgid "Unable to lock the list directory"
msgstr ""
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
msgid ""
"Some index files failed to download, they have been ignored, or old ones "
"used instead."
msgstr ""
-#: cmdline/apt-get.cc:1433
+#: cmdline/apt-get.cc:1441
msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-#: cmdline/apt-get.cc:1465
+#: cmdline/apt-get.cc:1473
msgid ""
"The following packages were automatically installed and are no longer "
"required:"
msgstr ""
-#: cmdline/apt-get.cc:1467
+#: cmdline/apt-get.cc:1475
msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-#: cmdline/apt-get.cc:1472
+#: cmdline/apt-get.cc:1480
msgid ""
"Hmm, seems like the AutoRemover destroyed something which really\n"
"shouldn't happen. Please file a bug report against apt."
msgstr ""
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1736
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
msgid "The following information may help to resolve the situation:"
msgstr ""
-#: cmdline/apt-get.cc:1479
+#: cmdline/apt-get.cc:1487
msgid "Internal Error, AutoRemover broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:1498
+#: cmdline/apt-get.cc:1506
msgid "Internal error, AllUpgrade broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:1543
+#: cmdline/apt-get.cc:1553
#, c-format
msgid "Couldn't find task %s"
msgstr ""
-#: cmdline/apt-get.cc:1642 cmdline/apt-get.cc:1678
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
msgid "Couldn't find package %s"
msgstr ""
-#: cmdline/apt-get.cc:1665
+#: cmdline/apt-get.cc:1691
#, c-format
msgid "Note, selecting %s for regex '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:1695
+#: cmdline/apt-get.cc:1722
#, c-format
-msgid "%s set to manual installed.\n"
+msgid "%s set to manually installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:1708
+#: cmdline/apt-get.cc:1735
msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-#: cmdline/apt-get.cc:1711
+#: cmdline/apt-get.cc:1738
msgid ""
"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
"solution)."
msgstr ""
-#: cmdline/apt-get.cc:1723
+#: cmdline/apt-get.cc:1750
msgid ""
"Some packages could not be installed. This may mean that you have\n"
"requested an impossible situation or if you are using the unstable\n"
"or been moved out of Incoming."
msgstr ""
-#: cmdline/apt-get.cc:1731
+#: cmdline/apt-get.cc:1758
msgid ""
"Since you only requested a single operation it is extremely likely that\n"
"the package is simply not installable and a bug report against\n"
"that package should be filed."
msgstr ""
-#: cmdline/apt-get.cc:1739
+#: cmdline/apt-get.cc:1766
msgid "Broken packages"
msgstr ""
-#: cmdline/apt-get.cc:1770
+#: cmdline/apt-get.cc:1795
msgid "The following extra packages will be installed:"
msgstr ""
-#: cmdline/apt-get.cc:1859
+#: cmdline/apt-get.cc:1884
msgid "Suggested packages:"
msgstr ""
-#: cmdline/apt-get.cc:1860
+#: cmdline/apt-get.cc:1885
msgid "Recommended packages:"
msgstr ""
-#: cmdline/apt-get.cc:1888
+#: cmdline/apt-get.cc:1913
msgid "Calculating upgrade... "
msgstr ""
-#: cmdline/apt-get.cc:1891 methods/ftp.cc:702 methods/connect.cc:101
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr ""
-#: cmdline/apt-get.cc:1896
+#: cmdline/apt-get.cc:1921
msgid "Done"
msgstr ""
-#: cmdline/apt-get.cc:1963 cmdline/apt-get.cc:1971
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: cmdline/apt-get.cc:2071
+#: cmdline/apt-get.cc:2096
msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2330
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
msgid "Unable to find a source package for %s"
msgstr ""
-#: cmdline/apt-get.cc:2145
+#: cmdline/apt-get.cc:2175
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2169
+#: cmdline/apt-get.cc:2203
#, c-format
msgid "You don't have enough free space in %s"
msgstr ""
-#: cmdline/apt-get.cc:2174
+#: cmdline/apt-get.cc:2209
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:2177
+#: cmdline/apt-get.cc:2212
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: cmdline/apt-get.cc:2183
+#: cmdline/apt-get.cc:2218
#, c-format
msgid "Fetch source %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2214
+#: cmdline/apt-get.cc:2249
msgid "Failed to fetch some archives."
msgstr ""
-#: cmdline/apt-get.cc:2242
+#: cmdline/apt-get.cc:2277
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2254
+#: cmdline/apt-get.cc:2289
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2255
+#: cmdline/apt-get.cc:2290
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2272
+#: cmdline/apt-get.cc:2307
#, c-format
msgid "Build command '%s' failed.\n"
msgstr ""
-#: cmdline/apt-get.cc:2291
+#: cmdline/apt-get.cc:2326
msgid "Child process failed"
msgstr ""
-#: cmdline/apt-get.cc:2307
+#: cmdline/apt-get.cc:2342
msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: cmdline/apt-get.cc:2335
+#: cmdline/apt-get.cc:2370
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: cmdline/apt-get.cc:2355
+#: cmdline/apt-get.cc:2390
#, c-format
msgid "%s has no build depends.\n"
msgstr ""
-#: cmdline/apt-get.cc:2407
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"found"
msgstr ""
-#: cmdline/apt-get.cc:2459
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because no available versions of "
"package %s can satisfy version requirements"
msgstr ""
-#: cmdline/apt-get.cc:2494
+#: cmdline/apt-get.cc:2531
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: cmdline/apt-get.cc:2519
+#: cmdline/apt-get.cc:2556
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: cmdline/apt-get.cc:2533
+#: cmdline/apt-get.cc:2570
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: cmdline/apt-get.cc:2537
+#: cmdline/apt-get.cc:2574
msgid "Failed to process build dependencies"
msgstr ""
-#: cmdline/apt-get.cc:2569
+#: cmdline/apt-get.cc:2606
msgid "Supported modules:"
msgstr ""
-#: cmdline/apt-get.cc:2610
+#: cmdline/apt-get.cc:2647
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
" upgrade - Perform an upgrade\n"
" install - Install new packages (pkg is libc6 not libc6.deb)\n"
" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
" source - Download source archives\n"
" build-dep - Configure build-dependencies for source packages\n"
" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
msgid "Merging available information"
msgstr ""
-#: apt-inst/contrib/extracttar.cc:117
+#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgstr ""
-#: apt-inst/contrib/extracttar.cc:144
+#: apt-inst/contrib/extracttar.cc:141
msgid "Failed to exec gzip "
msgstr ""
-#: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:207
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
msgid "Corrupted archive"
msgstr ""
-#: apt-inst/contrib/extracttar.cc:196
+#: apt-inst/contrib/extracttar.cc:193
msgid "Tar checksum failed, archive corrupted"
msgstr ""
-#: apt-inst/contrib/extracttar.cc:299
+#: apt-inst/contrib/extracttar.cc:296
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr ""
-#: apt-inst/contrib/arfile.cc:73
+#: apt-inst/contrib/arfile.cc:70
msgid "Invalid archive signature"
msgstr ""
-#: apt-inst/contrib/arfile.cc:81
+#: apt-inst/contrib/arfile.cc:78
msgid "Error reading archive member header"
msgstr ""
-#: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
msgid "Invalid archive member header"
msgstr ""
-#: apt-inst/contrib/arfile.cc:131
+#: apt-inst/contrib/arfile.cc:128
msgid "Archive is too short"
msgstr ""
-#: apt-inst/contrib/arfile.cc:135
+#: apt-inst/contrib/arfile.cc:132
msgid "Failed to read the archive headers"
msgstr ""
-#: apt-inst/filelist.cc:384
+#: apt-inst/filelist.cc:380
msgid "DropNode called on still linked node"
msgstr ""
-#: apt-inst/filelist.cc:416
+#: apt-inst/filelist.cc:412
msgid "Failed to locate the hash element!"
msgstr ""
-#: apt-inst/filelist.cc:463
+#: apt-inst/filelist.cc:459
msgid "Failed to allocate diversion"
msgstr ""
-#: apt-inst/filelist.cc:468
+#: apt-inst/filelist.cc:464
msgid "Internal error in AddDiversion"
msgstr ""
-#: apt-inst/filelist.cc:481
+#: apt-inst/filelist.cc:477
#, c-format
msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
msgstr ""
-#: apt-inst/filelist.cc:510
+#: apt-inst/filelist.cc:506
#, c-format
msgid "Double add of diversion %s -> %s"
msgstr ""
-#: apt-inst/filelist.cc:553
+#: apt-inst/filelist.cc:549
#, c-format
msgid "Duplicate conf file %s/%s"
msgstr ""
-#: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
#, c-format
msgid "Failed to write file %s"
msgstr ""
-#: apt-inst/dirstream.cc:96 apt-inst/dirstream.cc:104
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
#, c-format
msgid "Failed to close file %s"
msgstr ""
-#: apt-inst/extract.cc:96 apt-inst/extract.cc:167
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
#, c-format
msgid "The path %s is too long"
msgstr ""
-#: apt-inst/extract.cc:127
+#: apt-inst/extract.cc:124
#, c-format
msgid "Unpacking %s more than once"
msgstr ""
-#: apt-inst/extract.cc:137
+#: apt-inst/extract.cc:134
#, c-format
msgid "The directory %s is diverted"
msgstr ""
-#: apt-inst/extract.cc:147
+#: apt-inst/extract.cc:144
#, c-format
msgid "The package is trying to write to the diversion target %s/%s"
msgstr ""
-#: apt-inst/extract.cc:157 apt-inst/extract.cc:300
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
msgid "The diversion path is too long"
msgstr ""
-#: apt-inst/extract.cc:243
+#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgstr ""
-#: apt-inst/extract.cc:283
+#: apt-inst/extract.cc:280
msgid "Failed to locate node in its hash bucket"
msgstr ""
-#: apt-inst/extract.cc:287
+#: apt-inst/extract.cc:284
msgid "The path is too long"
msgstr ""
-#: apt-inst/extract.cc:417
+#: apt-inst/extract.cc:414
#, c-format
msgid "Overwrite package match with no version for %s"
msgstr ""
-#: apt-inst/extract.cc:434
+#: apt-inst/extract.cc:431
#, c-format
msgid "File %s/%s overwrites the one in the package %s"
msgstr ""
-#: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:750
-#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/sourcelist.cc:324
-#: apt-pkg/acquire.cc:421 apt-pkg/clean.cc:38
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
#, c-format
msgid "Unable to read %s"
msgstr ""
-#: apt-inst/extract.cc:494
+#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
#, c-format
msgid "Failed to remove %s"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
#, c-format
msgid "Unable to create %s"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:118
+#: apt-inst/deb/dpkgdb.cc:114
#, c-format
msgid "Failed to stat %sinfo"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:123
+#: apt-inst/deb/dpkgdb.cc:119
msgid "The info and temp directories need to be on the same filesystem"
msgstr ""
#. Build the status cache
-#: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:752
-#: apt-pkg/pkgcachegen.cc:821 apt-pkg/pkgcachegen.cc:826
-#: apt-pkg/pkgcachegen.cc:949 apt-pkg/pkgcachegen.cc:748
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
#: apt-pkg/pkgcachegen.cc:945
msgid "Reading package lists"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:180
+#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
-#: apt-inst/deb/dpkgdb.cc:448
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
msgid "Internal error getting a package name"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:205 apt-inst/deb/dpkgdb.cc:386
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
msgid "Reading file listing"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:216
+#: apt-inst/deb/dpkgdb.cc:212
#, c-format
msgid ""
"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
"package!"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
#, c-format
msgid "Failed reading the list file %sinfo/%s"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:266
+#: apt-inst/deb/dpkgdb.cc:262
msgid "Internal error getting a node"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:309
+#: apt-inst/deb/dpkgdb.cc:305
#, c-format
msgid "Failed to open the diversions file %sdiversions"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:324
+#: apt-inst/deb/dpkgdb.cc:320
msgid "The diversion file is corrupted"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
-#: apt-inst/deb/dpkgdb.cc:341
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
#, c-format
msgid "Invalid line in the diversion file: %s"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:362
+#: apt-inst/deb/dpkgdb.cc:358
msgid "Internal error adding a diversion"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:383
+#: apt-inst/deb/dpkgdb.cc:379
msgid "The pkg cache must be initialized first"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:443
+#: apt-inst/deb/dpkgdb.cc:439
#, c-format
msgid "Failed to find a Package: header, offset %lu"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:465
+#: apt-inst/deb/dpkgdb.cc:461
#, c-format
msgid "Bad ConfFile section in the status file. Offset %lu"
msgstr ""
-#: apt-inst/deb/dpkgdb.cc:470
+#: apt-inst/deb/dpkgdb.cc:466
#, c-format
msgid "Error parsing MD5. Offset %lu"
msgstr ""
-#: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
+#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
#, c-format
msgid "This is not a valid DEB archive, missing '%s' member"
msgstr ""
-#: apt-inst/deb/debfile.cc:52
+#: apt-inst/deb/debfile.cc:50
#, c-format
-msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
+msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr ""
-#: apt-inst/deb/debfile.cc:112
+#: apt-inst/deb/debfile.cc:110
#, c-format
msgid "Couldn't change to %s"
msgstr ""
-#: apt-inst/deb/debfile.cc:138
+#: apt-inst/deb/debfile.cc:140
msgid "Internal error, could not locate member"
msgstr ""
-#: apt-inst/deb/debfile.cc:171
+#: apt-inst/deb/debfile.cc:173
msgid "Failed to locate a valid control file"
msgstr ""
-#: apt-inst/deb/debfile.cc:256
+#: apt-inst/deb/debfile.cc:258
msgid "Unparsable control file"
msgstr ""
msgid "File not found"
msgstr ""
-#: methods/copy.cc:42 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-#: methods/copy.cc:43
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
msgid "Failed to stat"
msgstr ""
-#: methods/copy.cc:79 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240 methods/copy.cc:80
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
msgid "Failed to set modification time"
msgstr ""
msgstr ""
#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-#: apt-pkg/contrib/fileutl.cc:469
msgid "Read error"
msgstr ""
msgstr ""
#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-#: apt-pkg/contrib/fileutl.cc:508
msgid "Write error"
msgstr ""
msgid "Unable to accept connection"
msgstr ""
-#: methods/ftp.cc:864 methods/http.cc:958 methods/rsh.cc:303
-#: methods/http.cc:959
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
msgid "Problem hashing file"
msgstr ""
msgid "Couldn't access keyring: '%s'"
msgstr ""
-#: methods/gpgv.cc:100
+#: methods/gpgv.cc:101
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr ""
-#: methods/gpgv.cc:204
+#: methods/gpgv.cc:205
msgid ""
"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: methods/gpgv.cc:209
+#: methods/gpgv.cc:210
msgid "At least one invalid signature was encountered."
msgstr ""
-#: methods/gpgv.cc:213
+#: methods/gpgv.cc:214
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""
-#: methods/gpgv.cc:218
+#: methods/gpgv.cc:219
msgid "Unknown error executing gpgv"
msgstr ""
-#: methods/gpgv.cc:249
+#: methods/gpgv.cc:250
msgid "The following signatures were invalid:\n"
msgstr ""
-#: methods/gpgv.cc:256
+#: methods/gpgv.cc:257
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgid "Read error from %s process"
msgstr ""
-#: methods/http.cc:376 methods/http.cc:377
+#: methods/http.cc:377
msgid "Waiting for headers"
msgstr ""
-#: methods/http.cc:522 methods/http.cc:523
+#: methods/http.cc:523
#, c-format
msgid "Got a single header line over %u chars"
msgstr ""
-#: methods/http.cc:530 methods/http.cc:531
+#: methods/http.cc:531
msgid "Bad header line"
msgstr ""
-#: methods/http.cc:549 methods/http.cc:556 methods/http.cc:550
-#: methods/http.cc:557
+#: methods/http.cc:550 methods/http.cc:557
msgid "The HTTP server sent an invalid reply header"
msgstr ""
-#: methods/http.cc:585 methods/http.cc:586
+#: methods/http.cc:586
msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
-#: methods/http.cc:600 methods/http.cc:601
+#: methods/http.cc:601
msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
-#: methods/http.cc:602 methods/http.cc:603
+#: methods/http.cc:603
msgid "This HTTP server has broken range support"
msgstr ""
-#: methods/http.cc:626 methods/http.cc:627
+#: methods/http.cc:627
msgid "Unknown date format"
msgstr ""
-#: methods/http.cc:773 methods/http.cc:774
+#: methods/http.cc:774
msgid "Select failed"
msgstr ""
-#: methods/http.cc:778 methods/http.cc:779
+#: methods/http.cc:779
msgid "Connection timed out"
msgstr ""
-#: methods/http.cc:801 methods/http.cc:802
+#: methods/http.cc:802
msgid "Error writing to output file"
msgstr ""
-#: methods/http.cc:832 methods/http.cc:833
+#: methods/http.cc:833
msgid "Error writing to file"
msgstr ""
-#: methods/http.cc:860 methods/http.cc:861
+#: methods/http.cc:861
msgid "Error writing to the file"
msgstr ""
-#: methods/http.cc:874 methods/http.cc:875
+#: methods/http.cc:875
msgid "Error reading from server. Remote end closed connection"
msgstr ""
-#: methods/http.cc:876 methods/http.cc:877
+#: methods/http.cc:877
msgid "Error reading from server"
msgstr ""
-#: methods/http.cc:1107 methods/http.cc:1104
+#: methods/http.cc:1104
msgid "Bad header data"
msgstr ""
-#: methods/http.cc:1124 methods/http.cc:1121 methods/http.cc:1176
+#: methods/http.cc:1121 methods/http.cc:1176
msgid "Connection failed"
msgstr ""
-#: methods/http.cc:1215 methods/http.cc:1228
+#: methods/http.cc:1228
msgid "Internal error"
msgstr ""
-#: apt-pkg/contrib/mmap.cc:82 apt-pkg/contrib/mmap.cc:78
#: apt-pkg/contrib/mmap.cc:80
msgid "Can't mmap an empty file"
msgstr ""
-#: apt-pkg/contrib/mmap.cc:87 apt-pkg/contrib/mmap.cc:83
#: apt-pkg/contrib/mmap.cc:85
#, c-format
msgid "Couldn't make mmap of %lu bytes"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:981 apt-pkg/contrib/strutl.cc:978
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
msgid "Selection %s not found"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:436 apt-pkg/contrib/configuration.cc:434
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:494 apt-pkg/contrib/configuration.cc:492
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
msgid "Opening configuration file %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:512
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "Line %d too long (max %d)"
+msgid "Line %d too long (max %u)"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:608 apt-pkg/contrib/configuration.cc:606
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: apt-pkg/contrib/configuration.cc:627 apt-pkg/contrib/configuration.cc:625
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:644 apt-pkg/contrib/configuration.cc:642
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:684 apt-pkg/contrib/configuration.cc:682
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:691 apt-pkg/contrib/configuration.cc:689
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:704 apt-pkg/contrib/configuration.cc:702
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:738 apt-pkg/contrib/configuration.cc:736
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
-#: apt-pkg/contrib/progress.cc:155 apt-pkg/contrib/progress.cc:152
#: apt-pkg/contrib/progress.cc:153
#, c-format
msgid "%c%s... Error!"
msgstr ""
-#: apt-pkg/contrib/progress.cc:157 apt-pkg/contrib/progress.cc:154
#: apt-pkg/contrib/progress.cc:155
#, c-format
msgid "%c%s... Done"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:80 apt-pkg/contrib/cmndline.cc:77
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
-#: apt-pkg/contrib/cmndline.cc:122 apt-pkg/contrib/cmndline.cc:103
-#: apt-pkg/contrib/cmndline.cc:111 apt-pkg/contrib/cmndline.cc:119
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
msgid "Command line option %s is not understood"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:127 apt-pkg/contrib/cmndline.cc:124
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
msgid "Command line option %s is not boolean"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
msgid "Option %s requires an argument."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:237 apt-pkg/contrib/cmndline.cc:234
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:268 apt-pkg/contrib/cmndline.cc:265
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
msgid "Option '%s' is too long"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:301 apt-pkg/contrib/cmndline.cc:298
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:351 apt-pkg/contrib/cmndline.cc:348
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
msgid "Invalid operation %s"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:55 apt-pkg/contrib/cdromutl.cc:52
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
msgid "Unable to stat the mount point %s"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:427 apt-pkg/clean.cc:44
#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
msgid "Unable to change to %s"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:190 apt-pkg/contrib/cdromutl.cc:187
+#: apt-pkg/contrib/cdromutl.cc:187
msgid "Failed to stat the cdrom"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:82 apt-pkg/contrib/fileutl.cc:80
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
msgid "Not using locking for read only lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:87 apt-pkg/contrib/fileutl.cc:85
+#: apt-pkg/contrib/fileutl.cc:87
#, c-format
msgid "Could not open lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:105 apt-pkg/contrib/fileutl.cc:103
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:109 apt-pkg/contrib/fileutl.cc:107
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
msgid "Could not get lock %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:377 apt-pkg/contrib/fileutl.cc:375
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
msgid "Waited for %s but it wasn't there"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:387 apt-pkg/contrib/fileutl.cc:385
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:390 apt-pkg/contrib/fileutl.cc:388
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:392 apt-pkg/contrib/fileutl.cc:390
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
msgid "Sub-process %s exited unexpectedly"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:436 apt-pkg/contrib/fileutl.cc:434
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
msgid "Could not open file %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:492 apt-pkg/contrib/fileutl.cc:490
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
msgid "read, still have %lu to read but none left"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:522 apt-pkg/contrib/fileutl.cc:520
+#: apt-pkg/contrib/fileutl.cc:522
#, c-format
msgid "write, still have %lu to write but couldn't"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:597 apt-pkg/contrib/fileutl.cc:595
+#: apt-pkg/contrib/fileutl.cc:597
msgid "Problem closing the file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:603 apt-pkg/contrib/fileutl.cc:601
+#: apt-pkg/contrib/fileutl.cc:603
msgid "Problem unlinking the file"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:614 apt-pkg/contrib/fileutl.cc:612
+#: apt-pkg/contrib/fileutl.cc:614
msgid "Problem syncing the file"
msgstr ""
msgid "extra"
msgstr ""
-#: apt-pkg/depcache.cc:98 apt-pkg/depcache.cc:127 apt-pkg/depcache.cc:121
-#: apt-pkg/depcache.cc:150
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
msgid "Building dependency tree"
msgstr ""
-#: apt-pkg/depcache.cc:99 apt-pkg/depcache.cc:122
+#: apt-pkg/depcache.cc:122
msgid "Candidate versions"
msgstr ""
-#: apt-pkg/depcache.cc:128 apt-pkg/depcache.cc:151
+#: apt-pkg/depcache.cc:151
msgid "Dependency generation"
msgstr ""
-#: apt-pkg/depcache.cc:149 apt-pkg/depcache.cc:168 apt-pkg/depcache.cc:172
-#: apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
msgid "Reading state information"
msgstr ""
-#: apt-pkg/depcache.cc:196 apt-pkg/depcache.cc:219
+#: apt-pkg/depcache.cc:219
#, c-format
msgid "Failed to open StateFile %s"
msgstr ""
-#: apt-pkg/depcache.cc:202 apt-pkg/depcache.cc:225
+#: apt-pkg/depcache.cc:225
#, c-format
msgid "Failed to write temporary StateFile %s"
msgstr ""
-#: apt-pkg/tagfile.cc:106 apt-pkg/tagfile.cc:102
+#: apt-pkg/tagfile.cc:102
#, c-format
msgid "Unable to parse package file %s (1)"
msgstr ""
-#: apt-pkg/tagfile.cc:193 apt-pkg/tagfile.cc:189
+#: apt-pkg/tagfile.cc:189
#, c-format
msgid "Unable to parse package file %s (2)"
msgstr ""
-#: apt-pkg/sourcelist.cc:94 apt-pkg/sourcelist.cc:90
+#: apt-pkg/sourcelist.cc:90
#, c-format
msgid "Malformed line %lu in source list %s (URI)"
msgstr ""
-#: apt-pkg/sourcelist.cc:96 apt-pkg/sourcelist.cc:92
+#: apt-pkg/sourcelist.cc:92
#, c-format
msgid "Malformed line %lu in source list %s (dist)"
msgstr ""
-#: apt-pkg/sourcelist.cc:99 apt-pkg/sourcelist.cc:95
+#: apt-pkg/sourcelist.cc:95
#, c-format
msgid "Malformed line %lu in source list %s (URI parse)"
msgstr ""
-#: apt-pkg/sourcelist.cc:105 apt-pkg/sourcelist.cc:101
+#: apt-pkg/sourcelist.cc:101
#, c-format
msgid "Malformed line %lu in source list %s (absolute dist)"
msgstr ""
-#: apt-pkg/sourcelist.cc:112 apt-pkg/sourcelist.cc:108
+#: apt-pkg/sourcelist.cc:108
#, c-format
msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-#: apt-pkg/sourcelist.cc:203 apt-pkg/sourcelist.cc:199
+#: apt-pkg/sourcelist.cc:199
#, c-format
msgid "Opening %s"
msgstr ""
-#: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:450 apt-pkg/sourcelist.cc:216
-#: apt-pkg/cdrom.cc:448
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
msgid "Line %u too long in source list %s."
msgstr ""
-#: apt-pkg/sourcelist.cc:240 apt-pkg/sourcelist.cc:236
+#: apt-pkg/sourcelist.cc:236
#, c-format
msgid "Malformed line %u in source list %s (type)"
msgstr ""
-#: apt-pkg/sourcelist.cc:244 apt-pkg/sourcelist.cc:240
+#: apt-pkg/sourcelist.cc:240
#, c-format
msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255
#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
msgid "Malformed line %u in source list %s (vendor id)"
msgstr ""
-#: apt-pkg/packagemanager.cc:403 apt-pkg/packagemanager.cc:399
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
"This installation run will require temporarily removing the essential "
"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-#: apt-pkg/pkgrecords.cc:37 apt-pkg/pkgrecords.cc:32
+#: apt-pkg/pkgrecords.cc:32
#, c-format
msgid "Index file type '%s' is not supported"
msgstr ""
-#: apt-pkg/algorithms.cc:248 apt-pkg/algorithms.cc:247
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: apt-pkg/algorithms.cc:1104 apt-pkg/algorithms.cc:1103
#: apt-pkg/algorithms.cc:1105
msgid ""
"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
"held packages."
msgstr ""
-#: apt-pkg/algorithms.cc:1106 apt-pkg/algorithms.cc:1105
#: apt-pkg/algorithms.cc:1107
msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: apt-pkg/acquire.cc:62 apt-pkg/acquire.cc:59
+#: apt-pkg/acquire.cc:59
#, c-format
msgid "Lists directory %spartial is missing."
msgstr ""
-#: apt-pkg/acquire.cc:66 apt-pkg/acquire.cc:63
+#: apt-pkg/acquire.cc:63
#, c-format
msgid "Archive directory %spartial is missing."
msgstr ""
#. only show the ETA if it makes sense
#. two days
-#: apt-pkg/acquire.cc:830 apt-pkg/acquire.cc:827
+#: apt-pkg/acquire.cc:827
#, c-format
msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""
-#: apt-pkg/acquire.cc:832 apt-pkg/acquire.cc:829
+#: apt-pkg/acquire.cc:829
#, c-format
msgid "Retrieving file %li of %li"
msgstr ""
-#: apt-pkg/acquire-worker.cc:113 apt-pkg/acquire-worker.cc:110
+#: apt-pkg/acquire-worker.cc:110
#, c-format
msgid "The method driver %s could not be found."
msgstr ""
-#: apt-pkg/acquire-worker.cc:162 apt-pkg/acquire-worker.cc:159
+#: apt-pkg/acquire-worker.cc:159
#, c-format
msgid "Method %s did not start correctly"
msgstr ""
-#: apt-pkg/acquire-worker.cc:384 apt-pkg/acquire-worker.cc:396
#: apt-pkg/acquire-worker.cc:398
#, c-format
msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-#: apt-pkg/init.cc:125 apt-pkg/init.cc:124
+#: apt-pkg/init.cc:124
#, c-format
msgid "Packaging system '%s' is not supported"
msgstr ""
-#: apt-pkg/init.cc:141 apt-pkg/init.cc:140
+#: apt-pkg/init.cc:140
msgid "Unable to determine a suitable packaging system type"
msgstr ""
-#: apt-pkg/clean.cc:61 apt-pkg/clean.cc:57
+#: apt-pkg/clean.cc:57
#, c-format
msgid "Unable to stat %s."
msgstr ""
-#: apt-pkg/srcrecords.cc:48 apt-pkg/srcrecords.cc:44
+#: apt-pkg/srcrecords.cc:44
msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-#: apt-pkg/cachefile.cc:73 apt-pkg/cachefile.cc:69
+#: apt-pkg/cachefile.cc:69
msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-#: apt-pkg/cachefile.cc:77 apt-pkg/cachefile.cc:73
+#: apt-pkg/cachefile.cc:73
msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-#: apt-pkg/policy.cc:270 apt-pkg/policy.cc:267
+#: apt-pkg/policy.cc:267
msgid "Invalid record in the preferences file, no Package header"
msgstr ""
-#: apt-pkg/policy.cc:292 apt-pkg/policy.cc:289
+#: apt-pkg/policy.cc:289
#, c-format
msgid "Did not understand pin type %s"
msgstr ""
-#: apt-pkg/policy.cc:300 apt-pkg/policy.cc:297
+#: apt-pkg/policy.cc:297
msgid "No priority (or zero) specified for pin"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:76 apt-pkg/pkgcachegen.cc:72
+#: apt-pkg/pkgcachegen.cc:72
msgid "Cache has an incompatible versioning system"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:119 apt-pkg/pkgcachegen.cc:115
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
msgid "Error occurred while processing %s (NewPackage)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:134 apt-pkg/pkgcachegen.cc:130
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
msgid "Error occurred while processing %s (UsePackage1)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:157
+#: apt-pkg/pkgcachegen.cc:153
#, c-format
-msgid "Error occured while processing %s (NewFileDesc1)"
+msgid "Error occurred while processing %s (NewFileDesc1)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:182 apt-pkg/pkgcachegen.cc:178
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
msgid "Error occurred while processing %s (UsePackage2)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:186 apt-pkg/pkgcachegen.cc:182
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
msgid "Error occurred while processing %s (NewFileVer1)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:217 apt-pkg/pkgcachegen.cc:213
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
msgid "Error occurred while processing %s (NewVersion1)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:221 apt-pkg/pkgcachegen.cc:217
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
msgid "Error occurred while processing %s (UsePackage3)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:225 apt-pkg/pkgcachegen.cc:221
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
msgid "Error occurred while processing %s (NewVersion2)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:249
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Error occured while processing %s (NewFileDesc2)"
+msgid "Error occurred while processing %s (NewFileDesc2)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:255 apt-pkg/pkgcachegen.cc:251
+#: apt-pkg/pkgcachegen.cc:251
msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:258 apt-pkg/pkgcachegen.cc:254
+#: apt-pkg/pkgcachegen.cc:254
msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:261 apt-pkg/pkgcachegen.cc:257
+#: apt-pkg/pkgcachegen.cc:257
msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:264 apt-pkg/pkgcachegen.cc:260
+#: apt-pkg/pkgcachegen.cc:260
msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:292 apt-pkg/pkgcachegen.cc:288
+#: apt-pkg/pkgcachegen.cc:288
#, c-format
msgid "Error occurred while processing %s (FindPkg)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:305 apt-pkg/pkgcachegen.cc:301
+#: apt-pkg/pkgcachegen.cc:301
#, c-format
msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:311 apt-pkg/pkgcachegen.cc:307
+#: apt-pkg/pkgcachegen.cc:307
#, c-format
msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:682 apt-pkg/pkgcachegen.cc:678
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
msgid "Couldn't stat source package list %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:767 apt-pkg/pkgcachegen.cc:763
+#: apt-pkg/pkgcachegen.cc:763
msgid "Collecting File Provides"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:894 apt-pkg/pkgcachegen.cc:901
#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
msgid "IO Error saving source cache"
msgstr ""
msgid "rename failed, %s (%s -> %s)."
msgstr ""
-#: apt-pkg/acquire-item.cc:405 apt-pkg/acquire-item.cc:662
-#: apt-pkg/acquire-item.cc:1412 apt-pkg/acquire-item.cc:401
+#: apt-pkg/acquire-item.cc:401
msgid "MD5Sum mismatch"
msgstr ""
-#: apt-pkg/acquire-item.cc:1107 apt-pkg/acquire-item.cc:1097
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
+msgstr ""
+
#: apt-pkg/acquire-item.cc:1100
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1220 apt-pkg/acquire-item.cc:1210
#: apt-pkg/acquire-item.cc:1213
#, c-format
msgid ""
"to manually fix this package. (due to missing arch)"
msgstr ""
-#: apt-pkg/acquire-item.cc:1279 apt-pkg/acquire-item.cc:1269
#: apt-pkg/acquire-item.cc:1272
#, c-format
msgid ""
"manually fix this package."
msgstr ""
-#: apt-pkg/acquire-item.cc:1315 apt-pkg/acquire-item.cc:1310
#: apt-pkg/acquire-item.cc:1313
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: apt-pkg/acquire-item.cc:1402 apt-pkg/acquire-item.cc:1397
#: apt-pkg/acquire-item.cc:1400
msgid "Size mismatch"
msgstr ""
msgid "Vendor block %s contains no fingerprint"
msgstr ""
-#: apt-pkg/cdrom.cc:531 apt-pkg/cdrom.cc:529
+#: apt-pkg/cdrom.cc:529
#, c-format
msgid ""
"Using CD-ROM mount point %s\n"
"Mounting CD-ROM\n"
msgstr ""
-#: apt-pkg/cdrom.cc:540 apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:538
-#: apt-pkg/cdrom.cc:620 apt-pkg/cdrom.cc:627
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
msgid "Identifying.. "
msgstr ""
-#: apt-pkg/cdrom.cc:565 apt-pkg/cdrom.cc:563
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Stored label: %s \n"
+msgid "Stored label: %s\n"
+msgstr ""
+
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
msgstr ""
-#: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:583 apt-pkg/cdrom.cc:590
+#: apt-pkg/cdrom.cc:590
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: apt-pkg/cdrom.cc:603 apt-pkg/cdrom.cc:601 apt-pkg/cdrom.cc:608
+#: apt-pkg/cdrom.cc:608
msgid "Unmounting CD-ROM\n"
msgstr ""
-#: apt-pkg/cdrom.cc:607 apt-pkg/cdrom.cc:605 apt-pkg/cdrom.cc:612
+#: apt-pkg/cdrom.cc:612
msgid "Waiting for disc...\n"
msgstr ""
#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:615 apt-pkg/cdrom.cc:613 apt-pkg/cdrom.cc:620
+#: apt-pkg/cdrom.cc:620
msgid "Mounting CD-ROM...\n"
msgstr ""
-#: apt-pkg/cdrom.cc:633 apt-pkg/cdrom.cc:631 apt-pkg/cdrom.cc:638
+#: apt-pkg/cdrom.cc:638
msgid "Scanning disc for index files..\n"
msgstr ""
-#: apt-pkg/cdrom.cc:673 apt-pkg/cdrom.cc:671
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
-"Found %i package indexes, %i source indexes, %i translation indexes and %i "
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
"signatures\n"
msgstr ""
-#: apt-pkg/cdrom.cc:710 apt-pkg/cdrom.cc:708 apt-pkg/cdrom.cc:715
+#: apt-pkg/cdrom.cc:715
#, c-format
msgid "Found label '%s'\n"
msgstr ""
-#: apt-pkg/cdrom.cc:739 apt-pkg/cdrom.cc:737 apt-pkg/cdrom.cc:744
+#: apt-pkg/cdrom.cc:744
msgid "That is not a valid name, try again.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:755 apt-pkg/cdrom.cc:753 apt-pkg/cdrom.cc:760
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
"This disc is called: \n"
"'%s'\n"
msgstr ""
-#: apt-pkg/cdrom.cc:759 apt-pkg/cdrom.cc:757 apt-pkg/cdrom.cc:764
+#: apt-pkg/cdrom.cc:764
msgid "Copying package lists..."
msgstr ""
-#: apt-pkg/cdrom.cc:785 apt-pkg/cdrom.cc:783 apt-pkg/cdrom.cc:790
+#: apt-pkg/cdrom.cc:790
msgid "Writing new source list\n"
msgstr ""
-#: apt-pkg/cdrom.cc:794 apt-pkg/cdrom.cc:792 apt-pkg/cdrom.cc:799
+#: apt-pkg/cdrom.cc:799
msgid "Source list entries for this disc are:\n"
msgstr ""
-#: apt-pkg/cdrom.cc:836 apt-pkg/cdrom.cc:834 apt-pkg/cdrom.cc:570
-#: apt-pkg/cdrom.cc:841
-msgid "Unmounting CD-ROM...\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:830 apt-pkg/indexcopy.cc:823
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
msgid "Wrote %i records.\n"
msgstr ""
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:832 apt-pkg/indexcopy.cc:825
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
msgid "Wrote %i records with %i missing files.\n"
msgstr ""
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:835 apt-pkg/indexcopy.cc:828
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
msgid "Wrote %i records with %i mismatched files\n"
msgstr ""
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:838 apt-pkg/indexcopy.cc:831
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:358 apt-pkg/deb/dpkgpm.cc:522
+#: apt-pkg/deb/dpkgpm.cc:513
+#, c-format
+msgid "Directory '%s' missing"
+msgstr ""
+
#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
msgid "Preparing %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:359 apt-pkg/deb/dpkgpm.cc:523
#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
msgid "Unpacking %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:364 apt-pkg/deb/dpkgpm.cc:528
#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
msgid "Preparing to configure %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:365 apt-pkg/deb/dpkgpm.cc:529
#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
msgid "Configuring %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:366 apt-pkg/deb/dpkgpm.cc:530
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, c-format
+msgid "Processing triggers for %s"
+msgstr ""
+
#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
msgid "Installed %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:371 apt-pkg/deb/dpkgpm.cc:535
#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
msgid "Preparing for removal of %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:372 apt-pkg/deb/dpkgpm.cc:536
#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
msgid "Removing %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:373 apt-pkg/deb/dpkgpm.cc:537
#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
msgid "Removed %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:378 apt-pkg/deb/dpkgpm.cc:542
#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
msgid "Preparing to completely remove %s"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:379 apt-pkg/deb/dpkgpm.cc:543
#: apt-pkg/deb/dpkgpm.cc:625
#, c-format
msgid "Completely removed %s"
msgstr ""
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
#: methods/rred.cc:219
msgid "Could not patch file"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:510
-#, c-format
-msgid "Line %d too long (max %u)"
-msgstr ""
-
-#: apt-pkg/pkgcachegen.cc:153
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr ""
-
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr ""
-
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1405
-#: apt-pkg/acquire-item.cc:1408
-msgid "Hash Sum mismatch"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:566 apt-pkg/deb/dpkgpm.cc:513
-#, c-format
-msgid "Directory '%s' missing"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:709
-#, c-format
-msgid "openpty failed\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:678
-#, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
-#, c-format
-msgid "Processing triggers for %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:775
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
msgstr ""
msgstr ""
"Project-Id-Version: apt_po\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"X-Poedit-SourceCharset: utf-8\n"
"X-Generator: KBabel 1.11.4\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-"
-"get update لإضافة أقراص مدمجة جديدة."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "القرص المدمج الخطأ"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "لم يُعثر على القرص."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "لم يُعثر على الملف"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "فشيل تنفيذ stat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "فشل تعيين وقت التعديل"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr ""
-
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "تسجيل الدخول"
+msgid "Unable to locate package %s"
+msgstr "تعذر العثور على الحزمة %s"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr ""
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "أسماء الحزم الكلية :"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr ""
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " الحزم العادية:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "رفض الخادم اتصالنا بالرد: %s"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr "الحزمة الوهمية تماماً:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "فشل USER، ردّ الخادم: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " الحزمة الوهمية المفردة:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "فشل PASS، ردّ الخادم: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " الحزم الوهمية المختلطة:"
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin "
-"فارغ."
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " مفقودة:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "مجموع النسخ الفريدة:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Ù\81Ø´Ù\84 TYPEØ\8c ردÙ\91 اÙ\84خادÙ\85: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Ù\85جÙ\85Ù\88ع اÙ\84Ù\86سخ اÙ\84Ù\81رÙ\8aدة:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "انتهى وقت الاتصال"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "مجموع المعتمدات:"
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "أغلق الخادم الاتصال"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "مجموع علاقات النسخ/الملفات:"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "خطأ في القراءة"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "مجموع علاقات النسخ/الملفات:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr ""
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "مجموع علاقات النسخ/الملفات:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
msgstr ""
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "خطأ في الكتابة"
-
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
msgstr ""
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
msgstr ""
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Ù\81Ø´Ù\84"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Ù\85جÙ\85Ù\88ع اÙ\84Ù\85Ø³Ø§ØØ© اÙ\84Ù\85ØØ³Ù\88ب ØØ³Ø§Ø¨Ù\87ا:"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
msgstr ""
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "يجب أن تعطي صيغة واحدة بالضبط"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "لم يُعثر على أية حزم"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "ملفات الحزم:"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "تعذر إرسال الأمر PORT"
-
-#: methods/ftp.cc:789
+#: cmdline/apt-cache.cc:1532
#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr ""
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "فشل EPRT، ردّ الخادم: %s"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "الحزم المُدبّسة:"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr ""
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(غير موجود)"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "تعذر قبول الاتصال"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " مُثبّت:"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr ""
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(لاشيء)"
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "تعذر إحضار الملف، ردّ الخادم '%s'"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " مرشّح: "
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
msgstr ""
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "فشل نقل البيانات، ردّ الخادم '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "استعلام"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr ""
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " جدول النسخ:"
-#: methods/connect.cc:64
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "الاتصال بـ%s (%s)"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s لـ%s %s مُجمّع على %s %s\n"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "تعذر الاتصال بـ%s:%s (%s)."
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "الاتصال بـ%s"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
msgstr ""
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/connect.cc:176
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgid "%s not a valid DEB package."
+msgstr "%s ليس حزمة DEB صالحة."
+
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/connect.cc:223
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "تعذر الاتصال بـ%s %s:"
+msgid "Unable to write to %s"
+msgstr "تعذرت الكتابة إلى %s"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "تعذر الحصول على نسخة debconf. هل هي مثبتة؟"
+
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "قائمة توسيعات الحزمة طويلة جداً"
+
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr ""
+msgid "Error processing directory %s"
+msgstr "خطأ في معالجة الدليل %s"
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "قائمة توسيعات المصدر طويلة جداً"
+
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "خطأ في كتابة الترويسة إلى ملف المحتويات"
+
+#: ftparchive/apt-ftparchive.cc:398
+#, c-format
+msgid "Error processing contents %s"
+msgstr "خطأ في معالجة المحتويات %s"
-#: methods/gpgv.cc:204
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "لم تُطابق أية تحديدات"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
+msgid "Some files are missing in the package file group `%s'"
+msgstr "بعض الملفات مفقودة في مجموعة ملف الحزمة `%s'"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr ""
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "قاعدة البيانات كانت فاسدة، فتم تغيير اسمها إلى %s.old"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr ""
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "قاعدة البيانات قديمة، محاولة ترقية %s"
-#: methods/gpgv.cc:256
+#: ftparchive/cachedb.cc:72
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-#: methods/gpgv.cc:272
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
+
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr ""
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
msgstr ""
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
msgstr ""
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "بانتظار الترويسات"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: تعذرت قراءة الدليل %s\n"
-#: methods/http.cc:523
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Got a single header line over %u chars"
+msgid "W: Unable to stat %s\n"
msgstr ""
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "سطر ترويسة سيء"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "أرسل خادم http ترويسة ردّ غير صالحة"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة"
-
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة"
-
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "خادم http له دعم مدى معطوب"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "نسق تاريخ مجهول"
-
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "فشل التحديد"
-
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "انتهى وقت الاتصال"
-
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "خطأ في الكتابة إلى ملف المُخرجات"
-
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "خطأ في الكتابة إلى الملف"
-
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "خطأ في الكتابة إلى الملف"
-
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال"
-
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "خطأ في القراءة من الخادم"
-
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "بيانات ترويسة سيئة"
-
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "فشل الاتصال"
-
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "خطأ داخلي"
-
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
msgstr ""
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
+msgid "Failed to resolve %s"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "تعذر العثور على التحديد %s"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr ""
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "اختصار نوع مجهول: '%c'"
+msgid "Failed to open %s"
+msgstr "فشل فتح %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "فتح ملف التهيئة %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-#| msgid "Line %d too long (max %d)"
-msgid "Line %d too long (max %u)"
-msgstr "السطر %d طويل جداً (أقصاه %d)"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
+msgid "Failed to readlink %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
+msgid "Failed to unlink %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr ""
+msgid "*** Failed to link %s to %s"
+msgstr "*** فشل ربط %s بـ%s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:689
-#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Included from here"
+msgid " %s has no override entry\n"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
+msgid " %s has no source override entry\n"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "تعذرت قراءة %s"
-
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/writer.cc:624
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... خطأ!"
+msgid " %s has no binary override entry either\n"
+msgstr ""
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/contents.cc:321
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... تمّ"
+msgid "Internal error, could not locate member %s"
+msgstr "خطأ داخلي، تعذر العثور على العضو %s"
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "خيار سطر الأمر '%c' [من %s] مجهول."
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - فشل تعيين الذاكرة"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Ø®Ù\8aار سطر اÙ\84Ø£Ù\85ر %s غÙ\8aر Ù\85Ù\81Ù\87Ù\88Ù\85"
+msgid "Unable to open %s"
+msgstr "تعذر Ù\81ØªØ %s"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option %s is not boolean"
+msgid "Malformed override %s line %lu #1"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Option %s requires an argument."
-msgstr "الخيار %s يتطلّب مُعطى."
+msgid "Malformed override %s line %lu #2"
+msgstr ""
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
+msgid "Malformed override %s line %lu #3"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
+msgid "Failed to read the override file %s"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option '%s' is too long"
-msgstr "الخيار '%s' طويل جداً"
+msgid "Unknown compression algorithm '%s'"
+msgstr ""
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Sense %s is not understood, try true or false."
+msgid "Compressed output %s needs a compression set"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "عمليّة غير صالحة %s"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Not using locking for read only lock file %s"
+msgid "Internal error, failed to create %s"
+msgstr "خطأ داخلي، تعذر إنشاء %s"
+
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Sub-process %s received a segmentation fault."
+msgid "Problem unlinking %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:390
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr ""
+msgid "Failed to rename %s to %s"
+msgstr "فشل تغيير اسم %s إلى %s"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
+msgid "Regex compilation error - %s"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr ""
+msgid "but %s is installed"
+msgstr "إلا أن %s مثبت"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr ""
+msgid "but %s is to be installed"
+msgstr "إلا أنه سيتم تثبيت %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "مشكلة في إغلاق الملف"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "إلا أنه غير قابل للتثبيت"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr ""
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "إلا أنها حزمة وهمية"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "مشكلة في مزامنة الملف"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "إلا أنها غير مثبتة"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr ""
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "إلا أنه لن يتم تثبيتها"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr ""
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " أو"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr ""
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "سيتم تثبيت الحزم الجديدة التالية:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "سيتم إزالة الحزم التالية:"
+
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "سيتم الإبقاء على الحزم التالية:"
+
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "ستتم ترقية الحزم التالية:"
+
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "سيتم تثبيط الحزم التالية:"
+
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "سيتم تغيير الحزم المبقاة التالية:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr ""
+msgid "%s (due to %s) "
+msgstr "%s (بسبب %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
+"تحذير: ستتم إزالة الحزم الأساسية التالية.\n"
+"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "يعتمد"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "يعتمد مسبقاً"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu أعيد تثبيتها، "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "يستحسن"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu مثبطة، "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "يقترح"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "يعارض"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu غير مثبتة بالكامل أو مزالة.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "يستبدل"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "تصحيح المعتمدات..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "يُلغي"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " فشل."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "لم يمكن تصحيح المعتمدات"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "Ù\85Ù\87Ù\85"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ù\84Ù\85 Ù\8aÙ\85Ù\83Ù\86 تÙ\82Ù\84Ù\8aص Ù\85جÙ\85Ù\88عة اÙ\84ترÙ\82Ù\8aØ©"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "مطلوب"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " تم"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "قياسي"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "قد ترغب بتنفيذ الأمر `apt-get -f install' لتصحيح هذه."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "اختياري"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "إضاÙ\81Ù\8a"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ØªØØ°Ù\8aر: تعذرت اÙ\84Ù\85صادÙ\82Ø© عÙ\84Ù\89 اÙ\84ØØ²Ù\85 اÙ\84تاÙ\84Ù\8aØ©!"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr ""
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "تم غض النظر عن تحذير المصادقة.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr ""
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "تثبيت هذه الحزم دون التحقق منها [y/N]؟ "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr ""
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "تعذرت المصادقة على بعض الحزم"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-#| msgid "Merging available information"
-msgid "Reading state information"
-msgstr "دمج المعلومات المتوفرة"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "هناك مشاكل وتم استخدام -y دون --force-yes"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-#| msgid "Failed to open %s"
-msgid "Failed to open StateFile %s"
-msgstr "فشل فتح %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-#| msgid "Failed to write file %s"
-msgid "Failed to write temporary StateFile %s"
-msgstr "فشلت كتابة الملف %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr ""
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "خطأ داخلي، لم تنته عملية الترتيب"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr ""
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "تعذر قَفْل دليل التنزيل"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr ""
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "تعذرت قراءة قائمة المصادر."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr ""
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr ""
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr ""
+msgid "Need to get %sB of archives.\n"
+msgstr "بحاجة إلى جلب %sب من الأرشيف.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr ""
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "فتح %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr ""
+msgid "Couldn't determine free space in %s"
+msgstr "تعذر حساب المساحة الحرة في %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr ""
+msgid "You don't have enough free space in %s."
+msgstr "ليس هناك مساحة كافية في %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr ""
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "نعم، افعل ما أقوله!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
+"أنت على وشك أن تقوم بشيء ضارّ جداً\n"
+"كي تستمر اكتب العبارة '%s'\n"
+" ؟] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr ""
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "إجهاض."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "هل تريد الاستمرار [Y/n]؟"
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
+msgid "Failed to fetch %s %s\n"
+msgstr "فشل إحضار %s %s\n"
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "فشل تنزيل بعض الملفات"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "اكتمل التنزيل وفي وضع التنزيل فقط"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
+"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --"
+"fix-missing؟"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr ""
-
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr ""
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً"
-#: apt-pkg/acquire.cc:829
-#, c-format
-msgid "Retrieving file %li of %li"
-msgstr ""
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "تعذر تصحيح الحزم المفقودة."
-#: apt-pkg/acquire-worker.cc:110
-#, c-format
-msgid "The method driver %s could not be found."
-msgstr ""
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "إجهاض التثبيت."
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Method %s did not start correctly"
-msgstr ""
+msgid "Note, selecting %s instead of %s\n"
+msgstr "لاحظ، تحديد %s بدلاً من %s\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "اÙ\84رجاء إدخاÙ\84 اÙ\84Ù\82رص اÙ\84Ù\85Ù\8fسÙ\85Ù\91Ù\89 '%s' Ù\81Ù\8a اÙ\84سÙ\88Ù\91اÙ\82Ø© '%s' Ù\88ضغط Ù\85Ù\81ØªØ§Ø Ø§Ù\84إدخاÙ\84."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "تخطÙ\91Ù\8a %sØ\8c ØÙ\8aØ« Ø£Ù\86Ù\87ا Ù\85ثبتة Ù\88Ù\84Ù\85 Ù\8aتÙ\85Ù\91 تعÙ\8aÙ\8aÙ\86 اÙ\84ترÙ\82Ù\8aØ©.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "نظام الحزم '%s' غير مدعوم"
-
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr ""
+msgid "Package %s is not installed, so not removed\n"
+msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Unable to stat %s."
-msgstr ""
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "تعذرت قراءة قائمة المصادر."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "الحزمة %s وهميّة وتوفّرها:\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [مُثبّتة]"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr ""
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "يجب اختيار واحدة بالتحديد لتثبيتها."
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Did not understand pin type %s"
-msgstr ""
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr ""
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
+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 ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "حدث خطأ أثناء معالجة %s (NewPackage)"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "على أيّ فإن الحزم التالية تحلّ مكانها:"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "حدث خطأ أثناء معالجة %s (UserPackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
+msgid "Package %s has no installation candidate"
+msgstr "الحزمة %s ليس لها مرشح تثبيت"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "ØØ¯Ø« خطأ أثÙ\86اء Ù\85عاÙ\84جة %s (UserPackage2)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "إعادة تثبÙ\8aت %s غÙ\8aر Ù\85Ù\85Ù\83Ù\86Ø©Ø\8c ØÙ\8aØ« Ø£Ù\86Ù\91Ù\87 Ù\84ا Ù\8aÙ\85Ù\83Ù\86 تÙ\86زÙ\8aÙ\84Ù\87ا.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
+msgid "%s is already the newest version.\n"
+msgstr "%s هي النسخة الأحدث.\n"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "ØØ¯Ø« خطأ أثÙ\86اء Ù\85عاÙ\84جة %s (NewVersion1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "تعذر اÙ\84عثÙ\88ر عÙ\84Ù\89 اÙ\84إصدارة '%s' Ù\84Ù\84ØØ²Ù\85Ø© '%s'"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "ØØ¯Ø« خطأ أثÙ\86اء Ù\85عاÙ\84جة %s (UsePackage3)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "تعذر اÙ\84عثÙ\88ر عÙ\84Ù\89 اÙ\84Ù\86سخة '%s' Ù\84Ù\84ØØ²Ù\85Ø© '%s'"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "ØØ¯Ø« خطأ أثÙ\86اء Ù\85عاÙ\84جة %s (NewVersion2)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "اÙ\84Ù\86سخة اÙ\84Ù\85ØØ¯Ø¯Ø© %s (%s) Ù\84Ù\84إصدارة %s\n"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "لا يقبل الأمر update أية مُعطيات"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr ""
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "تعذر قفل دليل القائمة"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr ""
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "سيتم تثبيت الحزم الجديدة التالية:"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr ""
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "قد تساعد المعلومات التالية في حل المشكلة:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr ""
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "قراءة قوائم الحزم"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr ""
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "تعذر العثور على الحزمة %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "تعذرت الكتابة إلى %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr ""
+msgid "Couldn't find package %s"
+msgstr "تعذر العثور على الحزمة %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "فشل إعادة التسمية ، %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum غير متطابقة"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum غير متطابقة"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "إلا أنه سيتم تثبيت %s"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "قد ترغب بتشغيل `apt-get -f install' لتصحيح هذه:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
+"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "اÙ\84ØØ¬Ù\85 غÙ\8aر Ù\85تطابÙ\82"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "ØØ²Ù\85 Ù\85عطÙ\88بة"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr ""
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "سيتم تثبيت الحزم الإضافيّة التالية:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "الحزم المقترحة:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "جارÙ\8a اÙ\84تعرÙ\81..."
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "اÙ\84ØØ²Ù\85 اÙ\84Ù\85Ø³ØªØØ³Ù\86Ø©:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "حساب الترقية..."
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "فشل"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "تمّ"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها"
+
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr ""
+msgid "Unable to find a source package for %s"
+msgstr "تعذر العثور على مصدر الحزمة %s"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "فك تركيب القرص المدمج\n"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "تخطي الملف '%s' المنزل مسبقاً\n"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "بانتظار القرص...\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "ليس هناك مساحة كافية في %s"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "تركيب القرص...\n"
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr ""
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n"
-#: apt-pkg/cdrom.cc:671
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
+msgid "Fetch source %s\n"
+msgstr "إحضار المصدر %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "فشل إحضار بعض الأرشيفات."
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Found label '%s'\n"
+msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "هذا الاسم غير صالح، حاول مجدداً.\n"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "أمر فك الحزمة '%s' فشل.\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-"هذا القرص مسمى: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "نسخ قوائم الحزم..."
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "كتابة لائحة المصادر الجديدة\n"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "أمر البناء '%s' فشل.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
msgstr ""
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-#| msgid "Unmounting CD-ROM..."
-msgid "Unmounting CD-ROM...\n"
-msgstr "فك تركيب القرص المدمج..."
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Wrote %i records.\n"
+msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
+msgid "%s has no build depends.\n"
msgstr ""
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:510
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Directory '%s' missing"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Preparing %s"
-msgstr "تحضير %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s"
-msgstr "فتح %s"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "التحضير لتهيئة %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "تهيئة %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "الوحدات المدعومة:"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "خطأ في معالجة الدليل %s"
+#: cmdline/apt-get.cc:2647
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "تم تثبيت %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "التحضير لإزالة %s"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "جلب:"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "إزالة %s"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "تجاهل"
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "تم إزالة %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "خطأ"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "اÙ\84ØªØØ¶Ù\8aر Ù\84إزاÙ\84Ø© %s باÙ\84Ù\83اÙ\85Ù\84"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "جÙ\84ب %sب Ù\81Ù\8a %s (%sب/Ø«)\n"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Completely removed %s"
-msgstr "تمت إزالة %s بالكامل"
+msgid " [Working]"
+msgstr " [يعمل]"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/acqprogress.cc:271
+#, 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"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr ""
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "سجل حزمة مجهول!"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr ""
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "إعداد افتراضيّ سيّء!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "اضغط مفتاح الإدخال للاستمرار."
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة "
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "دمج المعلومات المتوفرة"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr ""
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "فشل تغيير اسم %s إلى %s"
-
-#: apt-inst/extract.cc:240
+#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgstr ""
msgid "File %s/%s overwrites the one in the package %s"
msgstr ""
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "تعذرت قراءة %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr ""
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "قراءة قوائم الحزم"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr ""
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "اÙ\84ØØ²Ù\85Ø© %s اÙ\84Ù\86سخة %s Ù\84Ù\87ا Ù\85عتÙ\85د غÙ\8aر Ù\85ستÙ\88Ù\81Ù\89:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "تعذرت Ù\82راءة Ù\82اعدة بÙ\8aاÙ\86ات اÙ\84Ù\82رص اÙ\84Ù\85دÙ\85ج %s"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-"
+"get update لإضافة أقراص مدمجة جديدة."
+
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "القرص المدمج الخطأ"
+
+#: methods/cdrom.cc:166
#, c-format
-msgid "Unable to locate package %s"
-msgstr "تعذر العثور على الحزمة %s"
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام."
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "أسماء الحزم الكلية :"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "لم يُعثر على القرص."
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " الحزم العادية:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "لم يُعثر على الملف"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr "الحزمة الوهمية تماماً:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "فشيل تنفيذ stat"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " الحزمة الوهمية المفردة:"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "فشل تعيين وقت التعديل"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " الحزم الوهمية المختلطة:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr ""
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " مفقودة:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "تسجيل الدخول"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "مجموع النسخ الفريدة:"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr ""
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-#| msgid "Total distinct versions: "
-msgid "Total Distinct Descriptions: "
-msgstr "مجموع النسخ الفريدة:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr ""
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "مجموع المعتمدات:"
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "رفض الخادم اتصالنا بالرد: %s"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "مجموع علاقات النسخ/الملفات:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "فشل USER، ردّ الخادم: %s"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-#| msgid "Total ver/file relations: "
-msgid "Total Desc/File relations: "
-msgstr "مجموع علاقات النسخ/الملفات:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "فشل PASS، ردّ الخادم: %s"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "مجموع علاقات النسخ/الملفات:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin "
+"فارغ."
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s"
+
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "فشل TYPE، ردّ الخادم: %s"
+
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "انتهى وقت الاتصال"
+
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "أغلق الخادم الاتصال"
+
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "خطأ في القراءة"
+
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
msgstr ""
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
msgstr ""
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "خطأ في الكتابة"
+
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
msgstr ""
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "مجموع المساحة المحسوب حسابها:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr ""
+
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr ""
+
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr ""
+
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr ""
+
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr ""
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "تعذر إرسال الأمر PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid "Package file %s is out of sync."
+msgid "Unknown address family %u (AF_*)"
msgstr ""
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "يجب أن تعطي صيغة واحدة بالضبط"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "فشل EPRT، ردّ الخادم: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "لم يُعثر على أية حزم"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr ""
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "ملفات الحزم:"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "تعذر قبول الاتصال"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
msgstr ""
-#: cmdline/apt-cache.cc:1532
+#: methods/ftp.cc:877
#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "تعذر إحضار الملف، ردّ الخادم '%s'"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "الحزم المُدبّسة:"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr ""
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(غير موجود)"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "فشل نقل البيانات، ردّ الخادم '%s'"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " مُثبّت:"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "استعلام"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(لاشيء)"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr ""
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " مرشّح: "
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "الاتصال بـ%s (%s)"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
+
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
msgstr ""
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " جدول النسخ:"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)."
-#: cmdline/apt-cache.cc:1618
+#: methods/connect.cc:93
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-#| msgid "%s %s for %s %s compiled on %s %s\n"
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s لـ%s %s مُجمّع على %s %s\n"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "تعذر الاتصال بـ%s:%s (%s)."
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "الاتصال بـ%s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
msgstr ""
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr ""
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr ""
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة."
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "تعذر الاتصال بـ%s %s:"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
msgstr ""
-#: cmdline/apt-config.cc:76
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ليس حزمة DEB صالحة."
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "تعذر الحصول على نسخة debconf. هل هي مثبتة؟"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "قائمة توسيعات الحزمة طويلة جداً"
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/gzip.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "خطأ في معالجة الدليل %s"
+msgid "Couldn't open pipe for %s"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "قائمة توسيعات المصدر طويلة جداً"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "خطأ Ù\81Ù\8a Ù\83تابة اÙ\84ترÙ\88Ù\8aسة Ø¥Ù\84Ù\89 Ù\85Ù\84Ù\81 اÙ\84Ù\85ØØªÙ\88Ù\8aات"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "باÙ\86تظار اÙ\84ترÙ\88Ù\8aسات"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/http.cc:523
#, c-format
-msgid "Error processing contents %s"
-msgstr "خطأ في معالجة المحتويات %s"
-
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+msgid "Got a single header line over %u chars"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "لم تُطابق أية تحديدات"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "سطر ترويسة سيء"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "أرسل خادم http ترويسة ردّ غير صالحة"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "خادم http له دعم مدى معطوب"
-#: ftparchive/apt-ftparchive.cc:832
-#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "بعض الملفات مفقودة في مجموعة ملف الحزمة `%s'"
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "نسق تاريخ مجهول"
-#: ftparchive/cachedb.cc:43
-#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "قاعدة البيانات كانت فاسدة، فتم تغيير اسمها إلى %s.old"
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "فشل التحديد"
-#: ftparchive/cachedb.cc:61
-#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "قاعدة البيانات قديمة، محاولة ترقية %s"
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "انتهى وقت الاتصال"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "خطأ في الكتابة إلى ملف المُخرجات"
-#: ftparchive/cachedb.cc:77
-#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "خطأ في الكتابة إلى الملف"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr ""
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "خطأ في الكتابة إلى الملف"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr ""
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال"
-#: ftparchive/writer.cc:76
-#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: تعذرت قراءة الدليل %s\n"
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "خطأ في القراءة من الخادم"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr ""
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "بيانات ترويسة سيئة"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "فشل الاتصال"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "خطأ داخلي"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
msgstr ""
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr ""
-
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
+msgid "Couldn't make mmap of %lu bytes"
msgstr ""
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to open %s"
-msgstr "فشل فتح %s"
+msgid "Selection %s not found"
+msgstr "تعذر العثور على التحديد %s"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "اختصار نوع مجهول: '%c'"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to readlink %s"
-msgstr ""
+msgid "Opening configuration file %s"
+msgstr "فتح ملف التهيئة %s"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "السطر %d طويل جداً (أقصاه %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to unlink %s"
+msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** فشل ربط %s بـ%s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr ""
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " DeLink limit of %sB hit.\n"
+msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s has no override entry\n"
+msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s maintainer is %s not %s\n"
+msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no source override entry\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s has no binary override entry either\n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "خطأ داخلي، تعذر العثور على العضو %s"
-
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - فشل تعيين الذاكرة"
+msgid "%c%s... Error!"
+msgstr "%c%s... خطأ!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "تعذر فتح %s"
+msgid "%c%s... Done"
+msgstr "%c%s... تمّ"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr ""
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "خيار سطر الأمر '%c' [من %s] مجهول."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr ""
+msgid "Command line option %s is not understood"
+msgstr "خيار سطر الأمر %s غير مفهوم"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
+msgid "Command line option %s is not boolean"
msgstr ""
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr ""
+msgid "Option %s requires an argument."
+msgstr "الخيار %s يتطلّب مُعطى."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
+msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr ""
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
+msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr ""
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "الخيار '%s' طويل جداً"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "خطأ داخÙ\84Ù\8aØ\8c تعذر Ø¥Ù\86شاء %s"
+msgid "Invalid operation %s"
+msgstr "عÙ\85Ù\84Ù\8aÙ\91Ø© غÙ\8aر صاÙ\84ØØ© %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
msgstr ""
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
msgstr ""
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
msgstr ""
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Problem unlinking %s"
+msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
-
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Regex compilation error - %s"
+msgid "Could not get lock %s"
msgstr ""
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is installed"
-msgstr "إلا أن %s مثبت"
+msgid "Sub-process %s received a segmentation fault."
+msgstr ""
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "but %s is to be installed"
-msgstr "إلا أنه سيتم تثبيت %s"
-
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "إلا أنه غير قابل للتثبيت"
-
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "إلا أنها حزمة وهمية"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "إلا أنها غير مثبتة"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "إلا أنه لن يتم تثبيتها"
+msgid "Sub-process %s returned an error code (%u)"
+msgstr ""
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " أو"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr ""
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "سيتم تثبيت الحزم الجديدة التالية:"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr ""
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "سيتم إزالة الحزم التالية:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "سيتم الإبقاء على الحزم التالية:"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr ""
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "ستتم ترقية الحزم التالية:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "مشكلة في إغلاق الملف"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "سيتم تثبيط الحزم التالية:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr ""
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "سيتم تغيير الحزم المبقاة التالية:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "مشكلة في مزامنة الملف"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (بسبب %s) "
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr ""
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
msgstr ""
-"تحذير: ستتم إزالة الحزم الأساسية التالية.\n"
-"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، "
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr ""
-#: cmdline/apt-get.cc:582
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu أعيد تثبيتها، "
+msgid "This APT does not support the versioning system '%s'"
+msgstr ""
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu مثبطة، "
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr ""
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "يعتمد"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu غير مثبتة بالكامل أو مزالة.\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "يعتمد مسبقاً"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "تصحيح المعتمدات..."
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "يستحسن"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " فشل."
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "يقترح"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Ù\84Ù\85 Ù\8aÙ\85Ù\83Ù\86 تصØÙ\8aØ Ø§Ù\84Ù\85عتÙ\85دات"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Ù\8aعارض"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ù\84Ù\85 Ù\8aÙ\85Ù\83Ù\86 تÙ\82Ù\84Ù\8aص Ù\85جÙ\85Ù\88عة اÙ\84ترÙ\82Ù\8aØ©"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Ù\8aستبدÙ\84"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " تم"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "يُلغي"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "قد ترغب بتنفيذ الأمر `apt-get -f install' لتصحيح هذه."
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ù\85Ù\8fعتÙ\85دات غÙ\8aر Ù\85ستÙ\88Ù\81اة. ØØ§Ù\88Ù\84 استخداÙ\85 -f."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "Ù\85Ù\87Ù\85"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "تحذير: تعذرت المصادقة على الحزم التالية!"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "مطلوب"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "تم غض النظر عن تحذير المصادقة.\n"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "قياسي"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "تثبÙ\8aت Ù\87ذÙ\87 اÙ\84ØØ²Ù\85 دÙ\88Ù\86 اÙ\84تØÙ\82Ù\82 Ù\85Ù\86Ù\87ا [y/N]Ø\9f "
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "اختÙ\8aارÙ\8a"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "تعذرت اÙ\84Ù\85صادÙ\82Ø© عÙ\84Ù\89 بعض اÙ\84ØØ²Ù\85"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "إضاÙ\81Ù\8a"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "هناك مشاكل وتم استخدام -y دون --force-yes"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr ""
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr ""
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة."
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr ""
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "خطأ داخلي، لم تنته عملية الترتيب"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "دمج المعلومات المتوفرة"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "تعذر قَفْل دليل التنزيل"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "فشل فتح %s"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "فشلت كتابة الملف %s"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/tagfile.cc:102
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n"
+msgid "Unable to parse package file %s (1)"
+msgstr ""
-#: cmdline/apt-get.cc:839
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "بحاجة إلى جلب %sب من الأرشيف.\n"
+msgid "Unable to parse package file %s (2)"
+msgstr ""
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n"
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr ""
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "تعذر حساب المساحة الحرة في %s"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr ""
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "ليس هناك مساحة كافية في %s."
-
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+msgid "Malformed line %lu in source list %s (absolute dist)"
msgstr ""
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "نعم، افعل ما أقوله!"
-
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-"أنت على وشك أن تقوم بشيء ضارّ جداً\n"
-"كي تستمر اكتب العبارة '%s'\n"
-" ؟] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "إجهاض."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "هل تريد الاستمرار [Y/n]؟"
-
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "فشل إحضار %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "فشل تنزيل بعض الملفات"
-
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "اكتمل التنزيل وفي وضع التنزيل فقط"
+msgid "Opening %s"
+msgstr "فتح %s"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
msgstr ""
-"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --"
-"fix-missing؟"
-
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "تعذر تصحيح الحزم المفقودة."
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr ""
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "إجهاض التثبيت."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr ""
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "لاحظ، تحديد %s بدلاً من %s\n"
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr ""
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/packagemanager.cc:399
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n"
+msgid "Index file type '%s' is not supported"
+msgstr ""
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/algorithms.cc:247
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "الحزمة %s وهميّة وتوفّرها:\n"
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [مُثبّتة]"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "يجب اختيار واحدة بالتحديد لتثبيتها."
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/acquire.cc:59
#, 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"
+msgid "Lists directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "على أيّ فإن الحزم التالية تحلّ مكانها:"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr ""
-#: cmdline/apt-get.cc:1128
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "الحزمة %s ليس لها مرشح تثبيت"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr ""
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n"
+msgid "Retrieving file %li of %li"
+msgstr ""
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s هي النسخة الأحدث.\n"
+msgid "The method driver %s could not be found."
+msgstr ""
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'"
+msgid "Method %s did not start correctly"
+msgstr ""
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "تعذر اÙ\84عثÙ\88ر عÙ\84Ù\89 اÙ\84Ù\86سخة '%s' Ù\84Ù\84ØØ²Ù\85Ø© '%s'"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "اÙ\84رجاء إدخاÙ\84 اÙ\84Ù\82رص اÙ\84Ù\85Ù\8fسÙ\85Ù\91Ù\89 '%s' Ù\81Ù\8a اÙ\84سÙ\88Ù\91اÙ\82Ø© '%s' Ù\88ضغط Ù\85Ù\81ØªØ§Ø Ø§Ù\84إدخاÙ\84."
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "نظام الحزم '%s' غير مدعوم"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "لا يقبل الأمر update أية مُعطيات"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr ""
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "تعذر قفل دليل القائمة"
+#: apt-pkg/clean.cc:57
+#, c-format
+msgid "Unable to stat %s."
+msgstr ""
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-#| msgid "The following NEW packages will be installed:"
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "سيتم تثبيت الحزم الجديدة التالية:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
msgstr ""
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
msgstr ""
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "قد تساعد المعلومات التالية في حل المشكلة:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr ""
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-#| msgid "Internal error, AllUpgrade broke stuff"
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr ""
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "حدث خطأ أثناء معالجة %s (NewPackage)"
-#: cmdline/apt-get.cc:1545
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "حدث خطأ أثناء معالجة %s (UserPackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
#, fuzzy, c-format
-#| msgid "Couldn't find package %s"
-msgid "Couldn't find task %s"
-msgstr "تعذر العثور على الحزمة %s"
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Couldn't find package %s"
-msgstr "تعذر اÙ\84عثÙ\88ر عÙ\84Ù\89 اÙ\84ØØ²Ù\85Ø© %s"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "ØØ¯Ø« خطأ أثÙ\86اء Ù\85عاÙ\84جة %s (UserPackage2)"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-#| msgid "but %s is to be installed"
-msgid "%s set to manual installed.\n"
-msgstr "إلا أنه سيتم تثبيت %s"
+#: apt-pkg/pkgcachegen.cc:213
+#, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "قد ترغب بتشغيل `apt-get -f install' لتصحيح هذه:"
+#: apt-pkg/pkgcachegen.cc:217
+#, c-format
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "حدث خطأ أثناء معالجة %s (UsePackage3)"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)."
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "حدث خطأ أثناء معالجة %s (NewVersion2)"
-#: cmdline/apt-get.cc:1742
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1750
-msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "حزم معطوبة"
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "سيتم تثبيت الحزم الإضافيّة التالية:"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "الحزم المقترحة:"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr ""
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "الحزم المستحسنة:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr ""
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "حساب الترقية..."
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "تمّ"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr ""
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
msgstr ""
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr ""
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "تعذر العثور على مصدر الحزمة %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "فشل إعادة التسمية ، %s (%s -> %s)."
+
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum غير متطابقة"
+
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum غير متطابقة"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr ""
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/acquire-item.cc:1213
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "تخطي الملف '%s' المنزل مسبقاً\n"
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
+msgstr ""
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/acquire-item.cc:1272
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "ليس هناك مساحة كافية في %s"
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
+msgstr ""
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "الحجم غير متطابق"
-#: cmdline/apt-get.cc:2199
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n"
+msgid "Vendor block %s contains no fingerprint"
+msgstr ""
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Fetch source %s\n"
-msgstr "إحضار المصدر %s\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "فشل إحضار بعض الأرشيفات."
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "جاري التعرف..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
+msgid "Stored label: %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "أمر فك الحزمة '%s' فشل.\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "فك تركيب القرص المدمج..."
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "أمر البناء '%s' فشل.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "فك تركيب القرص المدمج\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr ""
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "بانتظار القرص...\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "تركيب القرص...\n"
+
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
msgstr ""
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/cdrom.cc:678
#, c-format
-msgid "Unable to get build-dependency information for %s"
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "%s has no build depends.\n"
+msgid "Found label '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "هذا الاسم غير صالح، حاول مجدداً.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"هذا القرص مسمى: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "نسخ قوائم الحزم..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "كتابة لائحة المصادر الجديدة\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
msgstr ""
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records.\n"
msgstr ""
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files.\n"
msgstr ""
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
msgstr ""
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, c-format
+msgid "Directory '%s' missing"
msgstr ""
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "الوحدات المدعومة:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "تحضير %s"
-#: cmdline/apt-get.cc:2634
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "فتح %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr ""
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "التحضير لتهيئة %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "جلب:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "تهيئة %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "تجاهل"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "خطأ في معالجة الدليل %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "خطأ"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "تم تثبيت %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "جÙ\84ب %sب Ù\81Ù\8a %s (%sب/Ø«)\n"
+msgid "Preparing for removal of %s"
+msgstr "اÙ\84ØªØØ¶Ù\8aر Ù\84إزاÙ\84Ø© %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [يعمل]"
+msgid "Removing %s"
+msgstr "إزالة %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, 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"
+msgid "Removed %s"
+msgstr "تم إزالة %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "سجل حزمة مجهول!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
+msgstr "التحضير لإزالة %s بالكامل"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "تمت إزالة %s بالكامل"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "إعداد افتراضيّ سيّء!"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+msgstr ""
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "اضغط مفتاح الإدخال للاستمرار."
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr ""
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة "
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr ""
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "السطر %d طويل جداً (أقصاه %d)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "دمج المعلومات المتوفرة"
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "فشل التحديد"
#~ msgid "File date has changed %s"
#~ msgstr "تغير تاريخ الملف %s"
msgstr ""
"Project-Id-Version: apt 0.6\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-12 20:14+0300\n"
"Last-Translator: Yavor Doganov <yavor@doganov.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Неуспех при четенето на базата %s със CD-ROM"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. "
-"„apt-get update“ не може да се използва за добавяне на нови дискове"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Грешен CD-ROM"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Пакет %s версия %s има неудовлетворена зависимост:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Дискът не е намерен."
+msgid "Unable to locate package %s"
+msgstr "Пакетът %s не може да бъде намерен"
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "ФайлÑ\8aÑ\82 не е намеÑ\80ен"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Ð\9eбÑ\89о имена на пакеÑ\82и : "
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Неуспех при получаването на атрибути"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Нормални пакети: "
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Неуспех при задаването на време на промяна"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Чисти виртуални пакети: "
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Единични виртуални пакети: "
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Влизане"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Смесени виртуални пакети: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Неуспех при установяването на името на отдалечения сървър"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Липсващи: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\83Ñ\81Ñ\82ановÑ\8fванеÑ\82о на локалноÑ\82о име"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Ð\9eбÑ\89о Ñ\83никални веÑ\80Ñ\81ии: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "СÑ\8aÑ\80вÑ\8aÑ\80Ñ\8aÑ\82 оÑ\82каза Ñ\81вÑ\8aÑ\80зване и Ñ\81Ñ\8aобÑ\89и: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Ð\9eбÑ\89о Ñ\83никални веÑ\80Ñ\81ии: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER се провали, сървърът съобщи: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Общо зависимости: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS се провали, сървърът съобщи: %s"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Общо отношения версия/файл: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::"
-"ProxyLogin е празен."
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Общо отношения версия/файл: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Общо отношения „Осигурява“: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE се провали, сървърът съобщи: %s"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Общо разгърнати низове: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Ð\94опÑ\83Ñ\81Ñ\82имоÑ\82о вÑ\80еме за Ñ\81вÑ\8aÑ\80званеÑ\82о изÑ\82еÑ\87е"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Ð\9eбÑ\89о пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во за завиÑ\81имоÑ\81Ñ\82и по веÑ\80Ñ\81ии: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "СÑ\8aÑ\80вÑ\8aÑ\80Ñ\8aÑ\82 Ñ\80азпадна вÑ\80Ñ\8aзкаÑ\82а"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Ð\9eбÑ\89о пÑ\80азно пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и Ñ\87еÑ\82ене"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Ð\9eбÑ\89о оÑ\82Ñ\87еÑ\82ено пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Отговорът препълни буфера."
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Пакетният файл %s не е синхронизиран."
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Развален пÑ\80оÑ\82окол"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "ТÑ\80Ñ\8fбва да вÑ\8aведеÑ\82е Ñ\81амо един изÑ\80аз"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и запиÑ\81"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Ð\9dÑ\8fма намеÑ\80ени пакеÑ\82и"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81Ñ\8aздаванеÑ\82о на гнездо"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Ð\9fакеÑ\82ни Ñ\84айлове:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-"Неуспех при свързването на гнездо за данни, допустимото време за свъзрзване "
-"изтече"
-
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Неуспех"
-
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Неуспех при свързването на пасивно гнездо."
-
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo не успя да се добере до слушащо гнездо"
-
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Неуспех при свързването на гнездо"
+"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Неуспех при слушането на гнездото"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Неуспех при определянето на името на гнездото"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Отбити пакети:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Неуспех при изпращането на командата PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(не са намерени)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Неизвестно семейство адреси %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Инсталирана: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT се провали, сървърът съобщи: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(няма)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Времето за установяване на връзка с гнездо за данни изтече"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Кандидат: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Невъзможно е да се приеме свързването"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Отбиване на пакета: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Проблем при хеширане на файла"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Таблица с версиите:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Времето за връзка с гнездо за данни изтече"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s за %s %s, компилиран на %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Запитване"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Неуспех при извикването на "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Свързване с %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Употреба: apt-cache [опции] команда\n"
+" apt-cache [опции] add файл1 [файл2 ...]\n"
+" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n"
+" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n"
+"\n"
+"apt-cache е инструмент на ниско ниво за обработка на двоичните\n"
+"кеш файлове на APT и извличане на информация от тях\n"
+"\n"
+"Команди:\n"
+" add - Добавя пакетен файл към кеша на пакети с изходен код\n"
+" gencaches - Генериране на кеша на пакети и пакети с изходен код\n"
+" showpkg - Показва обща информация за даден пакет\n"
+" showsrc - Показва записите на пакета с изходен код\n"
+" stats - Показва някои общи статистики\n"
+" dump - Показва целия файл в сбита форма\n"
+" dumpavail - Разпечатва наличен файл в stdout\n"
+" unmet - Показва неудовлетворени зависимости\n"
+" search - Търси в списъка с пакети за регулярен израз\n"
+" show - Показва запис за пакета\n"
+" depends - Показва необработена информация за зависимости на пакета\n"
+" rdepends - Показва информация за обратните зависимости на пакета\n"
+" pkgnames - Списък с имената на всички пакети\n"
+" dotty - Генериране на графики на пакети за GraphVis\n"
+" xvcg - Генериране на графики на пакети за xvcg\n"
+" policy - Показване на настройките на политиката\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" -p=? Кешът за пакети.\n"
+" -s=? Кешът за пакети с изходен код.\n"
+" -q Премахване на индикатора за напредък.\n"
+" -i Показване само на важни зависимости при командата „unmet“.\n"
+" -c=? Четене на този конфигурационен файл.\n"
+" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
+"tmp\n"
+"Вижте „man“ страниците apt-cache(8) и apt.conf(5) за повече информация.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Задайте име за този диск, като „Debian 2.1r1 Disk1“"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Сложете диск в устройството и натиснете „Enter“"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Не може да се започне свързване с %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Повторете този процес за останалите дискове от комплекта."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Аргументите не са по двойки"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Неуспех при свързване с %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Употреба: apt-config [опции] команда\n"
+"\n"
+"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n"
+"\n"
+"Команди:\n"
+" shell - Режим с обвивка\n"
+" dump - Показва конфигурацията\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" -c=? Четене на този конфигурационен файл.\n"
+" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
+"tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Свързване с %s"
+msgid "%s not a valid DEB package."
+msgstr "%s не е валиден DEB пакет."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Неуспех при намирането на IP адреса на „%s“"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Употреба: apt-extracttemplates файл1 [файл2 ...]\n"
+"\n"
+"apt-extracttemplates е инструмент за извличане на конфигурационна "
+"информация\n"
+"и шаблони от дебиански пакети\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" -t Настройване на временна директория\n"
+" -c=? Четене на този конфигурационен файл.\n"
+" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
+"tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Ð\92Ñ\80еменен неÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на IP адÑ\80еÑ\81а на â\80\9e%sâ\80\9c"
+msgid "Unable to write to %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и запиÑ\81а на %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Не може да се извлече версията на debconf. Debconf инсталиран ли е?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Неуспех при свързването с %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Списъкът с разширения на пакети и твърде дълъг"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Неуспех при достъпа до набор на ключове: „%s“"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Списъкът с аргументи от Acquire::gpgv::Options е твърде дълъг. Завършване "
-"на работа."
+msgid "Error processing directory %s"
+msgstr "Грешка при обработката на директория %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на "
-"ключа?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Списъкът с разширения на източници е твърде дълъг"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Ð\9dамеÑ\80ен е поне един невалиден подпиÑ\81."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и запазванеÑ\82о на заглавнаÑ\82а Ñ\87аÑ\81Ñ\82 вÑ\8aв Ñ\84айла Ñ\81Ñ\8aÑ\81 Ñ\81Ñ\8aдÑ\8aÑ\80жание"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Неуспех при изпълнението на „%s“ за проверка на подписа (инсталиран ли е "
-"gnupg?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Неизвестна грешка при изпълнението на gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Следните подписи са невалидни:\n"
+msgid "Error processing contents %s"
+msgstr "Грешка при обработката на съдържание %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е "
-"наличен:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Грешка при получаването на атрибути за %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Неуспех при отварянето на програмен канал за %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Грешка при четене от процес %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Употреба: apt-ftparchive [опции] команда\n"
+"Команди: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents път\n"
+" release път\n"
+" generate config [групи]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive генерира индексни файлове за архиви на Debian. Поддържа\n"
+"много стилове на генериране от напълно автоматично до функционални\n"
+"замени на dpkg-scanpackages и dpkg-scansources.\n"
+"\n"
+"apt-ftparchive генерира „Package“ файлове от дърво с .deb файлове. Файлът\n"
+"„Package“ представлява съдържанието на всички контролни полета на всеки\n"
+"пакет, както и MD5 хеш и размер на файла. Стойностите на полетата \n"
+"„Priority“ и „Section“ могат да бъдат изменени с файл „override“.\n"
+"\n"
+"По подобен начин apt-ftparchive генерира „Sources“ файлове от дърво с .dsc \n"
+"файлове. Опцията --source-override може да се използва за указване на файл\n"
+"„override“ за пакети с изходен код.\n"
+"\n"
+"Командите „packages“ и „sources“ трябва да се изпълняват в корена на "
+"дървото.\n"
+"BinaryPath трябва да сочи към основата, където започва рекурсивното търсене "
+"и\n"
+"файла „override“ трябва да съдържа всички флагове за преназначаване. "
+"Pathprefix\n"
+"се прибавя към полетата на файловите имена, ако съществува. Пример за "
+"употреба\n"
+"от архива на Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" --md5 Управление на генерирането на MD5.\n"
+" -s=? Файл „override“ за пакети с изходен код.\n"
+" -q Без показване на съобщения.\n"
+" -d=? Избор на допълнителна база от данни за кеширане.\n"
+" --no-delink Включване на режим за премахване на връзки.\n"
+" --contents Управление на генерирането на файлове със съдържание.\n"
+" -c=? Четене на този конфигурационен файл.\n"
+" -o=? Настройване на произволна конфигурационна опция"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Чакане на заглавни Ñ\87аÑ\81Ñ\82и"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ð\9dÑ\8fма Ñ\81Ñ\8aвпадениÑ\8f на избоÑ\80а"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Получен е един ред на заглавна част с над %u символа"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Невалиден ред на заглавна част"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Липсват някои файлове от групата с файлови пакети „%s“"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "БД е повредена, файлът е преименуван на %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "БД е стара, опит за актуализиране на %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Форматът на БД е невалиден. Ако сте обновили от стара версия на apt, "
+"премахнете базата от данни и я създайте наново."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Неуспех при отварянето на файл %s от БД: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Неизвестен формат на дата"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Грешка при получаването на атрибути за %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 на избоÑ\80а"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Ð\92 аÑ\80Ñ\85ива нÑ\8fма поле â\80\9econtrolâ\80\9c"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Ð\94опÑ\83Ñ\81Ñ\82имоÑ\82о вÑ\80еме за Ñ\81вÑ\8aÑ\80зване изÑ\82еÑ\87е"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и полÑ\83Ñ\87аванеÑ\82о на кÑ\83Ñ\80Ñ\81оÑ\80"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Грешка при записа на изходен файл"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Неуспех при четенето на директория %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Грешка при записа на файл"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Неуспех при четенето на %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Грешка при записа на файла"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Грешка при четене от сървъра"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Грешките се отнасят за файла "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Невалидни данни на заглавната част"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Неуспех при превръщането на %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Неуспех при свързването"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Неуспех при обхода на дървото"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Вътрешна грешка"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Неуспех при отварянето на %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Невъзможно е да се прехвърли в паметта празен файл"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr "DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80еÑ\85вÑ\8aÑ\80лÑ\8fнеÑ\82о в памеÑ\82Ñ\82а на %lu байÑ\82а"
+msgid "Failed to readlink %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80оÑ\87иÑ\82анеÑ\82о на вÑ\80Ñ\8aзка %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Ð\98збоÑ\80Ñ\8aÑ\82 %s не е намеÑ\80ен"
+msgid "Failed to unlink %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80емаÑ\85ванеÑ\82о на вÑ\80Ñ\8aзка %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Неизвестен тип на абревиатура: „%c“"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Неуспех при създаването на връзка %s към %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Ð\9eÑ\82ваÑ\80Ñ\8fне на конÑ\84игÑ\83Ñ\80аÑ\86ионен Ñ\84айл %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr "Ð\9fÑ\80евиÑ\88ен лимиÑ\82 на DeLink оÑ\82 %sB.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Ред %d е твърде дълъг (максимум %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Архивът няма поле „package“"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Синтактична грешка %s:%u: В началото на блока няма име."
+msgid " %s has no override entry\n"
+msgstr " %s няма запис „override“\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Синтактична грешка %s:%u: Лошо форматиран таг"
+msgid " %s maintainer is %s not %s\n"
+msgstr " поддържащия пакета %s е %s, а не %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Синтактична грешка %s:%u: Излишни символи след стойността"
+msgid " %s has no source override entry\n"
+msgstr " %s няма запис „source override“\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното "
-"ниво"
+msgid " %s has no binary override entry either\n"
+msgstr " %s няма също и запис „binary override“\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: ТвÑ\8aÑ\80де много вложени â\80\9eincludeâ\80\9c"
+msgid "Internal error, could not locate member %s"
+msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка, неÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на Ñ\81Ñ\8aÑ\81Ñ\82авна Ñ\87аÑ\81Ñ\82 %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Неуспех при заделянето на памет"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: Ð\9dеподдÑ\8aÑ\80жана диÑ\80екÑ\82ива â\80\9e%sâ\80\9c"
+msgid "Unable to open %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и оÑ\82ваÑ\80Ñ\8fнеÑ\82о на %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: Ð\98злиÑ\88ни Ñ\81имволи в кÑ\80аÑ\8f на Ñ\84айла"
+msgid "Malformed override %s line %lu #1"
+msgstr "Ð\9dепÑ\80авилно Ñ\84оÑ\80маÑ\82иÑ\80ан override %s, Ñ\80ед %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Неуспех при четенето на %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Неправилно форматиран override %s, ред %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Грешка!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Неправилно форматиран override %s, ред %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Готово"
+msgid "Failed to read the override file %s"
+msgstr "Неуспех при четенето на override файл %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Ð\9dеизвеÑ\81Ñ\82на опÑ\86иÑ\8f за команден Ñ\80ед â\80\9e%câ\80\9c [оÑ\82 %s]."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Ð\9dепознаÑ\82 алгоÑ\80иÑ\82Ñ\8aм за компÑ\80еÑ\81иÑ\8f â\80\9e%sâ\80\9c"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Ð\9eпÑ\86иÑ\8fÑ\82а за команден Ñ\80ед %s не е Ñ\80азпознаÑ\82а"
+msgid "Compressed output %s needs a compression set"
+msgstr "Ð\9aомпÑ\80еÑ\81иÑ\80аниÑ\8fÑ\82 изÑ\85од %s изиÑ\81ква наÑ\81Ñ\82Ñ\80ойка за компÑ\80еÑ\81иÑ\80анеÑ\82о"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Опцията за команден ред %s не е булева"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Неуспех при създаването на IPC pipe към подпроцеса"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Опция %s изисква аргумент."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Неуспех при създаването на FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Опция %s: Значението трябва да има =<val>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Неуспех при пускането на подпроцес"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Опция %s изисква аргумент цяло число, не „%s“"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Процес-потомък за компресиране"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Ð\9eпÑ\86иÑ\8f â\80\9e%sâ\80\9c е Ñ\82вÑ\8aÑ\80де дÑ\8aлга"
+msgid "Internal error, failed to create %s"
+msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка, неÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81Ñ\8aздаванеÑ\82о на %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Смисълът %s не е ясен, опитайте true или false."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Неуспех при създаването на подпроцес IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Невалидна операция %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Неуспех при изпълнението на компресиращата програма "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "декомпресираща програма"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Неуспех при преминаването в %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "В/И към подпроцеса/файла пропадна"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Неуспех при намирането на атрибутите на cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Неуспех при четене докато се изчислява MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
-"Не се използва заключване за файл за заключване %s, който е само за четене"
+msgid "Problem unlinking %s"
+msgstr "Неуспех при премахването на връзка на %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и оÑ\82ваÑ\80Ñ\8fнеÑ\82о на Ñ\84айл за заклÑ\8eÑ\87ване %s"
+msgid "Failed to rename %s to %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80еименÑ\83ванеÑ\82о на %s на %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"Не се използва заключване за файл за заключване %s, който е монтиран по NFS"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и доÑ\81Ñ\82Ñ\8aпа до заклÑ\8eÑ\87ване %s"
+msgid "Regex compilation error - %s"
+msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и компилиÑ\80анеÑ\82о на Ñ\80егÑ\83лÑ\8fÑ\80ниÑ\8f изÑ\80аз - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Изчака се завършването на %s, но той не беше пуснат"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Следните пакети имат неудовлетворени зависимости:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Ð\9dаÑ\80Ñ\83Ñ\88ение на заÑ\89иÑ\82аÑ\82а на памеÑ\82Ñ\82а (segmentation fault) в подпÑ\80оÑ\86еÑ\81а %s."
+msgid "but %s is installed"
+msgstr "но е инÑ\81Ñ\82алиÑ\80ан %s"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Ð\9fодпÑ\80оÑ\86еÑ\81Ñ\8aÑ\82 %s вÑ\8aÑ\80на код за гÑ\80еÑ\88ка (%u)"
+msgid "but %s is to be installed"
+msgstr "но Ñ\89е бÑ\8aде инÑ\81Ñ\82алиÑ\80ан %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Подпроцесът %s завърши неочаквано"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "но той не може да бъде инсталиран"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Неуспех при отварянето на файла %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "но той е виртуален пакет"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr ""
-"грешка при четене, все още има %lu за четене, но няма нито един останал"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "но той не е инсталиран"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "грешка при запис, все още име %lu за запис, но не успя"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "но той няма да бъде инсталиран"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Проблем при затварянето на файла"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " или"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Ð\9fÑ\80облем пÑ\80и пÑ\80емаÑ\85ванеÑ\82о на вÑ\80Ñ\8aзка кÑ\8aм Ñ\84айла"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "СледниÑ\82е Ð\9dÐ\9eÐ\92Ð\98 пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 инÑ\81Ñ\82алиÑ\80ани:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Ð\9fÑ\80облем пÑ\80и Ñ\81инÑ\85Ñ\80онизиÑ\80ане на Ñ\84айла"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 Ð\9fÐ Ð\95Ð\9cÐ\90Ð¥Ð\9dÐ\90ТÐ\98:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Ð\9fÑ\80азен кеÑ\88 на пакеÑ\82и"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "СледниÑ\82е пакеÑ\82и нÑ\8fма да бÑ\8aдаÑ\82 пÑ\80оменени:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "ФайлÑ\8aÑ\82 за кеÑ\88 на пакеÑ\82и е повÑ\80еден"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 акÑ\82Ñ\83ализиÑ\80ани:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "ФайлÑ\8aÑ\82 за кеÑ\88 на пакеÑ\82и е неÑ\81Ñ\8aвмеÑ\81Ñ\82има веÑ\80Ñ\81иÑ\8f"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 Ð\92ЪРÐ\9dÐ\90ТÐ\98 Ð\9aЪÐ\9c Ð\9fÐ\9e-СТÐ\90Ð Ð\90 Ð\92Ð\95РСÐ\98Я:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Следните задържани пакети ще бъдат променени:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Тази версия на APT не поддържа система за версии „%s“"
+msgid "%s (due to %s) "
+msgstr "%s (поради %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Кешът на пакети е бил направен за различна архитектура"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n"
+"Това НЕ би трябвало да става освен ако знаете точно какво правите!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Зависи от"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu актуализирани, %lu нови инсталирани, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Предварително зависи от"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu преинсталирани, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Предлага се"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu върнати към по-стара версия, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Препоръчва се"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu за премахване и %lu без промяна.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Конфликтира с"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu не са напълно инсталирани или премахнати.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Ð\97аменÑ\8f"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Ð\9aоÑ\80игиÑ\80ане на завиÑ\81имоÑ\81Ñ\82иÑ\82е..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Изважда от употреба"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " пропадна."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Неуспех при коригирането на зависимостите"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "важен"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и минимизиÑ\80анеÑ\82о на набоÑ\80а акÑ\82Ñ\83ализаÑ\86ии"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "изискван"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Готово"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "стандартен"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"Възможно е да изпълните „apt-get -f install“, за да коригирате тези "
+"неизправности."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "незадÑ\8aлжиÑ\82елен"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ð\9dеÑ\83довлеÑ\82воÑ\80ени завиÑ\81имоÑ\81Ñ\82и. Ð\9eпиÑ\82айÑ\82е Ñ\81 â\80\9e-fâ\80\9c."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "допÑ\8aлниÑ\82елен"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "Ð\9fÐ Ð\95Ð\94УÐ\9fÐ Ð\95Ð\96Ð\94Ð\95Ð\9dÐ\98Ð\95: СледниÑ\82е пакеÑ\82и не могаÑ\82 да бÑ\8aдаÑ\82 Ñ\83доÑ\81Ñ\82овеÑ\80ени!"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Ð\98згÑ\80аждане на дÑ\8aÑ\80воÑ\82о Ñ\81Ñ\8aÑ\81 завиÑ\81имоÑ\81Ñ\82и"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Ð\9fÑ\80едÑ\83пÑ\80еждениеÑ\82о за Ñ\83доÑ\81Ñ\82овеÑ\80Ñ\8fванеÑ\82о е пÑ\80енебÑ\80егнаÑ\82о.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Ð\92еÑ\80Ñ\81ии кандидаÑ\82и"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Ð\98нÑ\81Ñ\82алиÑ\80ане на Ñ\82ези пакеÑ\82и без пÑ\80овеÑ\80ка [y/N]?"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Ð\93енеÑ\80иÑ\80ане на завиÑ\81имоÑ\81Ñ\82и"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Ð\9dÑ\8fкои пакеÑ\82и не можаÑ\85а да бÑ\8aдаÑ\82 Ñ\83доÑ\81Ñ\82овеÑ\80ени"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Смесване на наличната информация"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Има проблеми и „-y“ е използвано без „--force-yes“"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Неуспех при отварянето на %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Неуспех при запис на файл %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Неуспех при анализирането на пакетен файл %s (1)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Вътрешна грешка, „Ordering“ не завърши"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Неуспех при анализирането на пакетен файл %s (2)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Неуспех при заключването на директорията за изтегляне"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Ð\9bоÑ\88о Ñ\84оÑ\80маÑ\82иÑ\80ан Ñ\80ед %lu в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s (адÑ\80еÑ\81-URI)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "СпиÑ\81Ñ\8aкÑ\8aÑ\82 Ñ\81 изÑ\82оÑ\87ниÑ\86и не можа да бÑ\8aде пÑ\80оÑ\87еÑ\82ен."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Странно.. Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Ð\9bоÑ\88о Ñ\84оÑ\80маÑ\82иÑ\80ан Ñ\80ед %lu в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s (анализ на адÑ\80еÑ\81-URI)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ð\9dеобÑ\85одимо е да Ñ\81е изÑ\82еглÑ\8fÑ\82 %sB/%sB аÑ\80Ñ\85иви.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr ""
-"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Необходимо е да се изтеглят %sB архиви.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr ""
-"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "След разпакетирането ще бъде използвано %sB дисково пространство.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Ð\9eÑ\82ваÑ\80Ñ\8fне на %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "След Ñ\80азпакеÑ\82иÑ\80анеÑ\82о Ñ\89е бÑ\8aде оÑ\81вободено %sB диÑ\81ково пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Ред %u в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s е Ñ\82вÑ\8aÑ\80де дÑ\8aлÑ\8aг."
+msgid "Couldn't determine free space in %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и опÑ\80еделÑ\8fнеÑ\82о на Ñ\81вободноÑ\82о пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Ð\9bоÑ\88о Ñ\84оÑ\80маÑ\82иÑ\80ан Ñ\80ед %u в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s (Ñ\82ип)"
+msgid "You don't have enough free space in %s."
+msgstr "Ð\9dÑ\8fмаÑ\82е доÑ\81Ñ\82аÑ\82Ñ\8aÑ\87но Ñ\81вободно пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен."
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Указано е „Trivial Only“, но това не е тривиална операция."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr ""
-"Лошо форматиран ред %u в списъка с източници %s (идентификатор на "
-"производител)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Да, прави каквото казвам!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"В следствие на циклични зависимости от типа „Конфликтира/Предварително "
-"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия "
-"пакет %s. Това често е лошо, но ако наистина искате да го направите, "
-"активирайте опцията APT::Force-LoopBreak."
+"На път сте да направите нещо потенциално опасно.\n"
+"За да продължите, въведете фразата „%s“\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Не се поддържа индексен файл от типа „%s“"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Прекъсване."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Искате ли да продължите [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за "
-"него."
+msgid "Failed to fetch %s %s\n"
+msgstr "Неуспех при изтеглянето на %s %s\n"
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е "
-"причинено от задържани пакети."
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Някои файлове не можаха да бъдат изтеглени"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Изтеглянето завърши в режим само на изтегляне"
+
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Неуспех при коригирането на проблемите, имате задържани счупени пакети."
+"Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ "
+"или да опитате с „--fix-missing“?"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Директорията със списъци %spartial липсва."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "„--fix-missing“ и превключване на носители не се поддържа все още"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Директорията за архиви %spartial липсва."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Неуспех при коригирането на липсващите пакети."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Изтегляне на файл %li от %li (остават %s)"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Прекъсване на инсталирането."
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Ð\98зÑ\82еглÑ\8fне на Ñ\84айл %li оÑ\82 %li"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Ð\97абележеÑ\82е, избиÑ\80ане на %s вмеÑ\81Ñ\82о %s\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на дÑ\80айвеÑ\80 за меÑ\82од %s."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Ð\9fÑ\80опÑ\83Ñ\81кане на %s, веÑ\87е е инÑ\81Ñ\82алиÑ\80ан и не е маÑ\80киÑ\80ан за акÑ\82Ñ\83ализаÑ\86иÑ\8f.\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Ð\9cеÑ\82одÑ\8aÑ\82 %s не Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а пÑ\80авилно"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s не е инÑ\81Ñ\82алиÑ\80ан, Ñ\82ака Ñ\87е не е пÑ\80емаÑ\85наÑ\82\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "СложеÑ\82е диÑ\81ка, озаглавен â\80\9e%sâ\80\9c в Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82во â\80\9e%sâ\80\9c и наÑ\82иÑ\81неÑ\82е â\80\9eEnterâ\80\9c."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s е виÑ\80Ñ\82Ñ\83ален пакеÑ\82, оÑ\81игÑ\83Ñ\80ен оÑ\82:\n"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Пакетната система „%s“ не е поддържана"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Инсталиран]"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и опÑ\80еделÑ\8fнеÑ\82о на подÑ\85одÑ\8fÑ\89а пакеÑ\82на Ñ\81иÑ\81Ñ\82ема"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "ТÑ\80Ñ\8fбва изÑ\80иÑ\87но да избеÑ\80еÑ\82е един за инÑ\81Ñ\82алиÑ\80ане."
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Unable to stat %s."
-msgstr "Неуспех при получаването на атрибути на %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Списъкът с източници не можа да бъде прочетен."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани "
-"или отворени."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+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 ""
-"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Невалиден запис във файла с настройки, няма заглавна част Package"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Неизвестен тип за отбиване %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Няма указан приоритет (или е нула) на отбиването"
+"Пакетът %s не е наличен, но е в списъка със зависимости на друг пакет.\n"
+"Това може да означава, че пакета липсва, остарял е, или е достъпен\n"
+"само от друг източник\n"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Ð\9aеÑ\88Ñ\8aÑ\82 има неÑ\81Ñ\8aвмеÑ\81Ñ\82има Ñ\81иÑ\81Ñ\82ема за веÑ\80Ñ\81ии"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Ð\9eбаÑ\87е Ñ\81ледниÑ\82е пакеÑ\82и го замеÑ\81Ñ\82ваÑ\82:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s нÑ\8fма кандидаÑ\82 за инÑ\81Ñ\82алиÑ\80ане"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Възникна грешка при обработката на %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Възникна грешка при обработката на %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s вече е най-новата версия.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Ð\9dе е намеÑ\80ено издание â\80\9e%sâ\80\9c на â\80\9e%sâ\80\9c"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Ð\9dе е намеÑ\80ена веÑ\80Ñ\81иÑ\8f â\80\9e%sâ\80\9c на â\80\9e%sâ\80\9c"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Ð\98збÑ\80ана е веÑ\80Ñ\81иÑ\8f %s (%s) за %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Възникна грешка при обработката на %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Командата „update“ не възприема аргументи"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Неуспех при заключването на директорията със списъка на пакетите"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Ð\95Ñ\85а, надÑ\85вÑ\8aÑ\80лиÑ\85Ñ\82е бÑ\80оÑ\8f имена на пакеÑ\82и, на койÑ\82о е Ñ\81поÑ\81обна Ñ\82ази веÑ\80Ñ\81иÑ\8f на "
-"APT."
+"Ð\9dÑ\8fкои индекÑ\81ни Ñ\84айлове не можаÑ\85а да бÑ\8aдаÑ\82 изÑ\82еглени, Ñ\82е Ñ\81а пÑ\80енебÑ\80егнаÑ\82и или "
+"са използвани по-стари."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Следните НОВИ пакети ще бъдат инсталирани:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Възникна грешка при обработката на %s (FindPkg)"
-
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Възникна грешка при обработката на %s (CollectFileProvides)"
-
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Четене на списъците с пакети"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr ""
+"Следната информация може да помогне за намиране на изход от ситуацията:"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Събиране на информация за „Осигурява“"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Неуспех при записа на %s"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Неуспех при намирането на пакет %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "пÑ\80еименÑ\83ванеÑ\82о Ñ\81е пÑ\80овали, %s (%s -> %s)."
+msgid "Couldn't find package %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на пакеÑ\82 %s"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Несъответствие на контролна сума MD5"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Забележете, избиране на %s за регулярен израз „%s“\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Ð\9dеÑ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82вие на конÑ\82Ñ\80олна Ñ\81Ñ\83ма MD5"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "но Ñ\89е бÑ\8aде инÑ\81Ñ\82алиÑ\80ан %s"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Ð\9dÑ\8fма налиÑ\87ни пÑ\83блиÑ\87ни клÑ\8eÑ\87ове за Ñ\81ледниÑ\82е иденÑ\82иÑ\84икаÑ\82оÑ\80и на клÑ\8eÑ\87ове:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Ð\92Ñ\8aзможно е да изпÑ\8aлниÑ\82е â\80\9eapt-get -f installâ\80\9c, за да коÑ\80игиÑ\80аÑ\82е:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва "
-"Ñ\80Ñ\8aÑ\87но да опÑ\80авиÑ\82е Ñ\82ози пакеÑ\82 (поÑ\80ади пÑ\80опÑ\83Ñ\81наÑ\82а аÑ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80а)."
+"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или "
+"Ñ\83кажеÑ\82е Ñ\80азÑ\80еÑ\88ение)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва "
-"ръчно да оправите този пакет."
+"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n"
+"че сте изискали невъзможна ситуация или ако използвате нестабилната\n"
+"дистрибуция, че някои необходими пакети още не са създадени или пък\n"
+"са били преместени от Incoming."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Несъответствие на размера"
+"Тъй като сте указали единична операция, твърде е възможно пакета просто\n"
+"да не може да бъде инсталиран; в такъв случай би трябвало да се подаде\n"
+"доклад за грешка за този пакет."
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Блокът на производителя %s не съдържа отпечатък"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Счупени пакети"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Използване на точка за монтиране на CD-ROM %s\n"
-"Монтиране на CD-ROM\n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Следните допълнителни пакети ще бъдат инсталирани:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Ð\98денÑ\82иÑ\84иÑ\86иÑ\80ане..."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Ð\9fÑ\80едложени пакеÑ\82и:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Запазен етикет: %s \n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Препоръчвани пакети:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Използване на точка за монтиране на CD-ROM %s\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Изчисляване на актуализацията..."
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Ð\94емонÑ\82иÑ\80ане на CD-ROM\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Чакане за диск...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Монтиране на CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Сканиране на диска за индексни файлове...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Намерени са %i индекса на пакети, %i индекса на пакети с изходен код и %i "
-"подписа.\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Запазен етикет: %s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Това не е валидно име, опитайте отново.\n"
-
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Наименование на този диск: \n"
-"„%s“\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Копиране на списъците с пакети..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Запазване на новия списък с източници\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Записите в списъка с източници за този диск са:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Демонтиране на CD-ROM..."
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Готово"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Записани са %i записа.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Записани са %i записа с %i липсващи файла.\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Ð\97апиÑ\81ани Ñ\81а %i запиÑ\81а Ñ\81 %i неÑ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82ваÑ\89и Ñ\84айла\n"
+msgid "Unable to find a source package for %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на изÑ\85оден код на пакеÑ\82 %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Директорията със списъци %spartial липсва."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Пропускане на вече изтегления файл „%s“\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "Ð\9fодгоÑ\82вÑ\8fне на %s"
+msgid "You don't have enough free space in %s"
+msgstr "Ð\9dÑ\8fмаÑ\82е доÑ\81Ñ\82аÑ\82Ñ\8aÑ\87но Ñ\81вободно пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "РазпакеÑ\82иÑ\80ане на %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Ð\9dеобÑ\85одимо е да Ñ\81е изÑ\82еглÑ\8fÑ\82 %sB/%sB аÑ\80Ñ\85иви изÑ\85оден код.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Ð\9fодгоÑ\82вÑ\8fне на %s за конÑ\84игÑ\83Ñ\80иÑ\80ане"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Ð\9dеобÑ\85одимо е да Ñ\81е изÑ\82еглÑ\8fÑ\82 %sB аÑ\80Ñ\85иви изÑ\85оден код.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "Конфигуриране на %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Грешка при обработката на директория %s"
+msgid "Fetch source %s\n"
+msgstr "Изтегляне на изходен код %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s е инсталиран"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Неуспех при изтеглянето на някои архиви."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Подготвяне за премахване на %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "Ð\9fÑ\80емаÑ\85ване на %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Ð\9aомандаÑ\82а за Ñ\80азпакеÑ\82иÑ\80ане â\80\9e%sâ\80\9c пÑ\80опадна.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "%s е премахнат"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Ð\9fодгоÑ\82овка за пÑ\8aлно пÑ\80емаÑ\85ване на %s"
+msgid "Build command '%s' failed.\n"
+msgstr "Ð\9aомандаÑ\82а за компилиÑ\80ане â\80\9e%sâ\80\9c пÑ\80опадна.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s е напълно премахнат"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Процесът-потомък пропадна"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Трябва да укажете поне един пакет за проверка на зависимости за компилиране"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Неуспех при отварянето на файла %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Неуспех при създаването на IPC pipe към подпроцеса"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Връзката прекъсна преждевременно"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Неуспех при създаването на програмни канали"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Неуспех при изпълнението на gzip"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Развален архив"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Невярна контролна сума на tar, развален архив"
-
-#: apt-inst/contrib/extracttar.cc:296
-#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Непозната заглавна част на TAR тип %u, елемент %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Невалиден подпис на архива"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Грешка при четене на заглавната част на елемента на архива"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Невалидна заглавна част на елемента на архива"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Архивът е твърде кратък"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Неуспех при четенето на заглавните части на архива"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "Извикан е DropNode за все още използван възел"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Грешка при намирането на хеш-елемента!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Неуспех при установяване на отклонението"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Вътрешна грешка в AddDiversion"
-
-#: apt-inst/filelist.cc:477
-#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s"
-
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Двойно добавяне на отклонение %s -> %s"
+msgid "Unable to get build-dependency information for %s"
+msgstr ""
+"Неуспех при получаването на информация за зависимостите за компилиране на %s"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Дублиран конфигурационен файл %s/%s"
+msgid "%s has no build depends.\n"
+msgstr "%s няма зависимости за компилиране.\n"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Failed to write file %s"
-msgstr "Неуспех при запис на файл %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s "
+"не може да бъде намерен"
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to close file %s"
-msgstr "Неуспех при затварянето на файл %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже няма "
+"налични версии на пакета %s, които могат да удовлетворят изискването за "
+"версия"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "The path %s is too long"
-msgstr "Пътят %s е твърде дълъг"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният "
+"пакет %s е твърде нов"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "РазпакеÑ\82иÑ\80ане на %s повеÑ\87е оÑ\82 веднÑ\8aж"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\83довлеÑ\82воÑ\80Ñ\8fванеÑ\82о на завиÑ\81имоÑ\81Ñ\82 %s за пакеÑ\82а %s: %s"
-#: apt-inst/extract.cc:134
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "The directory %s is diverted"
-msgstr "Ð\94иÑ\80екÑ\82оÑ\80иÑ\8fÑ\82а %s е оÑ\82клонена"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Ð\97авиÑ\81имоÑ\81Ñ\82иÑ\82е за компилиÑ\80ане на %s не можаÑ\85а да бÑ\8aдаÑ\82 Ñ\83довлеÑ\82воÑ\80ени."
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Неуспех при обработката на зависимостите за компилиране"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Пътят за отклонение е твърде дълъг"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Поддържани модули:"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Неуспех при преименуването на %s на %s"
-
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Директорията %s се заменя с не-директория"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Употреба: apt-get [опции] команда\n"
+" apt-get [опции] install|remove пакет1 [пакет2 ...]\n"
+" apt-get [опции] source пакет1 [пакет2 ...]\n"
+"\n"
+"apt-get е опростен интерфейс за командния ред за изтегляне и\n"
+"инсталиране на пакети. Най-често използваните команди са „update“\n"
+"и „install“.\n"
+"\n"
+"Команди:\n"
+" update - Зареждане на нови списъци с пакети\n"
+" upgrade - Извършване на актуализиране\n"
+" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n"
+" remove - Премахване на пакети\n"
+" source - Изтегляне на изходен код на пакети\n"
+" build-dep - Конфигуриране на зависимостите за компилиране за изходен код "
+"на пакети\n"
+" dist-upgrade - Актуализиране на дистрибуцията, вижте apt-get(8)\n"
+" dselect-upgrade - Следване на избора на dselect\n"
+" clean - Изтриване на изтеглените файлове\n"
+" autoclean - Изтриване на стари изтеглени файлове\n"
+" check - Проверка за счупени зависимости\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n"
+" -qq Без изход на съобщения освен при грешки\n"
+" -d Само изтегляне - да НЕ се инсталират или разпакетират архивите\n"
+" -s Без действие. Предизвикване на симулация.\n"
+" -y Отговаряне с „Да“ на всички въпроси, без питане\n"
+" -f Опит за продължаване дори и при неуспех на проверката за цялост\n"
+" -m Опит за продължаване дори и ако архивите са неоткриваеми\n"
+" -u Показване на списък с пакетите са актуализиране\n"
+" -b Компилиране на изходния код на пакета след изтеглянето му\n"
+" -V Показване на подробни версии\n"
+" -c=? Четене на този конфигурационен файл\n"
+" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
+"tmp\n"
+"Вижте страниците на apt-get(8), sources.list(5) и apt.conf(5) за повече\n"
+"информация и опции.\n"
+" Това APT има Върховни Сили.\n"
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на вÑ\8aзел в неговиÑ\8f Ñ\85еÑ\88"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Ð\9fоп "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Ð\9fÑ\8aÑ\82Ñ\8fÑ\82 е Ñ\82вÑ\8aÑ\80де дÑ\8aлÑ\8aг"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Ð\98зÑ\82:"
-#: apt-inst/extract.cc:414
-#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Файловете се заменят със съдържанието на пакета %s без версия"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Игн "
-#: apt-inst/extract.cc:431
-#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Файл %s/%s заменя този в пакет %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Грш "
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Unable to stat %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и полÑ\83Ñ\87аванеÑ\82о на аÑ\82Ñ\80ибÑ\83Ñ\82и за %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Ð\98зÑ\82еглени %sB за %s (%sB/Ñ\81ек)\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Failed to remove %s"
-msgstr "Неуспех при премахването на %s"
+msgid " [Working]"
+msgstr " [В процес на работа]"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to create %s"
-msgstr "Неуспех при създаването на %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Смяна на носител: сложете диска с етикет\n"
+" „%s“\n"
+"в устройството „%s“ и натиснете „Enter“\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Неуспех при получаването на атрибути %sinfo"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Непознат запис за пакет!"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Директориите info и temp трябва да бъдат на една и съща файлова система"
+"Употреба: apt-sortpkgs [опции] файл1 [файл2 ...]\n"
+"\n"
+"apt-sortpkgs е опростен инструмент за сортиране на пакетни файлове. Опцията\n"
+"„-s“ се използва, за да покаже типа на файла.\n"
+"\n"
+"Опции:\n"
+" -h Този помощен текст.\n"
+" -s Използване на сортиране по изходен код.\n"
+" -c=? Четене на този конфигурационен файл.\n"
+" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
+"tmp\n"
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Неуспех при преминаването в администраторската директория %sinfo"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Лоша стандартна настройка!"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка пÑ\80и полÑ\83Ñ\87аванеÑ\82о на имеÑ\82о на пакеÑ\82а"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Ð\9dаÑ\82иÑ\81неÑ\82е â\80\9eEnterâ\80\9c, за да пÑ\80одÑ\8aлжиÑ\82е."
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "ЧеÑ\82ене на Ñ\81пиÑ\81Ñ\8aка на Ñ\84айловеÑ\82е"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Ð\92Ñ\8aзникнаÑ\85а нÑ\8fкои гÑ\80еÑ\88ки пÑ\80и Ñ\80азпакеÑ\82иÑ\80анеÑ\82о. Ще Ñ\81е конÑ\84игÑ\83Ñ\80иÑ\80аÑ\82"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "инсталираните пакети. Това може да доведе до дублирани грешки или"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "грешки, причинени от липсващи зависимости. Това е наред, само грешките"
+
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Неуспех при отварянето на списъка с файлове „%sinfo/%s“. Ако не може да "
-"възстановите този файл, запишете го като празен и веднага преинсталирайте "
-"същата версия на пакета!"
+"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Неуспех при четенето на списъка с файлове %sinfo/%s"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Смесване на наличната информация"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка пÑ\80и полÑ\83Ñ\87аванеÑ\82о на вÑ\8aзел"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81Ñ\8aздаванеÑ\82о на пÑ\80огÑ\80амни канали"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Неуспех при отварянето на файл с отклонения %sdiversions"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Неуспех при изпълнението на gzip"
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "ФайлÑ\8aÑ\82 Ñ\81 оÑ\82клонениÑ\8f е повÑ\80еден"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Развален аÑ\80Ñ\85ив"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Неправилен ред във файла с отклонения: %s"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Невярна контролна сума на tar, развален архив"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Вътрешна грешка при добавянето на отклонение"
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Непозната заглавна част на TAR тип %u, елемент %s"
-#: apt-inst/deb/dpkgdb.cc:379
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Невалиден подпис на архива"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Грешка при четене на заглавната част на елемента на архива"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Невалидна заглавна част на елемента на архива"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Архивът е твърде кратък"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Неуспех при четенето на заглавните части на архива"
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "Извикан е DropNode за все още използван възел"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Грешка при намирането на хеш-елемента!"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Неуспех при установяване на отклонението"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Вътрешна грешка в AddDiversion"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Двойно добавяне на отклонение %s -> %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Дублиран конфигурационен файл %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Неуспех при запис на файл %s"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Неуспех при затварянето на файл %s"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Пътят %s е твърде дълъг"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Разпакетиране на %s повече от веднъж"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "Директорията %s е отклонена"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Пътят за отклонение е твърде дълъг"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Директорията %s се заменя с не-директория"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Неуспех при намирането на възел в неговия хеш"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Пътят е твърде дълъг"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Файловете се заменят със съдържанието на пакета %s без версия"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Файл %s/%s заменя този в пакет %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Неуспех при четенето на %s"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Неуспех при получаването на атрибути за %s"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Неуспех при премахването на %s"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Неуспех при създаването на %s"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Неуспех при получаването на атрибути %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr ""
+"Директориите info и temp трябва да бъдат на една и съща файлова система"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Четене на списъците с пакети"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Неуспех при преминаването в администраторската директория %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Вътрешна грешка при получаването на името на пакета"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Четене на списъка на файловете"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Неуспех при отварянето на списъка с файлове „%sinfo/%s“. Ако не може да "
+"възстановите този файл, запишете го като празен и веднага преинсталирайте "
+"същата версия на пакета!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Неуспех при четенето на списъка с файлове %sinfo/%s"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Вътрешна грешка при получаването на възел"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Неуспех при отварянето на файл с отклонения %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Файлът с отклонения е повреден"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Неправилен ред във файла с отклонения: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Вътрешна грешка при добавянето на отклонение"
+
+#: apt-inst/deb/dpkgdb.cc:379
msgid "The pkg cache must be initialized first"
msgstr "Първо трябва да се инициализира кеша с пакети"
msgid "Unparsable control file"
msgstr "Контролен файл, невъзможен за анализ"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Ð\9fакеÑ\82 %s веÑ\80Ñ\81иÑ\8f %s има неÑ\83довлеÑ\82воÑ\80ена завиÑ\81имоÑ\81Ñ\82:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\87еÑ\82енеÑ\82о на базаÑ\82а %s Ñ\81Ñ\8aÑ\81 CD-ROM"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Пакетът %s не може да бъде намерен"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. "
+"„apt-get update“ не може да се използва за добавяне на нови дискове"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Ð\9eбÑ\89о имена на пакеÑ\82и : "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Ð\93Ñ\80еÑ\88ен CD-ROM"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Нормални пакети: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Чисти виртуални пакети: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Дискът не е намерен."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Единични виртуални пакети: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Файлът не е намерен"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Смесени виртуални пакети: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Неуспех при получаването на атрибути"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Липсващи: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Неуспех при задаването на време на промяна"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Ð\9eбÑ\89о Ñ\83никални веÑ\80Ñ\81ии: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ð\9dевалиден адÑ\80еÑ\81-URI, локалниÑ\82е адÑ\80еÑ\81и-URI не Ñ\82Ñ\80Ñ\8fбва да запоÑ\87ваÑ\82 Ñ\81 â\80\9e//â\80\9c"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Общо уникални версии: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Общо зависимости: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Влизане"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Ð\9eбÑ\89о оÑ\82ноÑ\88ениÑ\8f веÑ\80Ñ\81иÑ\8f/Ñ\84айл: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\83Ñ\81Ñ\82ановÑ\8fванеÑ\82о на имеÑ\82о на оÑ\82далеÑ\87ениÑ\8f Ñ\81Ñ\8aÑ\80вÑ\8aÑ\80"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Общо отношения версия/файл: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Неуспех при установяването на локалното име"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Общо отношения „Осигурява“: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Сървърът отказа свързване и съобщи: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Общо разгърнати низове: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER се провали, сървърът съобщи: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Общо пространство за зависимости по версии: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS се провали, сървърът съобщи: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Общо празно пространство: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::"
+"ProxyLogin е празен."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Общо отчетено пространство: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Пакетният файл %s не е синхронизиран."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE се провали, сървърът съобщи: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "ТÑ\80Ñ\8fбва да вÑ\8aведеÑ\82е Ñ\81амо един изÑ\80аз"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Ð\94опÑ\83Ñ\81Ñ\82имоÑ\82о вÑ\80еме за Ñ\81вÑ\8aÑ\80званеÑ\82о изÑ\82еÑ\87е"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Ð\9dÑ\8fма намеÑ\80ени пакеÑ\82и"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "СÑ\8aÑ\80вÑ\8aÑ\80Ñ\8aÑ\82 Ñ\80азпадна вÑ\80Ñ\8aзкаÑ\82а"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Ð\9fакеÑ\82ни Ñ\84айлове:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и Ñ\87еÑ\82ене"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr ""
-"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Отговорът препълни буфера."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Развален протокол"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Отбити пакети:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Грешка при запис"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(не са намерени)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Неуспех при създаването на гнездо"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Инсталирана: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
+"Неуспех при свързването на гнездо за данни, допустимото време за свъзрзване "
+"изтече"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(няма)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Неуспех при свързването на пасивно гнездо."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Кандидат: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo не успя да се добере до слушащо гнездо"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Отбиване на пакета: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Неуспех при свързването на гнездо"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Таблица с версиите:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Неуспех при слушането на гнездото"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Неуспех при определянето на името на гнездото"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s за %s %s, компилиран на %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Неуспех при изпращането на командата PORT"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Употреба: apt-cache [опции] команда\n"
-" apt-cache [опции] add файл1 [файл2 ...]\n"
-" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n"
-" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n"
-"\n"
-"apt-cache е инструмент на ниско ниво за обработка на двоичните\n"
-"кеш файлове на APT и извличане на информация от тях\n"
-"\n"
-"Команди:\n"
-" add - Добавя пакетен файл към кеша на пакети с изходен код\n"
-" gencaches - Генериране на кеша на пакети и пакети с изходен код\n"
-" showpkg - Показва обща информация за даден пакет\n"
-" showsrc - Показва записите на пакета с изходен код\n"
-" stats - Показва някои общи статистики\n"
-" dump - Показва целия файл в сбита форма\n"
-" dumpavail - Разпечатва наличен файл в stdout\n"
-" unmet - Показва неудовлетворени зависимости\n"
-" search - Търси в списъка с пакети за регулярен израз\n"
-" show - Показва запис за пакета\n"
-" depends - Показва необработена информация за зависимости на пакета\n"
-" rdepends - Показва информация за обратните зависимости на пакета\n"
-" pkgnames - Списък с имената на всички пакети\n"
-" dotty - Генериране на графики на пакети за GraphVis\n"
-" xvcg - Генериране на графики на пакети за xvcg\n"
-" policy - Показване на настройките на политиката\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" -p=? Кешът за пакети.\n"
-" -s=? Кешът за пакети с изходен код.\n"
-" -q Премахване на индикатора за напредък.\n"
-" -i Показване само на важни зависимости при командата „unmet“.\n"
-" -c=? Четене на този конфигурационен файл.\n"
-" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
-"tmp\n"
-"Вижте „man“ страниците apt-cache(8) и apt.conf(5) за повече информация.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Неизвестно семейство адреси %u (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Задайте име за този диск, като „Debian 2.1r1 Disk1“"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT се провали, сървърът съобщи: %s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "СложеÑ\82е диÑ\81к в Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82воÑ\82о и наÑ\82иÑ\81неÑ\82е â\80\9eEnterâ\80\9c"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Ð\92Ñ\80емеÑ\82о за Ñ\83Ñ\81Ñ\82ановÑ\8fване на вÑ\80Ñ\8aзка Ñ\81 гнездо за данни изÑ\82еÑ\87е"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Ð\9fовÑ\82оÑ\80еÑ\82е Ñ\82ози пÑ\80оÑ\86еÑ\81 за оÑ\81Ñ\82аналиÑ\82е диÑ\81кове оÑ\82 комплекÑ\82а."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Ð\9dевÑ\8aзможно е да Ñ\81е пÑ\80иеме Ñ\81вÑ\8aÑ\80званеÑ\82о"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Ð\90Ñ\80гÑ\83менÑ\82иÑ\82е не Ñ\81а по двойки"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Ð\9fÑ\80облем пÑ\80и Ñ\85еÑ\88иÑ\80ане на Ñ\84айла"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Употреба: apt-config [опции] команда\n"
-"\n"
-"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n"
-"\n"
-"Команди:\n"
-" shell - Режим с обвивка\n"
-" dump - Показва конфигурацията\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" -c=? Четене на този конфигурационен файл.\n"
-" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
-"tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Времето за връзка с гнездо за данни изтече"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s не е валиден DEB пакет."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Употреба: apt-extracttemplates файл1 [файл2 ...]\n"
-"\n"
-"apt-extracttemplates е инструмент за извличане на конфигурационна "
-"информация\n"
-"и шаблони от дебиански пакети\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" -t Настройване на временна директория\n"
-" -c=? Четене на този конфигурационен файл.\n"
-" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
-"tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Запитване"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Не може да се извлече версията на debconf. Debconf инсталиран ли е?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Неуспех при извикването на "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Списъкът с разширения на пакети и твърде дълъг"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Свързване с %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Грешка при обработката на директория %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Списъкът с разширения на източници е твърде дълъг"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Грешка при запазването на заглавната част във файла със съдържание"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Не може да се започне свързване с %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Ð\93Ñ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на Ñ\81Ñ\8aдÑ\8aÑ\80жание %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81вÑ\8aÑ\80зване Ñ\81 %s:%s (%s), допÑ\83Ñ\81Ñ\82имоÑ\82о вÑ\80еме изÑ\82еÑ\87е"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Употреба: apt-ftparchive [опции] команда\n"
-"Команди: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents път\n"
-" release път\n"
-" generate config [групи]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive генерира индексни файлове за архиви на Debian. Поддържа\n"
-"много стилове на генериране от напълно автоматично до функционални\n"
-"замени на dpkg-scanpackages и dpkg-scansources.\n"
-"\n"
-"apt-ftparchive генерира „Package“ файлове от дърво с .deb файлове. Файлът\n"
-"„Package“ представлява съдържанието на всички контролни полета на всеки\n"
-"пакет, както и MD5 хеш и размер на файла. Стойностите на полетата \n"
-"„Priority“ и „Section“ могат да бъдат изменени с файл „override“.\n"
-"\n"
-"По подобен начин apt-ftparchive генерира „Sources“ файлове от дърво с .dsc \n"
-"файлове. Опцията --source-override може да се използва за указване на файл\n"
-"„override“ за пакети с изходен код.\n"
-"\n"
-"Командите „packages“ и „sources“ трябва да се изпълняват в корена на "
-"дървото.\n"
-"BinaryPath трябва да сочи към основата, където започва рекурсивното търсене "
-"и\n"
-"файла „override“ трябва да съдържа всички флагове за преназначаване. "
-"Pathprefix\n"
-"се прибавя към полетата на файловите имена, ако съществува. Пример за "
-"употреба\n"
-"от архива на Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" --md5 Управление на генерирането на MD5.\n"
-" -s=? Файл „override“ за пакети с изходен код.\n"
-" -q Без показване на съобщения.\n"
-" -d=? Избор на допълнителна база от данни за кеширане.\n"
-" --no-delink Включване на режим за премахване на връзки.\n"
-" --contents Управление на генерирането на файлове със съдържание.\n"
-" -c=? Четене на този конфигурационен файл.\n"
-" -o=? Настройване на произволна конфигурационна опция"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Неуспех при свързване с %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Няма съвпадения на избора"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Свързване с %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Неуспех при намирането на IP адреса на „%s“"
+
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Временен неуспех при намирането на IP адреса на „%s“"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Ð\9bипÑ\81ваÑ\82 нÑ\8fкои Ñ\84айлове оÑ\82 гÑ\80Ñ\83паÑ\82а Ñ\81 Ñ\84айлови пакеÑ\82и â\80\9e%sâ\80\9c"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Ð\9dеÑ\89о лоÑ\88о Ñ\81е Ñ\81лÑ\83Ñ\87и пÑ\80и намиÑ\80анеÑ\82о на IP адÑ\80еÑ\81а на â\80\9e%s:%sâ\80\9c (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Ð\91Ð\94 е повÑ\80едена, Ñ\84айлÑ\8aÑ\82 е пÑ\80еименÑ\83ван на %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81вÑ\8aÑ\80званеÑ\82о Ñ\81 %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Ð\91Ð\94 е Ñ\81Ñ\82аÑ\80а, опиÑ\82 за акÑ\82Ñ\83ализиÑ\80ане на %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и доÑ\81Ñ\82Ñ\8aпа до набоÑ\80 на клÑ\8eÑ\87ове: â\80\9e%sâ\80\9c"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Списъкът с аргументи от Acquire::gpgv::Options е твърде дълъг. Завършване "
+"на работа."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"ФоÑ\80маÑ\82Ñ\8aÑ\82 на Ð\91Ð\94 е невалиден. Ð\90ко Ñ\81Ñ\82е обновили оÑ\82 Ñ\81Ñ\82аÑ\80а веÑ\80Ñ\81иÑ\8f на apt, "
-"пÑ\80емаÑ\85неÑ\82е базаÑ\82а оÑ\82 данни и Ñ\8f Ñ\81Ñ\8aздайÑ\82е наново."
+"Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка: Ð\92алиден подпиÑ\81, но не може да Ñ\81е пÑ\80овеÑ\80и оÑ\82пеÑ\87аÑ\82Ñ\8aка на "
+"клÑ\8eÑ\87а?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Намерен е поне един невалиден подпис."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Неуспех при отварянето на файл %s от БД: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Неуспех при изпълнението на „%s“ за проверка на подписа (инсталиран ли е "
+"gnupg?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Ð\92 аÑ\80Ñ\85ива нÑ\8fма поле â\80\9econtrolâ\80\9c"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Ð\9dеизвеÑ\81Ñ\82на гÑ\80еÑ\88ка пÑ\80и изпÑ\8aлнениеÑ\82о на gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и полÑ\83Ñ\87аванеÑ\82о на кÑ\83Ñ\80Ñ\81оÑ\80"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "СледниÑ\82е подпиÑ\81и Ñ\81а невалидни:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е "
+"наличен:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Неуспех при четенето на директория %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Неуспех при отварянето на програмен канал за %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Неуспех при четенето на %s\n"
+msgid "Read error from %s process"
+msgstr "Грешка при четене от процес %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Чакане на заглавни части"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Получен е един ред на заглавна част с над %u символа"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Грешките се отнасят за файла "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Невалиден ред на заглавна част"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Неуспех при превръщането на %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Неуспех при обхода на дървото"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Неуспех при отварянето на %s"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Неизвестен формат на дата"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Неуспех на избора"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Допустимото време за свързване изтече"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Грешка при записа на изходен файл"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Грешка при записа на файл"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Грешка при записа на файла"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Грешка при четене от сървъра"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Невалидни данни на заглавната част"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Неуспех при свързването"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Вътрешна грешка"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Невъзможно е да се прехвърли в паметта празен файл"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80оÑ\87иÑ\82анеÑ\82о на вÑ\80Ñ\8aзка %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80еÑ\85вÑ\8aÑ\80лÑ\8fнеÑ\82о в памеÑ\82Ñ\82а на %lu байÑ\82а"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и пÑ\80емаÑ\85ванеÑ\82о на вÑ\80Ñ\8aзка %s"
+msgid "Selection %s not found"
+msgstr "Ð\98збоÑ\80Ñ\8aÑ\82 %s не е намеÑ\80ен"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Неуспех при създаването на връзка %s към %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Неизвестен тип на абревиатура: „%c“"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr "Ð\9fÑ\80евиÑ\88ен лимиÑ\82 на DeLink оÑ\82 %sB.\n"
+msgid "Opening configuration file %s"
+msgstr "Ð\9eÑ\82ваÑ\80Ñ\8fне на конÑ\84игÑ\83Ñ\80аÑ\86ионен Ñ\84айл %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Архивът няма поле „package“"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Ред %d е твърде дълъг (максимум %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s няма запис „override“\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Синтактична грешка %s:%u: В началото на блока няма име."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " поддържащия пакета %s е %s, а не %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Синтактична грешка %s:%u: Лошо форматиран таг"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s няма запис „source override“\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Синтактична грешка %s:%u: Излишни символи след стойността"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s няма също и запис „binary override“\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното "
+"ниво"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка, неÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на Ñ\81Ñ\8aÑ\81Ñ\82авна Ñ\87аÑ\81Ñ\82 %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: ТвÑ\8aÑ\80де много вложени â\80\9eincludeâ\80\9c"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Неуспех при заделянето на памет"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и оÑ\82ваÑ\80Ñ\8fнеÑ\82о на %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: Ð\9dеподдÑ\8aÑ\80жана диÑ\80екÑ\82ива â\80\9e%sâ\80\9c"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Ð\9dепÑ\80авилно Ñ\84оÑ\80маÑ\82иÑ\80ан override %s, Ñ\80ед %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "СинÑ\82акÑ\82иÑ\87на гÑ\80еÑ\88ка %s:%u: Ð\98злиÑ\88ни Ñ\81имволи в кÑ\80аÑ\8f на Ñ\84айла"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Неправилно форматиран override %s, ред %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Грешка!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Неправилно форматиран override %s, ред %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Готово"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Неуспех при четенето на override файл %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Неизвестна опция за команден ред „%c“ [от %s]."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Ð\9dепознаÑ\82 алгоÑ\80иÑ\82Ñ\8aм за компÑ\80еÑ\81иÑ\8f â\80\9e%sâ\80\9c"
+msgid "Command line option %s is not understood"
+msgstr "Ð\9eпÑ\86иÑ\8fÑ\82а за команден Ñ\80ед %s не е Ñ\80азпознаÑ\82а"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Ð\9aомпÑ\80еÑ\81иÑ\80аниÑ\8fÑ\82 изÑ\85од %s изиÑ\81ква наÑ\81Ñ\82Ñ\80ойка за компÑ\80еÑ\81иÑ\80анеÑ\82о"
+msgid "Command line option %s is not boolean"
+msgstr "Ð\9eпÑ\86иÑ\8fÑ\82а за команден Ñ\80ед %s не е бÑ\83лева"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Неуспех при създаването на FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Опция %s изисква аргумент."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Неуспех при пускането на подпроцес"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Опция %s: Значението трябва да има =<val>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Процес-потомък за компресиране"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Опция %s изисква аргумент цяло число, не „%s“"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка, неÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\81Ñ\8aздаванеÑ\82о на %s"
+msgid "Option '%s' is too long"
+msgstr "Ð\9eпÑ\86иÑ\8f â\80\9e%sâ\80\9c е Ñ\82вÑ\8aÑ\80де дÑ\8aлга"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Неуспех при създаването на подпроцес IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Смисълът %s не е ясен, опитайте true или false."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Неуспех при изпълнението на компресиращата програма "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Невалидна операция %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "декомпресираща програма"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "В/И към подпроцеса/файла пропадна"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Неуспех при преминаването в %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Неуспех при четене докато се изчислява MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Неуспех при намирането на атрибутите на cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Неуспех при премахването на връзка на %s"
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Не се използва заключване за файл за заключване %s, който е само за четене"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Неуспех при отварянето на файл за заключване %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Грешка при компилирането на регулярния израз - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Не се използва заключване за файл за заключване %s, който е монтиран по NFS"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Следните пакети имат неудовлетворени зависимости:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Неуспех при достъпа до заключване %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "но е инÑ\81Ñ\82алиÑ\80ан %s"
+msgid "Waited for %s but it wasn't there"
+msgstr "Ð\98зÑ\87ака Ñ\81е завÑ\8aÑ\80Ñ\88ванеÑ\82о на %s, но Ñ\82ой не беÑ\88е пÑ\83Ñ\81наÑ\82"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "но Ñ\89е бÑ\8aде инÑ\81Ñ\82алиÑ\80ан %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Ð\9dаÑ\80Ñ\83Ñ\88ение на заÑ\89иÑ\82аÑ\82а на памеÑ\82Ñ\82а (segmentation fault) в подпÑ\80оÑ\86еÑ\81а %s."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "но той не може да бъде инсталиран"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Подпроцесът %s върна код за грешка (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "но той е виртуален пакет"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Подпроцесът %s завърши неочаквано"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "но той не е инсталиран"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Неуспех при отварянето на файла %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "но той няма да бъде инсталиран"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
+"грешка при четене, все още има %lu за четене, но няма нито един останал"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " или"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "грешка при запис, все още име %lu за запис, но не успя"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "СледниÑ\82е Ð\9dÐ\9eÐ\92Ð\98 пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 инÑ\81Ñ\82алиÑ\80ани:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Ð\9fÑ\80облем пÑ\80и заÑ\82ваÑ\80Ñ\8fнеÑ\82о на Ñ\84айла"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 Ð\9fÐ Ð\95Ð\9cÐ\90Ð¥Ð\9dÐ\90ТÐ\98:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Ð\9fÑ\80облем пÑ\80и пÑ\80емаÑ\85ванеÑ\82о на вÑ\80Ñ\8aзка кÑ\8aм Ñ\84айла"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "СледниÑ\82е пакеÑ\82и нÑ\8fма да бÑ\8aдаÑ\82 пÑ\80оменени:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Ð\9fÑ\80облем пÑ\80и Ñ\81инÑ\85Ñ\80онизиÑ\80ане на Ñ\84айла"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 акÑ\82Ñ\83ализиÑ\80ани:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Ð\9fÑ\80азен кеÑ\88 на пакеÑ\82и"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "СледниÑ\82е пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 Ð\92ЪРÐ\9dÐ\90ТÐ\98 Ð\9aЪÐ\9c Ð\9fÐ\9e-СТÐ\90Ð Ð\90 Ð\92Ð\95РСÐ\98Я:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "ФайлÑ\8aÑ\82 за кеÑ\88 на пакеÑ\82и е повÑ\80еден"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "СледниÑ\82е задÑ\8aÑ\80жани пакеÑ\82и Ñ\89е бÑ\8aдаÑ\82 пÑ\80оменени:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "ФайлÑ\8aÑ\82 за кеÑ\88 на пакеÑ\82и е неÑ\81Ñ\8aвмеÑ\81Ñ\82има веÑ\80Ñ\81иÑ\8f"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (поради %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Тази версия на APT не поддържа система за версии „%s“"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n"
-"Това НЕ би трябвало да става освен ако знаете точно какво правите!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Кешът на пакети е бил направен за различна архитектура"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu актуализирани, %lu нови инсталирани, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Зависи от"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu преинсталирани, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Предварително зависи от"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu върнати към по-стара версия, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Предлага се"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu за премахване и %lu без промяна.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Препоръчва се"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu не са напълно инсталирани или премахнати.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Конфликтира с"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Ð\9aоÑ\80игиÑ\80ане на завиÑ\81имоÑ\81Ñ\82иÑ\82е..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Ð\97аменÑ\8f"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " пропадна."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Изважда от употреба"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Неуспех при коригирането на зависимостите"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и минимизиÑ\80анеÑ\82о на набоÑ\80а акÑ\82Ñ\83ализаÑ\86ии"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "важен"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Готово"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "изискван"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Възможно е да изпълните „apt-get -f install“, за да коригирате тези "
-"неизправности."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "стандартен"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ð\9dеÑ\83довлеÑ\82воÑ\80ени завиÑ\81имоÑ\81Ñ\82и. Ð\9eпиÑ\82айÑ\82е Ñ\81 â\80\9e-fâ\80\9c."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "незадÑ\8aлжиÑ\82елен"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "Ð\9fÐ Ð\95Ð\94УÐ\9fÐ Ð\95Ð\96Ð\94Ð\95Ð\9dÐ\98Ð\95: СледниÑ\82е пакеÑ\82и не могаÑ\82 да бÑ\8aдаÑ\82 Ñ\83доÑ\81Ñ\82овеÑ\80ени!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "допÑ\8aлниÑ\82елен"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Ð\9fÑ\80едÑ\83пÑ\80еждениеÑ\82о за Ñ\83доÑ\81Ñ\82овеÑ\80Ñ\8fванеÑ\82о е пÑ\80енебÑ\80егнаÑ\82о.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Ð\98згÑ\80аждане на дÑ\8aÑ\80воÑ\82о Ñ\81Ñ\8aÑ\81 завиÑ\81имоÑ\81Ñ\82и"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Инсталиране на тези пакети без проверка [y/N]?"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Версии кандидати"
+
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Генериране на зависимости"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Някои пакети не можаха да бъдат удостоверени"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Смесване на наличната информация"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Има проблеми и „-y“ е използвано без „--force-yes“"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Неуспех при отварянето на %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Неуспех при запис на файл %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Неуспех при анализирането на пакетен файл %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Вътрешна грешка, „Ordering“ не завърши"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Неуспех при анализирането на пакетен файл %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Неуспех при заключването на директорията за изтегляне"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Странно.. Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ð\9dеобÑ\85одимо е да Ñ\81е изÑ\82еглÑ\8fÑ\82 %sB/%sB аÑ\80Ñ\85иви.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Ð\9bоÑ\88о Ñ\84оÑ\80маÑ\82иÑ\80ан Ñ\80ед %lu в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s (анализ на адÑ\80еÑ\81-URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Необходимо е да се изтеглят %sB архиви.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr ""
+"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "След разпакетирането ще бъде използвано %sB дисково пространство.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr ""
+"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "След Ñ\80азпакеÑ\82иÑ\80анеÑ\82о Ñ\89е бÑ\8aде оÑ\81вободено %sB диÑ\81ково пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во.\n"
+msgid "Opening %s"
+msgstr "Ð\9eÑ\82ваÑ\80Ñ\8fне на %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и опÑ\80еделÑ\8fнеÑ\82о на Ñ\81вободноÑ\82о пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s"
+msgid "Line %u too long in source list %s."
+msgstr "Ред %u в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s е Ñ\82вÑ\8aÑ\80де дÑ\8aлÑ\8aг."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Ð\9dÑ\8fмаÑ\82е доÑ\81Ñ\82аÑ\82Ñ\8aÑ\87но Ñ\81вободно пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Ð\9bоÑ\88о Ñ\84оÑ\80маÑ\82иÑ\80ан Ñ\80ед %u в Ñ\81пиÑ\81Ñ\8aка Ñ\81 изÑ\82оÑ\87ниÑ\86и %s (Ñ\82ип)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Указано е „Trivial Only“, но това не е тривиална операция."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Да, прави каквото казвам!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr ""
+"Лошо форматиран ред %u в списъка с източници %s (идентификатор на "
+"производител)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"На път сте да направите нещо потенциално опасно.\n"
-"За да продължите, въведете фразата „%s“\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Прекъсване."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Искате ли да продължите [Y/n]? "
+"В следствие на циклични зависимости от типа „Конфликтира/Предварително "
+"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия "
+"пакет %s. Това често е лошо, но ако наистина искате да го направите, "
+"активирайте опцията APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Неуспех при изтеглянето на %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Някои файлове не можаха да бъдат изтеглени"
+msgid "Index file type '%s' is not supported"
+msgstr "Не се поддържа индексен файл от типа „%s“"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Изтеглянето завърши в режим само на изтегляне"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за "
+"него."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и изÑ\82еглÑ\8fнеÑ\82о на нÑ\8fкои аÑ\80Ñ\85иви, може да изпÑ\8aлниÑ\82е â\80\9eapt-get updateâ\80\9c "
-"или да опиÑ\82аÑ\82е Ñ\81 â\80\9e--fix-missingâ\80\9c?"
+"Ð\93Ñ\80еÑ\88ка, pkgProblemResolver::Resolve генеÑ\80иÑ\80а повÑ\80еди, Ñ\82ова може да е "
+"пÑ\80иÑ\87инено оÑ\82 задÑ\8aÑ\80жани пакеÑ\82и."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "„--fix-missing“ и превключване на носители не се поддържа все още"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"Неуспех при коригирането на проблемите, имате задържани счупени пакети."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Неуспех при коригирането на липсващите пакети."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Директорията със списъци %spartial липсва."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Прекъсване на инсталирането."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Директорията за архиви %spartial липсва."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Ð\97абележеÑ\82е, избиÑ\80ане на %s вмеÑ\81Ñ\82о %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Ð\98зÑ\82еглÑ\8fне на Ñ\84айл %li оÑ\82 %li (оÑ\81Ñ\82аваÑ\82 %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Ð\9fÑ\80опÑ\83Ñ\81кане на %s, веÑ\87е е инÑ\81Ñ\82алиÑ\80ан и не е маÑ\80киÑ\80ан за акÑ\82Ñ\83ализаÑ\86иÑ\8f.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Ð\98зÑ\82еглÑ\8fне на Ñ\84айл %li оÑ\82 %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s не е инÑ\81Ñ\82алиÑ\80ан, Ñ\82ака Ñ\87е не е пÑ\80емаÑ\85наÑ\82\n"
+msgid "The method driver %s could not be found."
+msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и намиÑ\80анеÑ\82о на дÑ\80айвеÑ\80 за меÑ\82од %s."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s е виÑ\80Ñ\82Ñ\83ален пакеÑ\82, оÑ\81игÑ\83Ñ\80ен оÑ\82:\n"
+msgid "Method %s did not start correctly"
+msgstr "Ð\9cеÑ\82одÑ\8aÑ\82 %s не Ñ\81Ñ\82аÑ\80Ñ\82иÑ\80а пÑ\80авилно"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Инсталиран]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Трябва изрично да изберете един за инсталиране."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Пакетната система „%s“ не е поддържана"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Неуспех при определянето на подходяща пакетна система"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Неуспех при получаването на атрибути на %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-"Пакетът %s не е наличен, но е в списъка със зависимости на друг пакет.\n"
-"Това може да означава, че пакета липсва, остарял е, или е достъпен\n"
-"само от друг източник\n"
+"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани "
+"или отворени."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Обаче следните пакети го заместват:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Невалиден запис във файла с настройки, няма заглавна част Package"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "Неизвестен тип за отбиване %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Няма указан приоритет (или е нула) на отбиването"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Кешът има несъвместима система за версии"
+
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s нÑ\8fма кандидаÑ\82 за инÑ\81Ñ\82алиÑ\80ане"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Възникна грешка при обработката на %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Възникна грешка при обработката на %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s вече е най-новата версия.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Ð\9dе е намеÑ\80ено издание â\80\9e%sâ\80\9c на â\80\9e%sâ\80\9c"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Ð\9dе е намеÑ\80ена веÑ\80Ñ\81иÑ\8f â\80\9e%sâ\80\9c на â\80\9e%sâ\80\9c"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Ð\92Ñ\8aзникна гÑ\80еÑ\88ка пÑ\80и обÑ\80абоÑ\82каÑ\82а на %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Избрана е версия %s (%s) за %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Командата „update“ не възприема аргументи"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Възникна грешка при обработката на %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Неуспех при заключването на директорията със списъка на пакетите"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Ð\9dÑ\8fкои индекÑ\81ни Ñ\84айлове не можаÑ\85а да бÑ\8aдаÑ\82 изÑ\82еглени, Ñ\82е Ñ\81а пÑ\80енебÑ\80егнаÑ\82и или "
-"са използвани по-стари."
+"Ð\95Ñ\85а, надÑ\85вÑ\8aÑ\80лиÑ\85Ñ\82е бÑ\80оÑ\8f имена на пакеÑ\82и, на койÑ\82о е Ñ\81поÑ\81обна Ñ\82ази веÑ\80Ñ\81иÑ\8f на "
+"APT."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Следните НОВИ пакети ще бъдат инсталирани:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Възникна грешка при обработката на %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr ""
-"Следната информация може да помогне за намиране на изход от ситуацията:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Възникна грешка при обработката на %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Ð\92Ñ\8aÑ\82Ñ\80еÑ\88на гÑ\80еÑ\88ка, â\80\9eproblem resolverâ\80\9c Ñ\81Ñ\87Ñ\83пи неÑ\89о в Ñ\81иÑ\81Ñ\82емаÑ\82а"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Ð\9fакеÑ\82Ñ\8aÑ\82 %s %s не беÑ\88е оÑ\82кÑ\80иÑ\82 пÑ\80и обÑ\80абоÑ\82каÑ\82а на Ñ\84айла Ñ\81Ñ\8aÑ\81 завиÑ\81имоÑ\81Ñ\82и"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr ""
+"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Неуспех при намирането на пакет %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Събиране на информация за „Осигурява“"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Неуспех при намирането на пакет %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Ð\97абележеÑ\82е, избиÑ\80ане на %s за Ñ\80егÑ\83лÑ\8fÑ\80ен изÑ\80аз â\80\9e%sâ\80\9c\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "пÑ\80еименÑ\83ванеÑ\82о Ñ\81е пÑ\80овали, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "но ще бъде инсталиран %s"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Несъответствие на контролна сума MD5"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Несъответствие на контролна сума MD5"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или "
-"укажете разрешение)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n"
-"че сте изискали невъзможна ситуация или ако използвате нестабилната\n"
-"дистрибуция, че някои необходими пакети още не са създадени или пък\n"
-"са били преместени от Incoming."
+"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва "
+"ръчно да оправите този пакет (поради пропусната архитектура)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Тъй като сте указали единична операция, твърде е възможно пакета просто\n"
-"да не може да бъде инсталиран; в такъв случай би трябвало да се подаде\n"
-"доклад за грешка за този пакет."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Счупени пакети"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Следните допълнителни пакети ще бъдат инсталирани:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Предложени пакети:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Препоръчвани пакети:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Изчисляване на актуализацията..."
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Готово"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код"
+"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва "
+"ръчно да оправите този пакет."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Неуспех при намирането на изходен код на пакет %s"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s."
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Пропускане на вече изтегления файл „%s“\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Несъответствие на размера"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Ð\9dÑ\8fмаÑ\82е доÑ\81Ñ\82аÑ\82Ñ\8aÑ\87но Ñ\81вободно пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во в %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Ð\91локÑ\8aÑ\82 на пÑ\80оизводиÑ\82елÑ\8f %s не Ñ\81Ñ\8aдÑ\8aÑ\80жа оÑ\82пеÑ\87аÑ\82Ñ\8aк"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Използване на точка за монтиране на CD-ROM %s\n"
+"Монтиране на CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Идентифициране..."
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Ð\98зÑ\82еглÑ\8fне на изÑ\85оден код %s\n"
+msgid "Stored label: %s\n"
+msgstr "Ð\97апазен еÑ\82икеÑ\82: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Неуспех при изтеглянето на някои архиви."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Демонтиране на CD-ROM..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr ""
-"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Използване на точка за монтиране на CD-ROM %s\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Командата за разпакетиране „%s“ пропадна.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Демонтиране на CD-ROM\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Чакане за диск...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Ð\9aомандаÑ\82а за компилиÑ\80ане â\80\9e%sâ\80\9c пÑ\80опадна.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Ð\9cонÑ\82иÑ\80ане на CD-ROM...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Ð\9fÑ\80оÑ\86еÑ\81Ñ\8aÑ\82-поÑ\82омÑ\8aк пÑ\80опадна"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "СканиÑ\80ане на диÑ\81ка за индекÑ\81ни Ñ\84айлове...\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-"Трябва да укажете поне един пакет за проверка на зависимости за компилиране"
+"Намерени са %i индекса на пакети, %i индекса на пакети с изходен код и %i "
+"подписа.\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr ""
-"Неуспех при получаването на информация за зависимостите за компилиране на %s"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Запазен етикет: %s \n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s няма зависимости за компилиране.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Това не е валидно име, опитайте отново.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s "
-"не може да бъде намерен"
+"Наименование на този диск: \n"
+"„%s“\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Копиране на списъците с пакети..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Запазване на новия списък с източници\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Записите в списъка с източници за този диск са:\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже няма "
-"налични версии на пакета %s, които могат да удовлетворят изискването за "
-"версия"
+msgid "Wrote %i records.\n"
+msgstr "Записани са %i записа.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният "
-"пакет %s е твърде нов"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Записани са %i записа с %i липсващи файла.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Ð\9dеÑ\83Ñ\81пеÑ\85 пÑ\80и Ñ\83довлеÑ\82воÑ\80Ñ\8fванеÑ\82о на завиÑ\81имоÑ\81Ñ\82 %s за пакеÑ\82а %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Ð\97апиÑ\81ани Ñ\81а %i запиÑ\81а Ñ\81 %i неÑ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82ваÑ\89и Ñ\84айла\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Ð\97авиÑ\81имоÑ\81Ñ\82иÑ\82е за компилиÑ\80ане на %s не можаÑ\85а да бÑ\8aдаÑ\82 Ñ\83довлеÑ\82воÑ\80ени."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Ð\97апиÑ\81ани Ñ\81а %i запиÑ\81а Ñ\81 %i липÑ\81ваÑ\89и и %i неÑ\81Ñ\8aоÑ\82веÑ\82Ñ\81Ñ\82ваÑ\89и Ñ\84айла\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Неуспех при обработката на зависимостите за компилиране"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Директорията със списъци %spartial липсва."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Поддържани модули:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "Подготвяне на %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Употреба: apt-get [опции] команда\n"
-" apt-get [опции] install|remove пакет1 [пакет2 ...]\n"
-" apt-get [опции] source пакет1 [пакет2 ...]\n"
-"\n"
-"apt-get е опростен интерфейс за командния ред за изтегляне и\n"
-"инсталиране на пакети. Най-често използваните команди са „update“\n"
-"и „install“.\n"
-"\n"
-"Команди:\n"
-" update - Зареждане на нови списъци с пакети\n"
-" upgrade - Извършване на актуализиране\n"
-" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n"
-" remove - Премахване на пакети\n"
-" source - Изтегляне на изходен код на пакети\n"
-" build-dep - Конфигуриране на зависимостите за компилиране за изходен код "
-"на пакети\n"
-" dist-upgrade - Актуализиране на дистрибуцията, вижте apt-get(8)\n"
-" dselect-upgrade - Следване на избора на dselect\n"
-" clean - Изтриване на изтеглените файлове\n"
-" autoclean - Изтриване на стари изтеглени файлове\n"
-" check - Проверка за счупени зависимости\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n"
-" -qq Без изход на съобщения освен при грешки\n"
-" -d Само изтегляне - да НЕ се инсталират или разпакетират архивите\n"
-" -s Без действие. Предизвикване на симулация.\n"
-" -y Отговаряне с „Да“ на всички въпроси, без питане\n"
-" -f Опит за продължаване дори и при неуспех на проверката за цялост\n"
-" -m Опит за продължаване дори и ако архивите са неоткриваеми\n"
-" -u Показване на списък с пакетите са актуализиране\n"
-" -b Компилиране на изходния код на пакета след изтеглянето му\n"
-" -V Показване на подробни версии\n"
-" -c=? Четене на този конфигурационен файл\n"
-" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
-"tmp\n"
-"Вижте страниците на apt-get(8), sources.list(5) и apt.conf(5) за повече\n"
-"информация и опции.\n"
-" Това APT има Върховни Сили.\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Разпакетиране на %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Поп "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Подготвяне на %s за конфигуриране"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Изт:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Конфигуриране на %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Игн "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Грешка при обработката на директория %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Грш "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s е инсталиран"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Ð\98зÑ\82еглени %sB за %s (%sB/Ñ\81ек)\n"
+msgid "Preparing for removal of %s"
+msgstr "Ð\9fодгоÑ\82вÑ\8fне за пÑ\80емаÑ\85ване на %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [В процес на работа]"
+msgid "Removing %s"
+msgstr "Премахване на %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, 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"
+msgid "Removed %s"
+msgstr "%s е премахнат"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Непознат запис за пакет!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Подготовка за пълно премахване на %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s е напълно премахнат"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Употреба: apt-sortpkgs [опции] файл1 [файл2 ...]\n"
-"\n"
-"apt-sortpkgs е опростен инструмент за сортиране на пакетни файлове. Опцията\n"
-"„-s“ се използва, за да покаже типа на файла.\n"
-"\n"
-"Опции:\n"
-" -h Този помощен текст.\n"
-" -s Използване на сортиране по изходен код.\n"
-" -c=? Четене на този конфигурационен файл.\n"
-" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/"
-"tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Лоша стандартна настройка!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Неуспех при отварянето на файла %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Натиснете „Enter“, за да продължите."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Връзката прекъсна преждевременно"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Възникнаха някои грешки при разпакетирането. Ще се конфигурират"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Ред %d е твърде дълъг (максимум %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "инсталираните пакети. Това може да доведе до дублирани грешки или"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "грешки, причинени от липсващи зависимости. Това е наред, само грешките"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Възникна грешка при обработката на %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Запазен етикет: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Смесване на наличната информация"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Намерени са %i индекса на пакети, %i индекса на пакети с изходен код и %i "
+#~ "подписа.\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr ""
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n"
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#, c-format
+msgid "Unable to locate package %s"
+msgstr "Ne mogu pronaći paket %s"
-#: methods/cdrom.cc:131
-#, fuzzy
-msgid "Wrong CD-ROM"
-msgstr "Pogrešan CD"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Ukupno naziva paketa:"
-#: methods/cdrom.cc:166
-#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normalni paketi:"
-#: methods/cdrom.cc:171
-#, fuzzy
-msgid "Disk not found."
-msgstr "Datoteka nije pronađena"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Čisto virtuelni paketi:"
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Datoteka nije pronađena"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pojedinačni virutuelni paketi:"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr ""
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Miješani virtuelni paketi:"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr ""
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Nedostajući:"
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr ""
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Ukupno različitih verzija:"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Prijavljujem se"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Ukupno različitih verzija:"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr ""
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Ukupno zavisnosti:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr ""
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Ukupno Verzija/Datoteka odnosa:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Ukupno Verzija/Datoteka odnosa:"
+
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
msgstr ""
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
msgstr ""
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
msgstr ""
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
msgstr ""
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
msgstr ""
-#: methods/ftp.cc:291
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
#, c-format
-msgid "TYPE failed, server said: %s"
+msgid "Package file %s is out of sync."
msgstr ""
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
msgstr ""
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Server je zatvorio vezu"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Paketi nisu pronađeni"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Greška pri čitanju"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Datoteke paketa:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-#: methods/ftp.cc:362 methods/ftp.cc:374
-#, fuzzy
-msgid "Protocol corruption"
-msgstr "Oštećenje protokola"
-
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Greška pri pisanju"
-
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
msgstr ""
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
msgstr ""
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Neuspješno"
-
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
msgstr ""
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr ""
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalirano:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
msgstr ""
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
msgstr ""
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
msgstr ""
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
msgstr ""
-#: methods/ftp.cc:789
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unknown address family %u (AF_*)"
+msgid " %4i %s\n"
msgstr ""
-#: methods/ftp.cc:798
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
#, c-format
-msgid "EPRT failed, server said: %s"
+msgid "%s %s for %s compiled on %s %s\n"
msgstr ""
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
msgstr ""
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
msgstr ""
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr ""
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenti nisu u parovima"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Upotreba: apt-config [opcije] naredba\n"
+"\n"
+"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n"
+"\n"
+"Naredbe:\n"
+" shell - Shell mod\n"
+" dump - Prikaz konfiguracije\n"
+"\n"
+"Opcije:\n"
+" -h Ovaj tekst pomoći.\n"
+" -c=? Pročitaj ovu konfiguracijsku datoteku\n"
+" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr ""
+#: cmdline/apt-extracttemplates.cc:98
+#, c-format
+msgid "%s not a valid DEB package."
+msgstr "%s nije ispravan DEB paket."
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/connect.cc:64
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Connecting to %s (%s)"
+msgid "Unable to write to %s"
+msgstr "Ne mogu zapisati na %s"
+
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
msgstr ""
+"Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
msgstr ""
-#: methods/connect.cc:80
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgid "Error processing directory %s"
msgstr ""
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
msgstr ""
-#: methods/connect.cc:93
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr ""
+
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
+msgid "Error processing contents %s"
msgstr ""
-#: methods/connect.cc:108
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr ""
+
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Could not connect to %s:%s (%s)."
+msgid "Some files are missing in the package file group `%s'"
msgstr ""
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Connecting to %s"
-msgstr "Povezujem se sa %s"
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB je bila oštećena, datoteka preimenovana u %s.old"
-#: methods/connect.cc:167
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Could not resolve '%s'"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB je stara, pokušavam nadogradnju %s"
+
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-#: methods/connect.cc:173
+#: ftparchive/cachedb.cc:77
+#, fuzzy, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Ne mogu otvoriti DB datoteku %s"
+
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Temporary failure resolving '%s'"
+msgid "Failed to stat %s"
msgstr ""
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arhiva nema kontrolnog zapisa"
+
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
msgstr ""
-#: methods/connect.cc:223
+#: ftparchive/writer.cc:76
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Ne mogu se povezati sa %s %s:"
+msgid "W: Unable to read directory %s\n"
+msgstr ""
-#: methods/gpgv.cc:65
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Couldn't access keyring: '%s'"
+msgid "W: Unable to stat %s\n"
msgstr ""
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+#: ftparchive/writer.cc:132
+msgid "E: "
msgstr ""
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: ftparchive/writer.cc:134
+msgid "W: "
msgstr ""
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
msgstr ""
-#: methods/gpgv.cc:213
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgid "Failed to resolve %s"
msgstr ""
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
msgstr ""
-#: methods/gpgv.cc:249
-#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "Slijedeći dodatni paketi će biti instalirani:"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Ne mogu otvoriti %s"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
msgstr ""
-#: methods/gpgv.cc:272
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Failed to stat %s"
+msgid "Failed to readlink %s"
msgstr ""
-#: methods/gzip.cc:64
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Couldn't open pipe for %s"
+msgid "Failed to unlink %s"
msgstr ""
-#: methods/gzip.cc:109
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Read error from %s process"
+msgid "*** Failed to link %s to %s"
msgstr ""
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Čekam na zaglavlja"
-
-#: methods/http.cc:523
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Got a single header line over %u chars"
+msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: methods/http.cc:531
-msgid "Bad header line"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
msgstr ""
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#, c-format
+msgid " %s has no override entry\n"
msgstr ""
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#, c-format
+msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/writer.cc:620
+#, c-format
+msgid " %s has no source override entry\n"
msgstr ""
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
+#: ftparchive/writer.cc:624
+#, c-format
+msgid " %s has no binary override entry either\n"
msgstr ""
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Nepoznat oblik datuma"
+#: ftparchive/contents.cc:321
+#, c-format
+msgid "Internal error, could not locate member %s"
+msgstr ""
-#: methods/http.cc:774
-msgid "Select failed"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
msgstr ""
-#: methods/http.cc:779
-msgid "Connection timed out"
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#, c-format
+msgid "Unable to open %s"
msgstr ""
-#: methods/http.cc:802
-msgid "Error writing to output file"
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#, c-format
+msgid "Malformed override %s line %lu #1"
msgstr ""
-#: methods/http.cc:833
-msgid "Error writing to file"
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#, c-format
+msgid "Malformed override %s line %lu #2"
msgstr ""
-#: methods/http.cc:861
-msgid "Error writing to the file"
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#, c-format
+msgid "Malformed override %s line %lu #3"
msgstr ""
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#, c-format
+msgid "Failed to read the override file %s"
msgstr ""
-#: methods/http.cc:877
-msgid "Error reading from server"
+#: ftparchive/multicompress.cc:72
+#, c-format
+msgid "Unknown compression algorithm '%s'"
msgstr ""
-#: methods/http.cc:1104
-msgid "Bad header data"
+#: ftparchive/multicompress.cc:102
+#, c-format
+msgid "Compressed output %s needs a compression set"
msgstr ""
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Povezivanje neuspješno"
-
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Unutrašnja greška"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr ""
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
msgstr ""
-#: apt-pkg/contrib/mmap.cc:85
-#, c-format
-msgid "Couldn't make mmap of %lu bytes"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
+msgid "Internal error, failed to create %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:492
-#, c-format
-msgid "Opening configuration file %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:510
-#, c-format
-msgid "Line %d too long (max %u)"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/configuration.cc:606
-#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:625
-#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgid "Problem unlinking %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
+msgid "Failed to rename %s to %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
+#: cmdline/apt-get.cc:124
+msgid "Y"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:702
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgid "Regex compilation error - %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Unable to read %s"
-msgstr "Ne mogu čitati %s"
+msgid "but %s is installed"
+msgstr "ali je %s instaliran"
-#: apt-pkg/contrib/progress.cc:153
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "%c%s... Error!"
-msgstr ""
+msgid "but %s is to be installed"
+msgstr "ali se %s treba instalirati"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ali se ne može instalirati"
+
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ali je virtuelni paket"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ali nije instaliran"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ali se neće instalirati"
+
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " ili"
+
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Slijedeći NOVI paketi će biti instalirani:"
+
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Slijedeći paketi će biti UKLONJENI:"
+
+#: cmdline/apt-get.cc:427
+#, fuzzy
+msgid "The following packages have been kept back:"
+msgstr "Slijedeći paketi su zadržani:"
+
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Slijedeći paketi će biti nadograđeni:"
+
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Command line option %s is not understood"
+msgid "%s (due to %s) "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Option %s requires an argument."
+msgid "%lu upgraded, %lu newly installed, "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
+msgid "%lu reinstalled, "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:234
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
+msgid "%lu downgraded, "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:265
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "Option '%s' is too long"
+msgid "%lu to remove and %lu not upgraded.\n"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:298
+#: cmdline/apt-get.cc:593
#, c-format
-msgid "Sense %s is not understood, try true or false."
+msgid "%lu not fully installed or removed.\n"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Ispravljam zavisnosti..."
+
+#: cmdline/apt-get.cc:670
+msgid " failed."
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Ne mogu ispraviti zavisnosti"
+
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Urađeno"
+
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
+
+#: cmdline/apt-get.cc:707
+#, fuzzy
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "Slijedeći paketi će biti nadograđeni:"
+
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "read, still have %lu to read but none left"
+msgid "Need to get %sB/%sB of archives.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "write, still have %lu to write but couldn't"
+msgid "Need to get %sB of archives.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
+#: cmdline/apt-get.cc:847
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
+#: cmdline/apt-get.cc:850
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
+#, c-format
+msgid "Couldn't determine free space in %s"
msgstr ""
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
+#: cmdline/apt-get.cc:871
+#, c-format
+msgid "You don't have enough free space in %s."
msgstr ""
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr ""
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Da, uradi kako kažem!"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:891
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Zavisi"
-
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Unaprijed zavisi"
-
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Predlaže"
-
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Preporučuje"
-
-#: apt-pkg/pkgcache.cc:225
-#, fuzzy
-msgid "Conflicts"
-msgstr "Sukobljava se sa"
-
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Zamjenjuje"
-
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Zastarijeva"
-
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "važno"
-
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "zahtijevano"
-
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standardno"
-
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcionalno"
-
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
-
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Gradim stablo zavisnosti"
-
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Verzije kandidata"
-
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Stvaranje zavisnosti"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Odustani."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#: cmdline/apt-get.cc:912
#, fuzzy
-msgid "Reading state information"
-msgstr "Sastavljam dostupne informacije"
-
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Ne mogu otvoriti %s"
-
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Ne mogu ukloniti %s"
-
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr ""
+msgid "Do you want to continue [Y/n]? "
+msgstr "Da li želite nastaviti? [Y/n]"
-#: apt-pkg/tagfile.cc:189
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Unable to parse package file %s (2)"
+msgid "Failed to fetch %s %s\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
msgstr ""
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
msgstr ""
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
msgstr ""
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
msgstr ""
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Otvaram %s"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Odustajem od instalacije."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Line %u too long in source list %s."
+msgid "Note, selecting %s instead of %s\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Malformed line %u in source list %s (type)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
+msgid "Package %s is not installed, so not removed\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
+msgid "Package %s is a virtual package provided by:\n"
msgstr ""
-#: apt-pkg/packagemanager.cc:399
-#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr "[Instalirano]"
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
msgstr ""
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
+"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 ""
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr ""
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Archive directory %spartial is missing."
+msgid "Package %s has no installation candidate"
msgstr ""
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr ""
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Čitam spisak datoteke"
-
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "The method driver %s could not be found."
+msgid "%s is already the newest version.\n"
msgstr ""
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Method %s did not start correctly"
+msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Packaging system '%s' is not supported"
+msgid "Selected version %s (%s) for %s\n"
msgstr ""
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
msgstr ""
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
msgstr ""
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Slijedeći NOVI paketi će biti instalirani:"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
msgstr ""
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
+msgid "Couldn't find task %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
+msgid "Couldn't find package %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
+msgid "Note, selecting %s for regex '%s'\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ali se %s treba instalirati"
+
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr ""
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Oštećeni paketi"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr ""
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Slijedeći dodatni paketi će biti instalirani:"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Predloženi paketi:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Preporučeni paketi:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Računam nadogradnju..."
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Neuspješno"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Urađeno"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
+msgid "You don't have enough free space in %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Couldn't stat source package list %s"
+msgid "Fetch source %s\n"
msgstr ""
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Čitam spiskove paketa"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
+#: cmdline/apt-get.cc:2277
+#, c-format
+msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Unable to write to %s"
-msgstr "Ne mogu zapisati na %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
+#: cmdline/apt-get.cc:2290
+#, c-format
+msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "rename failed, %s (%s -> %s)."
+msgid "Build command '%s' failed.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
msgstr ""
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
+msgid "%s has no build depends.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
+#: cmdline/apt-get.cc:2531
+#, c-format
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Vendor block %s contains no fingerprint"
+msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
msgstr ""
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr ""
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Podržani moduli:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
+#: cmdline/apt-get.cc:2647
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
msgstr ""
-#: apt-pkg/cdrom.cc:605
-#, fuzzy
-msgid "Waiting for disc...\n"
-msgstr "Čekam na zaglavlja"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
msgstr ""
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
msgstr ""
-#: apt-pkg/cdrom.cc:671
-#, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
msgstr ""
-#: apt-pkg/cdrom.cc:708
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Found label '%s'\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
msgstr ""
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
msgstr ""
-#: apt-pkg/cdrom.cc:753
+#: cmdline/acqprogress.cc:271
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-#: apt-pkg/cdrom.cc:757
-#, fuzzy
-msgid "Copying package lists..."
-msgstr "Čitam spiskove paketa"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Nepoznat zapis paketa\""
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr ""
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Loša podrazumjevana postavka!"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Pogrešan CD"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Pritisnite enter za nastavak."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
msgstr ""
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
msgstr ""
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, c-format
-msgid "Directory '%s' missing"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, fuzzy, c-format
-msgid "Preparing %s"
-msgstr "Otvaram %s"
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, fuzzy, c-format
-msgid "Unpacking %s"
-msgstr "Otvaram %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, fuzzy, c-format
-msgid "Configuring %s"
-msgstr "Povezujem se sa %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, c-format
-msgid "Processing triggers for %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr " Instalirano:"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Otvaram %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, fuzzy, c-format
-msgid "Removed %s"
-msgstr "Preporučuje"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Ne mogu ukloniti %s"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr ""
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Sastavljam dostupne informacije"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr ""
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr ""
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr ""
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Ne mogu čitati %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr ""
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Čitam spiskove paketa"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr ""
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Ne mogu pronaći paket %s"
+msgid "Unable to read the cdrom database %s"
+msgstr ""
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Ukupno naziva paketa:"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normalni paketi:"
+#: methods/cdrom.cc:131
+#, fuzzy
+msgid "Wrong CD-ROM"
+msgstr "Pogrešan CD"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Čisto virtuelni paketi:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pojedinačni virutuelni paketi:"
+#: methods/cdrom.cc:171
+#, fuzzy
+msgid "Disk not found."
+msgstr "Datoteka nije pronađena"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Miješani virtuelni paketi:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Datoteka nije pronađena"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Nedostajući:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr ""
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Ukupno različitih verzija:"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr ""
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Ukupno različitih verzija:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr ""
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Ukupno zavisnosti:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Prijavljujem se"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Ukupno Verzija/Datoteka odnosa:"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr ""
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Ukupno Verzija/Datoteka odnosa:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr ""
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
msgstr ""
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
+msgid "TYPE failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
msgstr ""
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Paketi nisu pronađeni"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Server je zatvorio vezu"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Datoteke paketa:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Greška pri čitanju"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
msgstr ""
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr ""
+#: methods/ftp.cc:362 methods/ftp.cc:374
+#, fuzzy
+msgid "Protocol corruption"
+msgstr "Oštećenje protokola"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr ""
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Greška pri pisanju"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
msgstr ""
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalirano:"
-
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
msgstr ""
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
msgstr ""
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
msgstr ""
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
msgstr ""
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
msgstr ""
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr ""
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr ""
+
+#: methods/ftp.cc:789
#, c-format
-msgid "%s %s for %s compiled on %s %s\n"
+msgid "Unknown address family %u (AF_*)"
msgstr ""
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
msgstr ""
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
msgstr ""
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
msgstr ""
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
msgstr ""
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenti nisu u parovima"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr ""
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
msgstr ""
-"Upotreba: apt-config [opcije] naredba\n"
-"\n"
-"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n"
-"\n"
-"Naredbe:\n"
-" shell - Shell mod\n"
-" dump - Prikaz konfiguracije\n"
-"\n"
-"Opcije:\n"
-" -h Ovaj tekst pomoći.\n"
-" -c=? Pročitaj ovu konfiguracijsku datoteku\n"
-" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s nije ispravan DEB paket."
+msgid "Data transfer failed, server said '%s'"
+msgstr ""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
msgstr ""
-"Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
+msgid "[IP: %s %s]"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
msgstr ""
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
msgstr ""
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Povezujem se sa %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
+msgid "Temporary failure resolving '%s'"
msgstr ""
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB je bila oštećena, datoteka preimenovana u %s.old"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr ""
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB je stara, pokušavam nadogradnju %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Ne mogu se povezati sa %s %s:"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr ""
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: ftparchive/cachedb.cc:77
-#, fuzzy, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Ne mogu otvoriti DB datoteku %s"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arhiva nema kontrolnog zapisa"
+#: methods/gpgv.cc:214
+#, c-format
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
msgstr ""
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "Slijedeći dodatni paketi će biti instalirani:"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
+msgid "Couldn't open pipe for %s"
msgstr ""
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
+msgid "Read error from %s process"
msgstr ""
-#: ftparchive/writer.cc:132
-msgid "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Čekam na zaglavlja"
+
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
msgstr ""
-#: ftparchive/writer.cc:134
-msgid "W: "
+#: methods/http.cc:531
+msgid "Bad header line"
msgstr ""
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
msgstr ""
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
msgstr ""
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
msgstr ""
-#: ftparchive/writer.cc:195
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr ""
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Nepoznat oblik datuma"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr ""
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr ""
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr ""
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr ""
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr ""
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr ""
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Povezivanje neuspješno"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Unutrašnja greška"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Ne mogu otvoriti %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr ""
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
+msgid "Selection %s not found"
msgstr ""
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
msgstr ""
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "Failed to unlink %s"
+msgid "Line %d too long (max %u)"
msgstr ""
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
+msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
+msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
+msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no binary override entry either\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
+msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
msgstr ""
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
+msgid "%c%s... Done"
msgstr ""
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
+msgid "Command line option %s is not understood"
msgstr ""
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
+msgid "Command line option %s is not boolean"
msgstr ""
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
+msgid "Option %s requires an argument."
msgstr ""
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
+msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
+msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
msgstr ""
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
msgstr ""
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
+msgid "Unable to stat the mount point %s"
msgstr ""
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
msgstr ""
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
msgstr ""
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
+msgid "Could not get lock %s"
msgstr ""
-#: cmdline/apt-get.cc:121
-msgid "Y"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
msgstr ""
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
+msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "ali je %s instaliran"
+msgid "Sub-process %s exited unexpectedly"
+msgstr ""
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "ali se %s treba instalirati"
-
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ali se ne može instalirati"
-
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ali je virtuelni paket"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ali nije instaliran"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ali se neće instalirati"
-
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " ili"
-
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Slijedeći NOVI paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Slijedeći paketi će biti UKLONJENI:"
-
-#: cmdline/apt-get.cc:424
-#, fuzzy
-msgid "The following packages have been kept back:"
-msgstr "Slijedeći paketi su zadržani:"
+msgid "Could not open file %s"
+msgstr ""
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Slijedeći paketi će biti nadograđeni:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
msgstr ""
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
msgstr ""
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
msgstr ""
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
msgstr ""
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
msgstr ""
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
msgstr ""
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
msgstr ""
-#: cmdline/apt-get.cc:586
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
+msgid "This APT does not support the versioning system '%s'"
msgstr ""
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Ispravljam zavisnosti..."
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Zavisi"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr ""
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Unaprijed zavisi"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Ne mogu ispraviti zavisnosti"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Predlaže"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr ""
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Preporučuje"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Urađeno"
+#: apt-pkg/pkgcache.cc:225
+#, fuzzy
+msgid "Conflicts"
+msgstr "Sukobljava se sa"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Zamjenjuje"
+
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Zastarijeva"
+
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
msgstr ""
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "važno"
-#: cmdline/apt-get.cc:704
-#, fuzzy
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "Slijedeći paketi će biti nadograđeni:"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "zahtijevano"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr ""
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standardno"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr ""
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcionalno"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr ""
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr ""
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Gradim stablo zavisnosti"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Verzije kandidata"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Stvaranje zavisnosti"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr ""
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Sastavljam dostupne informacije"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr ""
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Ne mogu otvoriti %s"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Ne mogu ukloniti %s"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/tagfile.cc:102
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
+msgid "Unable to parse package file %s (1)"
msgstr ""
-#: cmdline/apt-get.cc:839
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "Need to get %sB of archives.\n"
+msgid "Unable to parse package file %s (2)"
msgstr ""
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+msgid "Malformed line %lu in source list %s (URI)"
msgstr ""
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+msgid "Malformed line %lu in source list %s (dist)"
msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Couldn't determine free space in %s"
+msgid "Malformed line %lu in source list %s (URI parse)"
msgstr ""
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "You don't have enough free space in %s."
+msgid "Malformed line %lu in source list %s (absolute dist)"
msgstr ""
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/sourcelist.cc:108
+#, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Da, uradi kako kažem!"
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "Otvaram %s"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Line %u too long in source list %s."
msgstr ""
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Odustani."
-
-#: cmdline/apt-get.cc:904
-#, fuzzy
-msgid "Do you want to continue [Y/n]? "
-msgstr "Da li želite nastaviti? [Y/n]"
-
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "Failed to fetch %s %s\n"
+msgid "Malformed line %u in source list %s (type)"
msgstr ""
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
msgstr ""
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/packagemanager.cc:399
+#, c-format
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
msgstr ""
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Odustajem od instalacije."
-
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/algorithms.cc:247
#, c-format
-msgid "Note, selecting %s instead of %s\n"
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: cmdline/apt-get.cc:1055
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
+msgid "Lists directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr "[Instalirano]"
-
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1106
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, 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"
+msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Međutim, slijedeći paketi ga zamjenjuju:"
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Čitam spisak datoteke"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s has no installation candidate"
+msgid "The method driver %s could not be found."
msgstr ""
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgid "Method %s did not start correctly"
msgstr ""
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "%s is already the newest version.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Release '%s' for '%s' was not found"
+msgid "Packaging system '%s' is not supported"
msgstr ""
-#: cmdline/apt-get.cc:1187
-#, c-format
-msgid "Version '%s' for '%s' was not found"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
msgstr ""
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Selected version %s (%s) for %s\n"
+msgid "Unable to stat %s."
msgstr ""
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
msgstr ""
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Slijedeći NOVI paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
msgstr ""
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
msgstr ""
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
msgstr ""
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
msgstr ""
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
msgstr ""
-#: cmdline/apt-get.cc:1545
+#: apt-pkg/pkgcachegen.cc:153
#, c-format
-msgid "Couldn't find task %s"
+msgid "Error occurred while processing %s (NewFileDesc1)"
msgstr ""
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Couldn't find package %s"
+msgid "Error occurred while processing %s (UsePackage2)"
msgstr ""
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
msgstr ""
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ali se %s treba instalirati"
-
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/pkgcachegen.cc:213
+#, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
msgstr ""
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/pkgcachegen.cc:217
+#, c-format
+msgid "Error occurred while processing %s (UsePackage3)"
msgstr ""
-#: cmdline/apt-get.cc:1742
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
msgstr ""
-#: cmdline/apt-get.cc:1750
-msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+#: apt-pkg/pkgcachegen.cc:245
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
msgstr ""
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Oštećeni paketi"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Slijedeći dodatni paketi će biti instalirani:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Predloženi paketi:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Preporučeni paketi:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Računam nadogradnju..."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Urađeno"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/pkgcachegen.cc:288
#, c-format
-msgid "Unable to find a source package for %s"
+msgid "Error occurred while processing %s (FindPkg)"
msgstr ""
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/pkgcachegen.cc:301
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
+msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/pkgcachegen.cc:307
#, c-format
-msgid "You don't have enough free space in %s"
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
+msgid "Couldn't stat source package list %s"
msgstr ""
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
msgstr ""
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr ""
+
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Fetch source %s\n"
+msgid "rename failed, %s (%s -> %s)."
msgstr ""
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/acquire-item.cc:1213
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/acquire-item.cc:1272
#, c-format
-msgid "Build command '%s' failed.\n"
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Unable to get build-dependency information for %s"
+msgid "Vendor block %s contains no fingerprint"
msgstr ""
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "%s has no build depends.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-#: cmdline/apt-get.cc:2429
-#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
msgstr ""
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Stored label: %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Pogrešan CD"
+
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr ""
+
+#: apt-pkg/cdrom.cc:612
+#, fuzzy
+msgid "Waiting for disc...\n"
+msgstr "Čekam na zaglavlja"
+
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr ""
+
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
msgstr ""
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/cdrom.cc:678
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
+#: apt-pkg/cdrom.cc:715
+#, c-format
+msgid "Found label '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Podržani moduli:"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr ""
-#: cmdline/apt-get.cc:2634
+#: apt-pkg/cdrom.cc:760
+#, c-format
msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
+#: apt-pkg/cdrom.cc:764
+#, fuzzy
+msgid "Copying package lists..."
+msgstr "Čitam spiskove paketa"
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
msgstr ""
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
msgstr ""
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#, c-format
+msgid "Wrote %i records.\n"
msgstr ""
-#: cmdline/acqprogress.cc:114
-msgid "Err "
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#, c-format
+msgid "Wrote %i records with %i missing files.\n"
msgstr ""
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
+msgid "Wrote %i records with %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid " [Working]"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
+msgid "Directory '%s' missing"
msgstr ""
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Nepoznat zapis paketa\""
+#: apt-pkg/deb/dpkgpm.cc:596
+#, fuzzy, c-format
+msgid "Preparing %s"
+msgstr "Otvaram %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, fuzzy, c-format
+msgid "Unpacking %s"
+msgstr "Otvaram %s"
+
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
msgstr ""
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Loša podrazumjevana postavka!"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, fuzzy, c-format
+msgid "Configuring %s"
+msgstr "Povezujem se sa %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Pritisnite enter za nastavak."
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, c-format
+msgid "Processing triggers for %s"
+msgstr ""
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr " Instalirano:"
+
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
msgstr ""
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
+#: apt-pkg/deb/dpkgpm.cc:618
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Otvaram %s"
+
+#: apt-pkg/deb/dpkgpm.cc:619
+#, fuzzy, c-format
+msgid "Removed %s"
+msgstr "Preporučuje"
+
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
msgstr ""
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Ne mogu ukloniti %s"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
+#: methods/rred.cc:219
+msgid "Could not patch file"
msgstr ""
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Sastavljam dostupne informacije"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr ""
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt 0.6\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-02-05 22:00+0100\n"
"Last-Translator: Jordi Mallach <jordi@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "No es pot llegir la base de dades del cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No "
-"pot usar-se apt-get update per afegir-ne de nous"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD erroni"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "El paquet %s versió %s té una dependència sense satisfer:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "No s'ha trobat el disc"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fitxer no trobat"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "L'estat ha fallat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "No s'ha pogut establir el temps de modificació"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI no vàlid, els URI locals no han de començar per //"
+msgid "Unable to locate package %s"
+msgstr "No s'ha trobat el paquet %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "S'està accedint a"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Nombre total de paquets: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "No es pot determinar el nom de la màquina distant"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Paquets normals: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "No es pot determinar el nom local"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Paquets virtuals purs: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Paquets virtuals únics: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER ha fallat, el servidor ha dit: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Paquets virtuals mixtes: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS ha fallat, el servidor ha dit: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Falten: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"S'ha especificat un servidor intermediari però no un script d'accés, "
-"Acquire::ftp::ProxyLogin està buit."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Total de versions diferents: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "L'ordre '%s' de l'script d'accés ha fallat, el servidor ha dit: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Total de versions diferents: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE ha fallat, el servidor ha dit: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Total de dependències: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Temps de connexió finalitzat"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Total de relacions versió/fitxer: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "El servidor ha tancat la connexió"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Total de relacions versió/fitxer: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Error de lectura"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Total dels mapes aportats: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Una resposta ha desbordat la memòria temporal."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Total de cadenes globals: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protocol corrumput"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total de l'espai per a dependències de versió: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Error d'escriptura"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total de l'espai desperdiciat: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "No s'ha pogut crear un sòcol"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total de l'espai atribuit a: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "El fitxer %s del paquet està desincronitzat."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Ha fallat"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Heu de donar exactament un patró"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "No s'ha pogut connectar amb el sòcol passiu."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "No s'han trobat paquets"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Fitxers de paquets:"
-# abastar? huh? jm
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "No s'ha pogut abastar un connector"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "No s'ha pogut escoltar sobre el sòcol"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "No s'ha pogut determinar el nom del sòcol"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Paquets etiquetats:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "No es pot enviar l'ordre PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(no trobat)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "La família d'adreces %u és desconeguda (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instal·lat: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT ha fallat, el servidor ha dit: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(cap)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "No es pot acceptar la connexió"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Etiqueta del paquet: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problema escollint el fitxer"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Taula de versió:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "No és possible reprendre el fitxer, el servidor ha dit '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "S'ha esgotat el temps d'espera per al sòcol de dades"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s per a %s %s compilat el %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Consulta"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "No es pot invocar"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "S'està connectant amb %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Ús: apt-cache [opcions] ordre\n"
+" apt-cache [opcions] add fitxer1 [fitxer2 ...]\n"
+" apt-cache [opcions] showpkg paquet1 [paquet2 ...]\n"
+" apt-cache [opcions] showsrc paquet1 [paquet2 ...]\n"
+"\n"
+"apt-cache és una eina usada per a manipular fitxers binaris en\n"
+"el cau d'APT, i així poder consultar-ne la informació\n"
+"\n"
+"Ordres:\n"
+" add - Afegeix un fitxer de paquet a la memòria cau de les fonts\n"
+" gencaches - Crea la memòria cau de tots dos, paquet i font\n"
+" showpkg - Mostra alguna informació general d'un sol paquet\n"
+" showsrc - Mostra un registre de les fonts\n"
+" stats - Mostra algunes estadístiques bàsiques\n"
+" dump - Mostra el fitxer sencer en un format concís\n"
+" dumpavail - Genera un registre llegible a stdout\n"
+" unmet - Mostra dependències sense satisfer\n"
+" search - Cerca en la llista de paquets per un patró d'expressió regular\n"
+" show - Mostra un registre llegible pel paquet\n"
+" depends - Mostra informació de dependències (en cru) d'un paquet\n"
+" rdepends - Mostra informació de dependències enrere d'un paquet\n"
+" pkgnames - Llista els noms de tots els paquets\n"
+" dotty - Genera gràfiques del paquet per a GraphVis\n"
+" xvcg - Genera gràfiques del paquet per a xvcg\n"
+" policy - Mostra configuració de política\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda.\n"
+" -p=? La memòria cau de paquets.\n"
+" -s=? La memòria cau de la font.\n"
+" -q Inhabilita l'indicatiu de progres.\n"
+" -i Sols mostra dependències importants d'una ordre inadequada.\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
+"Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més "
+"informació.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 2.1r1 Disc 1»"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Inseriu un disc en la unitat i premeu Intro"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "No es pot iniciar la connexió amb %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Els arguments no són en parells"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "No s'ha pogut connectar amb %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Ús: apt-config [opcions] ordre\n"
+"\n"
+"apt-config és una simple eina per a llegir el fitxer de configuració d'APT\n"
+"\n"
+"Ordres:\n"
+" shell - Mode shell\n"
+" dump - Mostra la configuració\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda.\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "S'està connectant amb %s"
+msgid "%s not a valid DEB package."
+msgstr "%s no és un paquet DEB vàlid."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "No s'ha pogut resoldre '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Ús: apt-extracttemplates fitxer1 [fitxer2 ...]\n"
+"\n"
+"apt-extracttemplates és una eina per a extreure informació de\n"
+"configuració i plantilles dels paquets debian\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda.\n"
+" -t Estableix el directori temporal\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "S'ha produït un error temporal en resoldre '%s'"
+msgid "Unable to write to %s"
+msgstr "No es pot escriure en %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "No es pot determinar la versió de debconf. Està instal·lat debconf?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "No es pot connectar amb %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "La llista de les extensions dels paquets és massa llarga"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "No s'ha pogut accedir a l'anell de claus: «%s»"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: La llista d'arguments d'Acquire::gpgv::Options és massa llarga. S'està "
-"sortint."
+msgid "Error processing directory %s"
+msgstr "S'ha produït un error en processar el directori %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Error intern: La signatura és correcta, però no s'ha pogut determinar "
-"l'emprempta digital de la clau!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "La llista d'extensions de les fonts és massa llarga"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "S'ha trobat almenys una signatura invàlida."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"No s'ha pogut executar «%s» per a verificar la signatura (està instal·lat el "
-"gnupg?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "S'ha produït un error desconegut en executar el gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Les següents signatures són invàlides:\n"
+msgid "Error processing contents %s"
+msgstr "S'ha produït un error en processar el fitxer de continguts %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Les següents signatures no s'han pogut verificar perquè la clau pública no "
-"està disponible:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "No es pot determinar l'estat de %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "No s'ha pogut obrir un conducte per a %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Error llegint des del procés %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Forma d'ús: apt-ftparchive [opcions] ordre\n"
+"Ordres: packages camí_binaris [fitxer_substitucions prefix_camí]]\n"
+" sources camí_fonts [fitxer_substitucions [prefix_camí]]\n"
+" contents camí\n"
+" release camí\n"
+" generate config [grups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive genera fitxers d'índex per als arxius de Debian.\n"
+"Gestiona molts estils per a generar-los, des dels completament automàtics\n"
+"als substituts funcionals per dpkg-scanpackages i dpkg-scansources.\n"
+"\n"
+"apt-ftparchive genera fitxers Package des d'un arbre de .deb. El\n"
+"fitxer Package conté tots els camps de control de cada paquet així com\n"
+"la suma MD5 i la mida del fitxer. Es suporten els fitxers de substitució\n"
+"per a forçar el valor de Prioritat i Secció.\n"
+"\n"
+"D'un mode semblant, apt-ftparchive genera fitxers Sources des d'un arbre\n"
+"de .dsc. Es pot utilitzar l'opció --source-override per a especificar un\n"
+"fitxer de substitucions de src.\n"
+"\n"
+"L'ordre «packages» i «sources» hauria d'executar-se en l'arrel de\n"
+"l'arbre. CamíBinaris hauria de ser el punt base de la recerca recursiva\n"
+"i el fitxer de substitucions hauria de contenir senyaladors de substitució.\n"
+"Prefixcamí s'afegeix als camps del nom de fitxer si està present.\n"
+"Exemple d'ús a l'arxiu de Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda\n"
+" --md5 Generació del control MD5\n"
+" -s=? Fitxer de substitucions per a fonts\n"
+" -q Silenciós\n"
+" -d=? Selecciona la base de dades de memòria cau opcional\n"
+" --no-delink Habilita el mode de depuració delink\n"
+" --contents Genera el fitxer amb els continguts de control\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de configuració arbitrària"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "S'estan esperant les capçaleres"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "No s'ha trobat cap selecció"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "S'ha aconseguit una sola línia de capçalera més de %u caràcters"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Línia de capçalera incorrecta"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "El servidor http ha enviat una capçalera de resposta no vàlida"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "La base de dades està corrompuda, fitxer renomenat a %s.old"
-#: methods/http.cc:586
-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"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "La BD és vella, s'està intentant actualitzar %s"
-#: methods/http.cc:601
-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"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"El format de la base de dades és invàlid. Si heu actualitzat des d'una "
+"versió més antiga de l'apt, eliminieu i torneu a crear la base de dades."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Aquest servidor http té el suport d'abast trencat"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "No es pot obrir el fitxer de DB %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Format de la data desconegut"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "No es pot determinar l'estat de %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Ha fallat la selecció"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arxiu sense registre de control"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Connexió finalitzada"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "No es pot aconseguir un cursor"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Error escrivint en el fitxer d'eixida"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "A: No es pot llegir el directori %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Error escrivint en el fitxer"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "A: No es pot veure l'estat %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Error escrivint en el fitxer"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error llegint, el servidor remot ha tancat la connexió"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "A: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Error llegint des del servidor"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Els errors s'apliquen al fitxer "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Capçalera de dades no vàlida"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "No s'ha pogut resoldre %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Ha fallat la connexió"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "L'arbre està fallant"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Error intern"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "No s'ha pogut obrir %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "No es pot transferir un fitxer buit a memòria"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "No s'ha pogut crear un mapa de memòria de %lu octets"
+msgid "Failed to readlink %s"
+msgstr "No s'ha pogut llegir l'enllaç %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "No s'ha trobat la selecció %s"
+msgid "Failed to unlink %s"
+msgstr "No s'ha pogut alliberar %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Abreujament de tipus no reconegut: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** No s'ha pogut enllaçar %s a %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "S'està obrint el fitxer de configuració %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink s'ha arribat al límit de %sB.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Línia %d massa llarga (màx %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arxiu sense el camp paquet"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Error sintàctic %s:%u: No comença el camp amb un nom."
+msgid " %s has no override entry\n"
+msgstr " %s no té una entrada dominant\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Error sintàctic %s:%u: Etiqueta malformada"
+msgid " %s maintainer is %s not %s\n"
+msgstr " el mantenidor de %s és %s, no %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Error sintàctic %s:%u Text extra després del valor"
+msgid " %s has no source override entry\n"
+msgstr " %s no té una entrada dominant de font\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt"
+msgid " %s has no binary override entry either\n"
+msgstr " %s no té una entrada dominant de binari\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats"
+msgid "Internal error, could not locate member %s"
+msgstr "Error intern, no s'ha pogut localitzar al membre %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Error sintàctic %s:%u: Inclusió des d'aqui"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - No s'ha pogut assignar espai en memòria"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Error sintàctic %s:%u: Directriu no suportada '%s'"
+msgid "Unable to open %s"
+msgstr "No es pot obrir %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Error sintàctic %s:%u: Text extra al final del fitxer"
+msgid "Malformed override %s line %lu #1"
+msgstr "Línia predominant %s línia malformada %lu núm 1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "No es pot llegir %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Línia predominant %s línia malformada %lu núm 2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Error!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Línia predominant %s línia malformada %lu núm 3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Fet"
+msgid "Failed to read the override file %s"
+msgstr "No s'ha pogut llegir la línia predominant del fitxer %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "L'opció de la línia d'ordres '%c' [de %s] és desconeguda."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algorisme de compressió desconegut '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "No s'entén l'opció de la línia d'ordres %s"
+msgid "Compressed output %s needs a compression set"
+msgstr "L'eixida comprimida %s necessita un joc de compressió"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "No és lògica l'opció de la línia d'ordres %s"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "No s'ha pogut crear el conducte IPC al subprocés"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "L'opció de la línia d'ordres %s precisa un paràmetre."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "No s'ha pogut crear FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "No s'ha pogut bifurcar"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "L'opció %s precisa un paràmetre numèric, no '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Comprimeix el fil"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "L'opció '%s' és massa llarga"
+msgid "Internal error, failed to create %s"
+msgstr "S'ha produït un error intern, no s'ha pogut crear %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, 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)."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "No s'ha pogut crear el subprocés IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Operació no vàlida %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "No s'ha pogut executar el compressor "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "No es pot obtenir informació del punt de muntatge %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompressor"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "No es pot canviar a %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Ha fallat l'E/S del subprocés sobre el fitxer"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "No s'ha pogut fer «stat» del cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "No s'ha pogut llegir mentre es calculava la suma MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "No s'usen blocats per a llegir el fitxer de blocat de sols lectura %s"
+msgid "Problem unlinking %s"
+msgstr "S'ha trobat un problema treient l'enllaç %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "No es pot resoldre el fixter de blocat %s"
+msgid "Failed to rename %s to %s"
+msgstr "No s'ha pogut canviar el nom de %s a %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "No s'usen blocats per al fitxer de blocat %s de muntar nfs"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "S"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "No s'ha pogut blocar %s"
+msgid "Regex compilation error - %s"
+msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Esperava %s però no hi era"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Els següents paquets tenen dependències sense satisfer:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Sub-procés %s ha rebut una violació de segment."
+msgid "but %s is installed"
+msgstr "però està instal·lat %s"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Sub-procés %s ha retornat un codi d'error (%u)"
+msgid "but %s is to be installed"
+msgstr "però s'instal·larà %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Sub-procés %s ha eixit inesperadament"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "però no és instal·lable"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "No s'ha pogut obrir el fitxer %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "però és un paquet virtual"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "llegits, falten %lu per llegir, però no queda res"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "però no està instal·lat"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "escrits, falten %lu per escriure però no s'ha pogut"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "però no serà instal·lat"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Ha hagut un problema en tancar el fitxer"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " o"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Ha hagut un problema en desenllaçar el fitxer"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "S'instal·laran els següents paquets NOUS:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Ha hagut un problema en sincronitzar el fitxer"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "S'ELIMINARAN els següents paquets:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Memòria cau de paquets és buida"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "S'han mantingut els següents paquets:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "El fitxer de memòria cau de paquets està corromput"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "S'actualitzaran els següents paquets:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "El fitxer de memòria cau de paquets és una versió incompatible"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Es DESACTUALITZARAN els següents paquets:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Es canviaran els següents paquets mantinguts:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Aquest APT no suporta el sistema de versions '%s'"
+msgid "%s (due to %s) "
+msgstr "%s (per %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent"
+#: cmdline/apt-get.cc:550
+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: Els següents paquets essencials seran eliminats.\n"
+"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depén"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu actualitzats, %lu nous a instal·lar, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Predepén"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstal·lats, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Suggereix"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu desactualitzats, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recomana"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a eliminar i %lu no actualitzats.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Entra en conflicte"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu no instal·lats o eliminats completament.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Reemplaça"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "S'estan corregint les dependències..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Fa obsolet"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " ha fallat."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "No es poden corregir les dependències"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "important"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "No es pot minimitzar el joc de versions revisades"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "requerit"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Fet"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "estàndard"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcional"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependències sense satisfer. Proveu-ho usant -f."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVÍS: No es poden autenticar els següents paquets!"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "S'està construint l'arbre de dependències"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "S'ha descartat l'avís d'autenticació.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versions candidates"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Dependències que genera"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "No s'ha pogut autenticar alguns paquets"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "S'està fusionant la informació disponible"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Hi ha problemes i s'ha usat -y sense --force-yes"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "No s'ha pogut obrir %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets "
+"trencats!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "No s'ha pogut escriure el fitxer %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Els paquets necessiten ser eliminats però Remove està inhabilitat."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "No es pot analitzar el fitxer del paquet %s (1)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "No es pot analitzar el fitxer del paquet %s (2)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "No és possible blocar el directori de descàrrega"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Línia %lu malformada en la llista de fonts %s (URI)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "No s'ha pogut llegir la llista de les fonts."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Línia %lu malformada en la llista de fonts %s (dist)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Què estrany... les mides no coincideixen, informeu a apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Es necessita obtenir %sB/%sB d'arxius.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Es necessita obtenir %sB d'arxius.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Després de desempaquetar s'usaran %sB d'espai en disc addicional.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "S'està obrint %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Després de desempaquetar s'alliberaran %sB d'espai en disc.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "La línia %u és massa llarga en la llista de fonts %s."
+msgid "Couldn't determine free space in %s"
+msgstr "No s'ha pogut determinar l'espai lliure en %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "La línia %u és malformada en la llista de fonts %s (tipus)"
+msgid "You don't have enough free space in %s."
+msgstr "No teniu prou espai lliure en %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Es va especificar Trivial Only però aquesta operació no és trivial."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Sí, fes el que et dic!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Aquesta instal·lació requereix eliminar temporalment el paquet essencial %s "
-"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa "
-"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-"
-"LoopBreak."
+"Esteu a punt de fer quelcom potencialment nociu.\n"
+"Per a continuar escriviu la frase «%s»\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "El tipus de fitxer índex '%s', no està suportat"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Avortat."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Voleu continuar [S/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu."
+msgid "Failed to fetch %s %s\n"
+msgstr "No s'ha pogut obtenir %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Alguns fitxers no s'han pogut descarregar"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Descàrrega completa i en mode de només descàrrega"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat "
-"causat per paquets mantinguts."
+"No es poden descarregar alguns arxius, potser executant apt-get update o "
+"intenteu-ho amb --fix-missing."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"No es poden corregir els problemes, teniu paquets mantinguts que estan "
-"trencats."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing i medi d'intercanvi actualment no estan suportats"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Falta el directori de llistes %spartial."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "No es poden corregir els paquets que falten."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Falta el directori d'arxiu %spartial."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "S'està avortant la instal·lació."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "S'està obtenint el fitxer %li de %li (falten %s)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Nota: s'està seleccionant %s en comptes de %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "S'està obtenint el fitxer %li de %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "No s'ha pogut trobar el mètode de control %s."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "El paquet %s no està instal·lat, així que no s'eliminarà\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "El mètode %s no s'ha iniciat correctament"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "El paquet %s és un paquet virtual proveït per:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Instal·lat]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "El sistema d'empaquetament '%s' no està suportat"
+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"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Tot i que els següents paquets el reemplacen:"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Unable to stat %s."
-msgstr "No es pot veure l'estat de %s."
+msgid "Package %s has no installation candidate"
+msgstr "El paquet %s no té candidat d'instal·lació"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Heu de posar algunes URI 'font' en el vostre sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "No s'ha pogut llegir la llista de les fonts."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
-"Potser voldreu executar apt-get update per a corregir aquests problemes"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Registre no vàlid en el fitxer de preferències, paquet sense capçalera"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "No s'ha entès el pin de tipus %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "No hi ha prioritat especificada per al pin (o és zero)"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "La memòria cau té un sistema de versions incompatible"
-
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "S'ha produït un error durant el processament de %s (NewPackage)"
-
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "S'ha produït un error durant el processament de %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr ""
+"No es possible la reinstal·lació del paquet %s, no es pot descarregar.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "S'ha produït un error durant el processament de %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s ja es troba en la versió més recent.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "No s'ha trobat la versió puntual «%s» per a «%s»"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "S'ha produït un error durant el processament de %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "No s'ha trobat la versió «%s» per a «%s»"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "S'ha produït un error durant el processament de %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versió seleccionada %s (%s) per a %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "S'ha produït un error durant el processament de %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "L'ordre update no pren arguments"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "No es pot blocar el directori de la llista"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Uau, heu excedit el nombre de paquets dels que aquest APT és capaç."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"No es poden descarregar alguns fitxers índex, s'han ignorat o en el seu lloc "
+"s'han usat els antics."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"Uau, heu excedit el nombre de versions de les que aquest APT és capaç. "
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr ""
-"Uau, heu excedit el nombre de versions de les que aquest APT és capaç. "
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "S'instal·laran els següents paquets NOUS:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Uau, heu excedit el nombre de dependències de les que aquest APT és capaç."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "S'ha produït un error durant el processament de %s (FindPkg)"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"S'ha produït un error durant el processament de %s (CollectFileProvides)"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr ""
-"No s'ha trobat el paquet %s %s en processar les dependències del fitxer"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "La següent informació pot ajudar-vos a resoldre la situació:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "No s'ha pogut llegir la llista de paquets font %s"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+"S'ha produït un error intern, el solucionador de problemes ha trencat coses"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "S'està llegint la llista de paquets"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Error intern, AllUpgrade ha trencat coses"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "S'estan recollint els fitxers que proveeixen"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "No s'ha pogut trobar el paquet %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "No es pot escriure en %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Error d'E/S en desar la memòria cau de la font"
+msgid "Couldn't find package %s"
+msgstr "No s'ha pogut trobar el paquet %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Suma MD5 diferent"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Suma MD5 diferent"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "però s'instal·larà %s"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"No ha estat possible localitzar un fitxer pel paquet %s. Això podria "
-"significar que haureu d'arreglar aquest paquet manualment (segons "
-"arquitectura)."
+"Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o "
+"especifiqueu una solució)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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'ha trobat un fitxer pel paquet %s. Això podria significar que haureu "
-"d'arreglar aquest paquet manualment."
+"No s'han pogut instal·lar alguns paquets. Això pot ser degut a que vàreu\n"
+"requerir una situació imposible o a que esteu usant la distribució\n"
+"unstable i alguns paquets requerits encara no han estat creats o bé\n"
+"encara no els hi han afegit."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp "
-"per al paquet %s."
+"Degut a que sols heu requerit una única operació, serà molt\n"
+"probable que el paquet no sigui instal·lable i que s'hagi d'emetre\n"
+"un informe d'error en contra d'aquest per a arxivar-lo."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "La mida no concorda"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Paquets trencats"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "El camp del proveïdor %s no té una empremta digital"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "S'instal·laran els següents paquets extres:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Paquets suggerits:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Paquets recomanats:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "S'està calculant l'actualització... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Ha fallat"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Fet"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-"S'està utilitzant el punt de muntatge de CD-ROM %s\n"
-"S'està muntant el CD-ROM\n"
+"S'ha produït un error intern, el solucionador de problemes ha trencat coses"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "S'està identificant..."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Haureu d'especificar un paquet de codi font per a descarregar"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Stored label: %s\n"
-msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
+msgid "Unable to find a source package for %s"
+msgstr "No es pot trobar un paquet de fonts per a %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "S'està ometent el fitxer ja descarregat «%s»\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "S'està desmuntant el CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "S'està esperant al disc...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "S'està muntant el CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "S'està analitzant el disc per a fitxers d'índex...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "S'han trobat %i índex de paquets, %i índex de fonts i %i signatures\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n"
-
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"El disc es diu:\n"
-"«%s»\n"
+msgid "You don't have enough free space in %s"
+msgstr "No teniu prou espai lliure en %s"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "S'estan copiant les llistes de paquets..."
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Es necessita descarregar %sB/%sB d'arxius font.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "S'està escrivint una nova llista de fonts\n"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Es necessita descarregar %sB d'arxius font.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Les entrades de la llista de fonts per a aquest disc són:\n"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Font descarregada %s\n"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "S'esta desmuntant el CD-ROM..."
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "No s'ha pogut descarregar alguns arxius."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "S'han escrit %i registres.\n"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+"S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "S'han escrit %i registres, on falten %i fitxers.\n"
+msgid "Unpack command '%s' failed.\n"
+msgstr "L'ordre de desempaquetar «%s» ha fallat.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Comproveu si el paquet «dpkgdev» està instal·lat.\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no "
-"coincidents\n"
+msgid "Build command '%s' failed.\n"
+msgstr "L'ordre de construir «%s» ha fallat.\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Falta el directori de llistes %spartial."
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Ha fallat el procés fill"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "S'està preparant el paquet %s"
+#: cmdline/apt-get.cc:2342
+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"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unpacking %s"
-msgstr "S'està desempaquetant %s"
+msgid "Unable to get build-dependency information for %s"
+msgstr ""
+"No es pot obtenir informació sobre les dependències de construcció per a %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing to configure %s"
-msgstr "S'està preparant per a configurar el paquet %s"
+msgid "%s has no build depends.\n"
+msgstr "%s no té dependències de construcció.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Configuring %s"
-msgstr "S'està configurant el paquet %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "S'ha produït un error en processar el directori %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"La dependència %s en %s no es pot satisfer per que no es pot trobar el "
+"paquet %s"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Installed %s"
-msgstr "S'ha instal·lat el paquet %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"La dependència %s per a %s no es pot satisfer per que cap versió del paquet %"
+"s pot satisfer els requeriments de versions"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "S'està preparant per a l'eliminació del paquet %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"No s'ha pogut satisfer la dependència %s per a %s: El paquet instal·lat %s "
+"és massa nou"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Removing %s"
-msgstr "S'està eliminant el paquet %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Removed %s"
-msgstr "S'ha eliminat el paquet %s"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "No s'han pogut satisfer les dependències de construcció per a %s"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "S'està preparant per a eliminar completament el paquet %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "No es poden processar les dependències de construcció"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "S'ha eliminat completament el paquet %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Mòduls suportats:"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
+"Forma d'ús: apt-get [opcions] ordre\n"
+" apt-get [opcions] install|remove paq1 [paq2 ...]\n"
+" apt-get [opcions] source paq1 [paq2 ...]\n"
+"\n"
+"apt-get és una simple interfície de línia d'ordres per a\n"
+"descarregar i instal·lar paquets. Les ordres més freqüents\n"
+"són update i install.\n"
+"\n"
+"Ordres:\n"
+" update - Descarrega llistes noves dels paquets\n"
+" upgrade - Realitza una actualització\n"
+" install - Instal·la nous paquets (el paquet serà libc6 no libc6.deb)\n"
+" remove - Elimina paquets\n"
+" source - Descarrega arxius font\n"
+" build-dep - Configura dependències de construcció pels paquets font\n"
+" dist-upgrade - Actualitza la distribució, mireu apt-get(8)\n"
+" dselect-upgrade - Segueix les seleccions de dselect\n"
+" clean - Esborra els fitxers arxiu descarregats\n"
+" autoclean - Esborra els fitxers arxiu descarregats antics\n"
+" check - Verifica que no hi hagi dependències sense satisfer\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda.\n"
+" -q Eixida a la bitàcola - sense indicatiu de progrés\n"
+" -qq Sense eixida, excepte els errors\n"
+" -d Sols descarrega - NO instal·la o desempaqueta arxius\n"
+" -s No actua. Realitza les ordres en mode de simulació\n"
+" -y Assumeix que Sí per a totes les preguntes, fa que no es pregunti\n"
+" -f Intenta seguir si la comprovació d'integritat falla\n"
+" -m Intenta seguir si no es localitzen els arxius\n"
+" -u Mostra una llista dels paquets actualitzats també\n"
+" -b Construeix des del paquet font després de descarregar-lo\n"
+" -V Mostra els números de versió detallada\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de configuració arbitrària, p.ex.\n"
+" -o dir::cache=/tmp\n"
+"Consulteu el manual apt-get(8), sources.list(5) i apt.conf(5)\n"
+"per a més informació i opcions\n"
+" Aquest APT té tots els Poders de Super Vaca.\n"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "No s'ha pogut obrir el fitxer %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Obj "
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "No s'ha pogut crear el conducte IPC al subprocés"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Des:"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "La connexió s'ha tancat prematurament"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "No es poden crear els conductes"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "No es pot executar el gzip "
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB descarregats en %s (%sB/s)\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [Treballant]"
+
+#: cmdline/acqprogress.cc:271
+#, c-format
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"El medi ha canviat: inseriu el disc amb l'etiqueta\n"
+" «%s»\n"
+"en la unitat «%s» i premeu Intro\n"
+
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Registre del paquet desconegut!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Ús: apt-sortpkgs [opcions] fitxer1 [fitxer2 ...]\n"
+"\n"
+"apt-sortpkgs és una simple eina per a ordenar fitxers de paquets.\n"
+"L'opció -s s'usa per a indicar quin tipus de fitxer és.\n"
+"\n"
+"Opcions:\n"
+" -h Aquest text d'ajuda.\n"
+" -s Usar l'ordenació de fitxers font\n"
+" -c=? Llegeix aquest fitxer de configuració\n"
+" -o=? Estableix una opció de configuració, p.ex: -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Paràmetre establert incorrecte!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Premeu Intro per a continuar."
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Alguns errors al desempaquetar. Puc configurar"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr ""
+"els paquets que estan instal·lats. Això pot resultar en errors duplicacats"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"o errors causats per dependències sense satisfer. Aquest està bé, sols els "
+"errors"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"són importants abans d'aquest missatge. Si us plau, arregleu-los i torneu a "
+"executar [I]nstall una altra vegada"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "S'està fusionant la informació disponible"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "No es poden crear els conductes"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "No es pot executar el gzip "
#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
msgid "Corrupted archive"
msgid "The diversion path is too long"
msgstr "La ruta de desviació és massa llarga"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "No s'ha pogut canviar el nom de %s a %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "No es pot llegir %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
"La info i els directoris temp necessiten estar en el mateix sistema de "
"fitxers"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "S'està llegint la llista de paquets"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "El fitxer de control no es pot analitzar"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "No s'ha trobat el paquet %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "No es pot llegir la base de dades del cdrom %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Nombre total de paquets: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No "
+"pot usar-se apt-get update per afegir-ne de nous"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Paquets normals: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD erroni"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Paquets virtuals purs: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Paquets virtuals únics: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "No s'ha trobat el disc"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Paquets virtuals mixtes: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fitxer no trobat"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Falten: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "L'estat ha fallat"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Total de versions diferents: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "No s'ha pogut establir el temps de modificació"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Total de versions diferents: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI no vàlid, els URI locals no han de començar per //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Total de dependències: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "S'està accedint a"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Total de relacions versió/fitxer: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "No es pot determinar el nom de la màquina distant"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Total de relacions versió/fitxer: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "No es pot determinar el nom local"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Total dels mapes aportats: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Total de cadenes globals: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER ha fallat, el servidor ha dit: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total de l'espai per a dependències de versió: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS ha fallat, el servidor ha dit: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total de l'espai desperdiciat: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"S'ha especificat un servidor intermediari però no un script d'accés, "
+"Acquire::ftp::ProxyLogin està buit."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total de l'espai atribuit a: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "L'ordre '%s' de l'script d'accés ha fallat, el servidor ha dit: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "El fitxer %s del paquet està desincronitzat."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE ha fallat, el servidor ha dit: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Heu de donar exactament un patró"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Temps de connexió finalitzat"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "No s'han trobat paquets"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "El servidor ha tancat la connexió"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Fitxers de paquets:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Error de lectura"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Una resposta ha desbordat la memòria temporal."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protocol corrumput"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Paquets etiquetats:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Error d'escriptura"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(no trobat)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "No s'ha pogut crear un sòcol"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instal·lat: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(cap)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "No s'ha pogut connectar amb el sòcol passiu."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidat: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Etiqueta del paquet: "
+# abastar? huh? jm
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "No s'ha pogut abastar un connector"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Taula de versió:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "No s'ha pogut escoltar sobre el sòcol"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "No s'ha pogut determinar el nom del sòcol"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s per a %s %s compilat el %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "No es pot enviar l'ordre PORT"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Ús: apt-cache [opcions] ordre\n"
-" apt-cache [opcions] add fitxer1 [fitxer2 ...]\n"
-" apt-cache [opcions] showpkg paquet1 [paquet2 ...]\n"
-" apt-cache [opcions] showsrc paquet1 [paquet2 ...]\n"
-"\n"
-"apt-cache és una eina usada per a manipular fitxers binaris en\n"
-"el cau d'APT, i així poder consultar-ne la informació\n"
-"\n"
-"Ordres:\n"
-" add - Afegeix un fitxer de paquet a la memòria cau de les fonts\n"
-" gencaches - Crea la memòria cau de tots dos, paquet i font\n"
-" showpkg - Mostra alguna informació general d'un sol paquet\n"
-" showsrc - Mostra un registre de les fonts\n"
-" stats - Mostra algunes estadístiques bàsiques\n"
-" dump - Mostra el fitxer sencer en un format concís\n"
-" dumpavail - Genera un registre llegible a stdout\n"
-" unmet - Mostra dependències sense satisfer\n"
-" search - Cerca en la llista de paquets per un patró d'expressió regular\n"
-" show - Mostra un registre llegible pel paquet\n"
-" depends - Mostra informació de dependències (en cru) d'un paquet\n"
-" rdepends - Mostra informació de dependències enrere d'un paquet\n"
-" pkgnames - Llista els noms de tots els paquets\n"
-" dotty - Genera gràfiques del paquet per a GraphVis\n"
-" xvcg - Genera gràfiques del paquet per a xvcg\n"
-" policy - Mostra configuració de política\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda.\n"
-" -p=? La memòria cau de paquets.\n"
-" -s=? La memòria cau de la font.\n"
-" -q Inhabilita l'indicatiu de progres.\n"
-" -i Sols mostra dependències importants d'una ordre inadequada.\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
-"Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més "
-"informació.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "La família d'adreces %u és desconeguda (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 2.1r1 Disc 1»"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT ha fallat, el servidor ha dit: %s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Inseriu un disc en la unitat i premeu Intro"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "No es pot acceptar la connexió"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Els arguments no són en parells"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problema escollint el fitxer"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Ús: apt-config [opcions] ordre\n"
-"\n"
-"apt-config és una simple eina per a llegir el fitxer de configuració d'APT\n"
-"\n"
-"Ordres:\n"
-" shell - Mode shell\n"
-" dump - Mostra la configuració\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda.\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "No és possible reprendre el fitxer, el servidor ha dit '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "S'ha esgotat el temps d'espera per al sòcol de dades"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s no és un paquet DEB vàlid."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Ús: apt-extracttemplates fitxer1 [fitxer2 ...]\n"
-"\n"
-"apt-extracttemplates és una eina per a extreure informació de\n"
-"configuració i plantilles dels paquets debian\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda.\n"
-" -t Estableix el directori temporal\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Consulta"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "No es pot determinar la versió de debconf. Està instal·lat debconf?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "No es pot invocar"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "La llista de les extensions dels paquets és massa llarga"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "S'està connectant amb %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "S'ha produït un error en processar el directori %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "La llista d'extensions de les fonts és massa llarga"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "No es pot iniciar la connexió amb %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "S'ha produït un error en processar el fitxer de continguts %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Forma d'ús: apt-ftparchive [opcions] ordre\n"
-"Ordres: packages camí_binaris [fitxer_substitucions prefix_camí]]\n"
-" sources camí_fonts [fitxer_substitucions [prefix_camí]]\n"
-" contents camí\n"
-" release camí\n"
-" generate config [grups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive genera fitxers d'índex per als arxius de Debian.\n"
-"Gestiona molts estils per a generar-los, des dels completament automàtics\n"
-"als substituts funcionals per dpkg-scanpackages i dpkg-scansources.\n"
-"\n"
-"apt-ftparchive genera fitxers Package des d'un arbre de .deb. El\n"
-"fitxer Package conté tots els camps de control de cada paquet així com\n"
-"la suma MD5 i la mida del fitxer. Es suporten els fitxers de substitució\n"
-"per a forçar el valor de Prioritat i Secció.\n"
-"\n"
-"D'un mode semblant, apt-ftparchive genera fitxers Sources des d'un arbre\n"
-"de .dsc. Es pot utilitzar l'opció --source-override per a especificar un\n"
-"fitxer de substitucions de src.\n"
-"\n"
-"L'ordre «packages» i «sources» hauria d'executar-se en l'arrel de\n"
-"l'arbre. CamíBinaris hauria de ser el punt base de la recerca recursiva\n"
-"i el fitxer de substitucions hauria de contenir senyaladors de substitució.\n"
-"Prefixcamí s'afegeix als camps del nom de fitxer si està present.\n"
-"Exemple d'ús a l'arxiu de Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda\n"
-" --md5 Generació del control MD5\n"
-" -s=? Fitxer de substitucions per a fonts\n"
-" -q Silenciós\n"
-" -d=? Selecciona la base de dades de memòria cau opcional\n"
-" --no-delink Habilita el mode de depuració delink\n"
-" --contents Genera el fitxer amb els continguts de control\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de configuració arbitrària"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "No s'ha pogut connectar amb %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "S'està connectant amb %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "No s'ha pogut resoldre '%s'"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "No s'ha trobat cap selecció"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "S'ha produït un error temporal en resoldre '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "La base de dades està corrompuda, fitxer renomenat a %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "No es pot connectar amb %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "La BD és vella, s'està intentant actualitzar %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "No s'ha pogut accedir a l'anell de claus: «%s»"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: La llista d'arguments d'Acquire::gpgv::Options és massa llarga. S'està "
+"sortint."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"El format de la base de dades és invàlid. Si heu actualitzat des d'una "
-"versió més antiga de l'apt, eliminieu i torneu a crear la base de dades."
+"Error intern: La signatura és correcta, però no s'ha pogut determinar "
+"l'emprempta digital de la clau!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "S'ha trobat almenys una signatura invàlida."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "No es pot obrir el fitxer de DB %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"No s'ha pogut executar «%s» per a verificar la signatura (està instal·lat el "
+"gnupg?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arxiu sense registre de control"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "S'ha produït un error desconegut en executar el gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "No es pot aconseguir un cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Les següents signatures són invàlides:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Les següents signatures no s'han pogut verificar perquè la clau pública no "
+"està disponible:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "A: No es pot llegir el directori %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "No s'ha pogut obrir un conducte per a %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "A: No es pot veure l'estat %s\n"
+msgid "Read error from %s process"
+msgstr "Error llegint des del procés %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "S'estan esperant les capçaleres"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "A: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "S'ha aconseguit una sola línia de capçalera més de %u caràcters"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Els errors s'apliquen al fitxer "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Línia de capçalera incorrecta"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "No s'ha pogut resoldre %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "El servidor http ha enviat una capçalera de resposta no vàlida"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "L'arbre està fallant"
+#: methods/http.cc:586
+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"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "No s'ha pogut obrir %s"
+#: methods/http.cc:601
+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"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Aquest servidor http té el suport d'abast trencat"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Format de la data desconegut"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Ha fallat la selecció"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Connexió finalitzada"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Error escrivint en el fitxer d'eixida"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Error escrivint en el fitxer"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Error escrivint en el fitxer"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error llegint, el servidor remot ha tancat la connexió"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Error llegint des del servidor"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Capçalera de dades no vàlida"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Ha fallat la connexió"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Error intern"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "No es pot transferir un fitxer buit a memòria"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "No s'ha pogut llegir l'enllaç %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "No s'ha pogut crear un mapa de memòria de %lu octets"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "No s'ha pogut alliberar %s"
+msgid "Selection %s not found"
+msgstr "No s'ha trobat la selecció %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** No s'ha pogut enllaçar %s a %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Abreujament de tipus no reconegut: '%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink s'ha arribat al límit de %sB.\n"
+msgid "Opening configuration file %s"
+msgstr "S'està obrint el fitxer de configuració %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arxiu sense el camp paquet"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Línia %d massa llarga (màx %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s no té una entrada dominant\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Error sintàctic %s:%u: No comença el camp amb un nom."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " el mantenidor de %s és %s, no %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Error sintàctic %s:%u: Etiqueta malformada"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s no té una entrada dominant de font\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Error sintàctic %s:%u Text extra després del valor"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s no té una entrada dominant de binari\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Error intern, no s'ha pogut localitzar al membre %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - No s'ha pogut assignar espai en memòria"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Error sintàctic %s:%u: Inclusió des d'aqui"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "No es pot obrir %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Error sintàctic %s:%u: Directriu no suportada '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Línia predominant %s línia malformada %lu núm 1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Error sintàctic %s:%u: Text extra al final del fitxer"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Línia predominant %s línia malformada %lu núm 2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Error!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Línia predominant %s línia malformada %lu núm 3"
+msgid "%c%s... Done"
+msgstr "%c%s... Fet"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "No s'ha pogut llegir la línia predominant del fitxer %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "L'opció de la línia d'ordres '%c' [de %s] és desconeguda."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algorisme de compressió desconegut '%s'"
+msgid "Command line option %s is not understood"
+msgstr "No s'entén l'opció de la línia d'ordres %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "L'eixida comprimida %s necessita un joc de compressió"
+msgid "Command line option %s is not boolean"
+msgstr "No és lògica l'opció de la línia d'ordres %s"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "No s'ha pogut crear FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "L'opció de la línia d'ordres %s precisa un paràmetre."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "No s'ha pogut bifurcar"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Comprimeix el fil"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "L'opció %s precisa un paràmetre numèric, no '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "S'ha produït un error intern, no s'ha pogut crear %s"
+msgid "Option '%s' is too long"
+msgstr "L'opció '%s' és massa llarga"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "No s'ha pogut crear el subprocés IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, 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)."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "No s'ha pogut executar el compressor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Operació no vàlida %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompressor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "No es pot obtenir informació del punt de muntatge %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Ha fallat l'E/S del subprocés sobre el fitxer"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "No es pot canviar a %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "No s'ha pogut llegir mentre es calculava la suma MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "No s'ha pogut fer «stat» del cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "S'ha trobat un problema treient l'enllaç %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "No s'usen blocats per a llegir el fitxer de blocat de sols lectura %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "S"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "No es pot resoldre el fixter de blocat %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "S'ha produït un error de compilació de l'expressió regular - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "No s'usen blocats per al fitxer de blocat %s de muntar nfs"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Els següents paquets tenen dependències sense satisfer:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "No s'ha pogut blocar %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "però està instal·lat %s"
+msgid "Waited for %s but it wasn't there"
+msgstr "Esperava %s però no hi era"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "però s'instal·larà %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Sub-procés %s ha rebut una violació de segment."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "però no és instal·lable"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Sub-procés %s ha retornat un codi d'error (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "però és un paquet virtual"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Sub-procés %s ha eixit inesperadament"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "però no està instal·lat"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "No s'ha pogut obrir el fitxer %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "però no serà instal·lat"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "llegits, falten %lu per llegir, però no queda res"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " o"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "escrits, falten %lu per escriure però no s'ha pogut"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "S'instal·laran els següents paquets NOUS:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Ha hagut un problema en tancar el fitxer"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "S'ELIMINARAN els següents paquets:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Ha hagut un problema en desenllaçar el fitxer"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "S'han mantingut els següents paquets:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Ha hagut un problema en sincronitzar el fitxer"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "S'actualitzaran els següents paquets:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Memòria cau de paquets és buida"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Es DESACTUALITZARAN els següents paquets:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "El fitxer de memòria cau de paquets està corromput"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Es canviaran els següents paquets mantinguts:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "El fitxer de memòria cau de paquets és una versió incompatible"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (per %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Aquest APT no suporta el sistema de versions '%s'"
-#: cmdline/apt-get.cc:547
-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: Els següents paquets essencials seran eliminats.\n"
-"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu actualitzats, %lu nous a instal·lar, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depén"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstal·lats, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Predepén"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desactualitzats, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Suggereix"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a eliminar i %lu no actualitzats.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recomana"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu no instal·lats o eliminats completament.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Entra en conflicte"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "S'estan corregint les dependències..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Reemplaça"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " ha fallat."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Fa obsolet"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "No es poden corregir les dependències"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "No es pot minimitzar el joc de versions revisades"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "important"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Fet"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "requerit"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "estàndard"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependències sense satisfer. Proveu-ho usant -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVÍS: No es poden autenticar els següents paquets!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "S'ha descartat l'avís d'autenticació.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "S'està construint l'arbre de dependències"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versions candidates"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "No s'ha pogut autenticar alguns paquets"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Dependències que genera"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Hi ha problemes i s'ha usat -y sense --force-yes"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "S'està fusionant la informació disponible"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets "
-"trencats!"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "No s'ha pogut obrir %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Els paquets necessiten ser eliminats però Remove està inhabilitat."
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "No s'ha pogut escriure el fitxer %s"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "S'ha produït un error intern, l'ordenació no ha acabat"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "No es pot analitzar el fitxer del paquet %s (1)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "No és possible blocar el directori de descàrrega"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "No es pot analitzar el fitxer del paquet %s (2)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Què estrany... les mides no coincideixen, informeu a apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Línia %lu malformada en la llista de fonts %s (URI)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Es necessita obtenir %sB/%sB d'arxius.\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Línia %lu malformada en la llista de fonts %s (dist)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Es necessita obtenir %sB d'arxius.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Després de desempaquetar s'usaran %sB d'espai en disc addicional.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Després de desempaquetar s'alliberaran %sB d'espai en disc.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "No s'ha pogut determinar l'espai lliure en %s"
+msgid "Opening %s"
+msgstr "S'està obrint %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "No teniu prou espai lliure en %s."
+msgid "Line %u too long in source list %s."
+msgstr "La línia %u és massa llarga en la llista de fonts %s."
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Es va especificar Trivial Only però aquesta operació no és trivial."
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr "La línia %u és malformada en la llista de fonts %s (tipus)"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Sí, fes el que et dic!"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s"
+
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Esteu a punt de fer quelcom potencialment nociu.\n"
-"Per a continuar escriviu la frase «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Avortat."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Voleu continuar [S/n]? "
+"Aquesta instal·lació requereix eliminar temporalment el paquet essencial %s "
+"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa "
+"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-"
+"LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "No s'ha pogut obtenir %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Alguns fitxers no s'han pogut descarregar"
+msgid "Index file type '%s' is not supported"
+msgstr "El tipus de fitxer índex '%s', no està suportat"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Descàrrega completa i en mode de només descàrrega"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"No es poden descarregar alguns arxius, potser executant apt-get update o "
-"intenteu-ho amb --fix-missing."
+"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat "
+"causat per paquets mantinguts."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing i medi d'intercanvi actualment no estan suportats"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"No es poden corregir els problemes, teniu paquets mantinguts que estan "
+"trencats."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "No es poden corregir els paquets que falten."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Falta el directori de llistes %spartial."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "S'està avortant la instal·lació."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Falta el directori d'arxiu %spartial."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Nota: s'està seleccionant %s en comptes de %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "S'està obtenint el fitxer %li de %li (falten %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"S'està ometent %s, ja està instal·lat i l'actualització no està establerta.\n"
+msgid "Retrieving file %li of %li"
+msgstr "S'està obtenint el fitxer %li de %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "El paquet %s no està instal·lat, així que no s'eliminarà\n"
+msgid "The method driver %s could not be found."
+msgstr "No s'ha pogut trobar el mètode de control %s."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "El paquet %s és un paquet virtual proveït per:\n"
+msgid "Method %s did not start correctly"
+msgstr "El mètode %s no s'ha iniciat correctament"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Instal·lat]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "El sistema d'empaquetament '%s' no està suportat"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat."
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "No es pot veure l'estat de %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Heu de posar algunes URI 'font' en el vostre sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
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"
+"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Tot i que els següents paquets el reemplacen:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Potser voldreu executar apt-get update per a corregir aquests problemes"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Registre no vàlid en el fitxer de preferències, paquet sense capçalera"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "El paquet %s no té candidat d'instal·lació"
+msgid "Did not understand pin type %s"
+msgstr "No s'ha entès el pin de tipus %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "No hi ha prioritat especificada per al pin (o és zero)"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "La memòria cau té un sistema de versions incompatible"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"No es possible la reinstal·lació del paquet %s, no es pot descarregar.\n"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "S'ha produït un error durant el processament de %s (NewPackage)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ja es troba en la versió més recent.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "S'ha produït un error durant el processament de %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "S'ha produït un error durant el processament de %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "No s'ha trobat la versió puntual «%s» per a «%s»"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "No s'ha trobat la versió «%s» per a «%s»"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "S'ha produït un error durant el processament de %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versió seleccionada %s (%s) per a %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "S'ha produït un error durant el processament de %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "L'ordre update no pren arguments"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "S'ha produït un error durant el processament de %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "No es pot blocar el directori de la llista"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"No es poden descarregar alguns fitxers índex, s'han ignorat o en el seu lloc "
-"s'han usat els antics."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Uau, heu excedit el nombre de paquets dels que aquest APT és capaç."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"Uau, heu excedit el nombre de versions de les que aquest APT és capaç. "
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "S'instal·laran els següents paquets NOUS:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"Uau, heu excedit el nombre de versions de les que aquest APT és capaç. "
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Uau, heu excedit el nombre de dependències de les que aquest APT és capaç."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "La següent informació pot ajudar-vos a resoldre la situació:"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "S'ha produït un error durant el processament de %s (FindPkg)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""
-"S'ha produït un error intern, el solucionador de problemes ha trencat coses"
-
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Error intern, AllUpgrade ha trencat coses"
+"S'ha produït un error durant el processament de %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "No s'ha pogut trobar el paquet %s"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"No s'ha trobat el paquet %s %s en processar les dependències del fitxer"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Couldn't find package %s"
-msgstr "No s'ha pogut trobar el paquet %s"
+msgid "Couldn't stat source package list %s"
+msgstr "No s'ha pogut llegir la llista de paquets font %s"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "S'estan recollint els fitxers que proveeixen"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Error d'E/S en desar la memòria cau de la font"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "però s'instal·larà %s"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Suma MD5 diferent"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Potser voldreu executar `apt-get -f install' per a corregir-ho:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Suma MD5 diferent"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o "
-"especifiqueu una solució)."
+"No ha estat possible localitzar un fitxer pel paquet %s. Això podria "
+"significar que haureu d'arreglar aquest paquet manualment (segons "
+"arquitectura)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"No s'han pogut instal·lar alguns paquets. Això pot ser degut a que vàreu\n"
-"requerir una situació imposible o a que esteu usant la distribució\n"
-"unstable i alguns paquets requerits encara no han estat creats o bé\n"
-"encara no els hi han afegit."
+"No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu "
+"d'arreglar aquest paquet manualment."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Degut a que sols heu requerit una única operació, serà molt\n"
-"probable que el paquet no sigui instal·lable i que s'hagi d'emetre\n"
-"un informe d'error en contra d'aquest per a arxivar-lo."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Paquets trencats"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "S'instal·laran els següents paquets extres:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Paquets suggerits:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Paquets recomanats:"
+"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp "
+"per al paquet %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "S'està calculant l'actualització... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "La mida no concorda"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Fet"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "El camp del proveïdor %s no té una empremta digital"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"S'ha produït un error intern, el solucionador de problemes ha trencat coses"
+"S'està utilitzant el punt de muntatge de CD-ROM %s\n"
+"S'està muntant el CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Haureu d'especificar un paquet de codi font per a descarregar"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "S'està identificant..."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "No es pot trobar un paquet de fonts per a %s"
+msgid "Stored label: %s\n"
+msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "S'està ometent el fitxer ja descarregat «%s»\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "S'esta desmuntant el CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "No teniu prou espai lliure en %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Es necessita descarregar %sB/%sB d'arxius font.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "S'està desmuntant el CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Es necessita descarregar %sB d'arxius font.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "S'està esperant al disc...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Font descarregada %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "S'està muntant el CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "No s'ha pogut descarregar alguns arxius."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "S'està analitzant el disc per a fitxers d'índex...\n"
-#: cmdline/apt-get.cc:2264
-#, 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"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "S'han trobat %i índex de paquets, %i índex de fonts i %i signatures\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "L'ordre de desempaquetar «%s» ha fallat.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Comproveu si el paquet «dpkgdev» està instal·lat.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "L'ordre de construir «%s» ha fallat.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"El disc es diu:\n"
+"«%s»\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Ha fallat el procés fill"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "S'estan copiant les llistes de paquets..."
-#: cmdline/apt-get.cc:2329
-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"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "S'està escrivint una nova llista de fonts\n"
-#: cmdline/apt-get.cc:2357
-#, 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"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Les entrades de la llista de fonts per a aquest disc són:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s no té dependències de construcció.\n"
+msgid "Wrote %i records.\n"
+msgstr "S'han escrit %i registres.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"La dependència %s en %s no es pot satisfer per que no es pot trobar el "
-"paquet %s"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "S'han escrit %i registres, on falten %i fitxers.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"La dependència %s per a %s no es pot satisfer per que cap versió del paquet %"
-"s pot satisfer els requeriments de versions"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"No s'ha pogut satisfer la dependència %s per a %s: El paquet instal·lat %s "
-"és massa nou"
+"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no "
+"coincidents\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Falta el directori de llistes %spartial."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "No es poden processar les dependències de construcció"
+msgid "Preparing %s"
+msgstr "S'està preparant el paquet %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Mòduls suportats:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "S'està desempaquetant %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Forma d'ús: apt-get [opcions] ordre\n"
-" apt-get [opcions] install|remove paq1 [paq2 ...]\n"
-" apt-get [opcions] source paq1 [paq2 ...]\n"
-"\n"
-"apt-get és una simple interfície de línia d'ordres per a\n"
-"descarregar i instal·lar paquets. Les ordres més freqüents\n"
-"són update i install.\n"
-"\n"
-"Ordres:\n"
-" update - Descarrega llistes noves dels paquets\n"
-" upgrade - Realitza una actualització\n"
-" install - Instal·la nous paquets (el paquet serà libc6 no libc6.deb)\n"
-" remove - Elimina paquets\n"
-" source - Descarrega arxius font\n"
-" build-dep - Configura dependències de construcció pels paquets font\n"
-" dist-upgrade - Actualitza la distribució, mireu apt-get(8)\n"
-" dselect-upgrade - Segueix les seleccions de dselect\n"
-" clean - Esborra els fitxers arxiu descarregats\n"
-" autoclean - Esborra els fitxers arxiu descarregats antics\n"
-" check - Verifica que no hi hagi dependències sense satisfer\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda.\n"
-" -q Eixida a la bitàcola - sense indicatiu de progrés\n"
-" -qq Sense eixida, excepte els errors\n"
-" -d Sols descarrega - NO instal·la o desempaqueta arxius\n"
-" -s No actua. Realitza les ordres en mode de simulació\n"
-" -y Assumeix que Sí per a totes les preguntes, fa que no es pregunti\n"
-" -f Intenta seguir si la comprovació d'integritat falla\n"
-" -m Intenta seguir si no es localitzen els arxius\n"
-" -u Mostra una llista dels paquets actualitzats també\n"
-" -b Construeix des del paquet font després de descarregar-lo\n"
-" -V Mostra els números de versió detallada\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de configuració arbitrària, p.ex.\n"
-" -o dir::cache=/tmp\n"
-"Consulteu el manual apt-get(8), sources.list(5) i apt.conf(5)\n"
-"per a més informació i opcions\n"
-" Aquest APT té tots els Poders de Super Vaca.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "S'està preparant per a configurar el paquet %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Obj "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "S'està configurant el paquet %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Des:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "S'ha produït un error en processar el directori %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "S'ha instal·lat el paquet %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "S'està preparant per a l'eliminació del paquet %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB descarregats en %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "S'està eliminant el paquet %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Treballant]"
+msgid "Removed %s"
+msgstr "S'ha eliminat el paquet %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"El medi ha canviat: inseriu el disc amb l'etiqueta\n"
-" «%s»\n"
-"en la unitat «%s» i premeu Intro\n"
+msgid "Preparing to completely remove %s"
+msgstr "S'està preparant per a eliminar completament el paquet %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Registre del paquet desconegut!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "S'ha eliminat completament el paquet %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Ús: apt-sortpkgs [opcions] fitxer1 [fitxer2 ...]\n"
-"\n"
-"apt-sortpkgs és una simple eina per a ordenar fitxers de paquets.\n"
-"L'opció -s s'usa per a indicar quin tipus de fitxer és.\n"
-"\n"
-"Opcions:\n"
-" -h Aquest text d'ajuda.\n"
-" -s Usar l'ordenació de fitxers font\n"
-" -c=? Llegeix aquest fitxer de configuració\n"
-" -o=? Estableix una opció de configuració, p.ex: -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Paràmetre establert incorrecte!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "No s'ha pogut obrir el fitxer %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Premeu Intro per a continuar."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "La connexió s'ha tancat prematurament"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Alguns errors al desempaquetar. Puc configurar"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Línia %d massa llarga (màx %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"els paquets que estan instal·lats. Això pot resultar en errors duplicacats"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"o errors causats per dependències sense satisfer. Aquest està bé, sols els "
-"errors"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"són importants abans d'aquest missatge. Si us plau, arregleu-los i torneu a "
-"executar [I]nstall una altra vegada"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "S'ha emmagatzemat l'etiqueta: %s\n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "S'està fusionant la informació disponible"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "S'han trobat %i índex de paquets, %i índex de fonts i %i signatures\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-04 18:53+0200\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Nemohu číst databázi na cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro "
-"přidávání nových CD."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Chybné CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Balík %s verze %s má nesplněné závislosti:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Nemohu odpojit CD-ROM v %s - možná se stále používá."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk nebyl nalezen."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Soubor nebyl nalezen"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Selhalo vyhodnocení"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Nelze nastavit čas modifikace"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Neplatné URI, lokální URI nesmí začínat na //"
+msgid "Unable to locate package %s"
+msgstr "Nemohu najít balík %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Přihlašuji se"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Celkem názvů balíků: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Nemohu určit jméno druhé strany"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normálních balíků: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Nemohu určit lokální jméno"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Čistě virtuálních balíků: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Server zamítl naše spojení a řekl: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Jednoduchých virtuálních balíků: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER selhal, server řekl: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Smíšených virtuálních balíků: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS selhal, server řekl: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Chybějících: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin "
-"je prázdný."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Celkem různých verzí: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Příkaz '%s' přihlašovacího skriptu selhal, server řekl: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Celkem různých verzí: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE selhal, server řekl: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Celkem závislostí: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Čas spojení vypršel"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Celkem vztahů ver/soubor: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Server uzavřel spojení"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Celkem vztahů ver/soubor: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Chyba čtení"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Celkem poskytnutých mapování: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Odpověď přeplnila buffer."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Celkem globovaných řetězců: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Porušení protokolu"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Celkem místa závislých verzí: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Chyba zápisu"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Celkem jalového místa: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Nemohu vytvořit socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Celkem přiřazeného místa: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Nemohu připojit datový socket, čas spojení vypršel"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Soubor balíku %s je špatně synchronizovaný."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Selhalo"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Musíte zadat právě jeden vzor"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Nemohu připojit pasivní socket."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nebyly nalezeny žádné balíky"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo nezískal naslouchající socket"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Soubory balíku:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Nemohu navázat socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Nemohu naslouchat na socketu"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Nemohu určit jméno socketu"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Vypíchnuté balíky:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Nemohu odeslat příkaz PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nenalezeno)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Neznámá rodina adres %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalovaná verze: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT selhal, server řekl: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(žádná)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Spojení datového socketu vypršelo"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidát: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Nemohu přijmout spojení"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Vypíchnutý balík: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problém s hashováním souboru"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabulka verzí:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Nemohu stáhnout soubor, server řekl '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Datový socket vypršel"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Přenos dat selhal, server řekl '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s pro %s %s zkompilován na %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Dotaz"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Nemohu vyvolat "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Připojuji se k %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Použití: apt-cache [volby] příkaz\n"
+" apt-cache [volby] add soubor1 [soubor2 ...]\n"
+" apt-cache [volby] showpkg balík1 [balík2 ...]\n"
+" apt-cache [volby] showsrc balík1 [balík2 ...]\n"
+"\n"
+"apt-cache je nízkoúrovňový nástroj pro manipulaci se soubory ve\n"
+"vyrovnávací paměti APTu a pro získávání informací o balících.\n"
+"\n"
+"Příkazy:\n"
+" add - Přidá soubor Packages do zdrojové vyrovnávací paměti\n"
+" gencaches - Vybuduje vyrovnávací paměť balíků i zdrojů\n"
+" showpkg - Zobrazí obecné informace o balíku\n"
+" showsrc - Zobrazí zdrojové záznamy\n"
+" stats - Zobrazí základní statistiky\n"
+" dump - Zobrazí celý soubor ve zhuštěné podobě\n"
+" dumpavail - Vytiskne na výstup dostupné balíky\n"
+" unmet - Zobrazí nesplněné závislosti\n"
+" search - V seznamu balíků hledá regulární výraz\n"
+" show - Zobrazí informace o balíku\n"
+" depends - Zobrazí závislosti balíku\n"
+" rdepends - Zobrazí reverzní závislosti balíku\n"
+" pkgnames - Vypíše jména všech balíků\n"
+" dotty - Vygeneruje grafy ve formátu pro GraphVis\n"
+" xvcg - Vygeneruje grafy ve formátu pro xvcg\n"
+" policy - Zobrazí nastavenou politiku\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda.\n"
+" -p=? Vyrovnávací paměť balíků.\n"
+" -s=? Vyrovnávací paměť zdrojů.\n"
+" -q Nezobrazí indikátor postupu.\n"
+" -i U příkazu unmet zobrazí pouze důležité závislosti.\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
+"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Zadejte prosím název tohoto média, např. 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Nemohu vytvořit socket pro %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Vložte prosím médium do mechaniky a stiskněte enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Nemohu navázat spojení na %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Nemohu se připojit k %s:%s (%s), čas spojení vypršel"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenty nejsou v párech"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Nemohu se připojit k %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použití: apt-config [volby] příkaz\n"
+"\n"
+"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n"
+"\n"
+"Příkazy:\n"
+" shell - Shellový režim\n"
+" dump - Zobrazí nastavení\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda.\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Připojuji se k %s"
+msgid "%s not a valid DEB package."
+msgstr "%s není platný DEB balík."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nemohu zjistit '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použití: apt-extracttemplates soubor1 [soubor2 ...]\n"
+"\n"
+"apt-extracttemplates umí z balíků vytáhnout konfigurační skripty a šablony\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda.\n"
+" -t Nastaví dočasný adresář\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Dočasné selhání při zjišťování '%s'"
+msgid "Unable to write to %s"
+msgstr "Nemohu zapsat do %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Něco hodně ošklivého se přihodilo při zjišťování '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Nemohu určit verzi programu debconf. Je debconf nainstalován?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Nemohu se připojit k %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Seznam rozšíření balíku je příliš dlouhý"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Nemohu přistoupit ke klíčence: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Seznam argumentů Acquire::gpgv::Options je příliš dlouhý. Končím."
+msgid "Error processing directory %s"
+msgstr "Chyba zpracování adresáře %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Seznam zdrojových rozšíření je příliš dlouhý"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Byl zaznamenán nejméně jeden neplatný podpis. "
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Chyba při zapisování hlavičky do souboru"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Nepodařilo se spustit '%s' pro ověření podpisu (je gnupg nainstalováno?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Neznámá chyba při spouštění gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Následující podpisy jsou neplatné:\n"
+msgid "Error processing contents %s"
+msgstr "Chyba při zpracovávání obsahu %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný "
-"klíč:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Nemohu vyhodnotit %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Nemohu otevřít rouru pro %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Chyba čtení z procesu %s"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Čekám na hlavičky"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Získal jsem jednu řádku hlavičky přes %u znaků"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Chybná hlavička"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Použití: apt-ftparchive [volby] příkaz\n"
+"Příkazy: packages binárnícesta [souboroverride [prefixcesty]]\n"
+" sources zdrojovácesta [souboroverride [prefixcesty]]\n"
+" contents cesta\n"
+" release cesta\n"
+" generate konfiguračnísoubor [skupiny]\n"
+" clean konfiguračnísoubor\n"
+"\n"
+"apt-ftparchive generuje indexové soubory debianích archivů. Podporuje\n"
+"několik režimů vytváření - od plně automatického až po funkční ekvivalent\n"
+"příkazů dpkg-scanpackages a dpkg-scansources.\n"
+"\n"
+"apt-ftparchive vytvoří ze stromu .deb souborů soubory Packages. Soubor\n"
+"Packages obsahuje kromě všech kontrolních polí každého balíku také jeho\n"
+"velikost a MD5 součet. Podporován je také soubor override, kterým můžete \n"
+"vynutit hodnoty polí Priority a Section.\n"
+"\n"
+"Podobně umí apt-ftparchive vygenerovat ze stromu souborů .dsc soubory\n"
+"Sources. Volbou --source-override můžete zadat zdrojový soubor override.\n"
+"\n"
+"Příkazy 'packages' a 'sources' by se měly spouštět z kořene stromu.\n"
+"BinárníCesta by měla ukazovat na začátek rekurzivního hledání a soubor \n"
+"override by měl obsahovat příznaky pro přepis. PrefixCesty, pokud je\n"
+"přítomen, je přidán do polí Filename.\n"
+"Reálný příklad na archivu Debianu:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda\n"
+" --md5 Vygeneruje kontrolní MD5\n"
+" -s=? Zdrojový soubor override\n"
+" -q Tichý režim\n"
+" -d=? Vybere volitelnou databázi pro vyrovnávací paměť\n"
+" --no-delink Povolí ladicí režim\n"
+" --contents Vygeneruje soubor Contents\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Http server poslal neplatnou hlavičku odpovědi"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Žádný výběr nevyhověl"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Http server poslal neplatnou hlavičku Content-Length"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Některé soubory chybí v balíkovém souboru skupiny %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Http server poslal neplatnou hlavičku Content-Range"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB je porušená, soubor přejmenován na %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Tento HTTP server má porouchanou podporu rozsahů"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB je stará, zkouším aktualizovat %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Neznámý formát data"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Formát databáze je neplatný. Pokud jste přešli ze starší verze apt, databázi "
+"prosím odstraňte a poté ji znovu vytvořte."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Výběr selhal"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Nemohu otevřít DB soubor %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Čas spojení vypršel"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Nemohu vyhodnotit %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Chyba zápisu do výstupního souboru"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archiv nemá kontrolní záznam"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Chyba zápisu do souboru"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Nemohu získat kurzor"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Chyba zápisu do souboru"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Nemohu číst adresář %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Nemohu vyhodnotit %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Chyba čtení ze serveru"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Špatné datové záhlaví"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Spojení selhalo"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Chyby se týkají souboru "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Vnitřní chyba"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Chyba při zjišťování %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Nemohu provést mmap prázdného souboru"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Průchod stromem selhal"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Nešlo mmapovat %lu bajtů"
+msgid "Failed to open %s"
+msgstr "Nelze otevřít %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Výběr %s nenalezen"
+msgid " DeLink %s [%s]\n"
+msgstr "Odlinkování %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Nerozpoznaná zkratka typu: '%c'"
+msgid "Failed to readlink %s"
+msgstr "Nemohu přečíst link %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Otevírám konfigurační soubor %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Řádek %d je příliš dlouhý (max %d)"
+msgid "Failed to unlink %s"
+msgstr "Nemohu odlinkovat %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem."
+msgid "*** Failed to link %s to %s"
+msgstr "*** Nezdařilo se slinkovat %s s %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaktická chyba %s:%u: Zkomolená značka"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Odlinkovací limit %sB dosažen.\n"
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archiv nemá pole Package"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni"
+msgid " %s has no override entry\n"
+msgstr " %s nemá žádnou položku pro override\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)"
+msgid " %s maintainer is %s not %s\n"
+msgstr " správce %s je %s, ne %s\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud"
+msgid " %s has no source override entry\n"
+msgstr " %s nemá žádnou zdrojovou položku pro override\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva '%s'"
+msgid " %s has no binary override entry either\n"
+msgstr " %s nemá ani žádnou binární položku pro override\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí"
+msgid "Internal error, could not locate member %s"
+msgstr "Vnitřní chyba, nemohu najít část %s"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Nemohu číst %s"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Selhal pokus o přidělení paměti"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Chyba!"
+msgid "Unable to open %s"
+msgstr "Nemohu otevřít %s"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Hotovo"
+msgid "Malformed override %s line %lu #1"
+msgstr "Zkomolený soubor %s, řádek %lu #1"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Parametr příkazové řádky '%c' [z %s] je neznámý"
+msgid "Malformed override %s line %lu #2"
+msgstr "Zkomolený soubor %s, řádek %lu #2"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Nerozumím parametru %s příkazové řádky"
+msgid "Malformed override %s line %lu #3"
+msgstr "Zkomolený soubor %s, řádek %lu #3"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Parametr příkazové řádky %s není pravdivostní hodnota"
+msgid "Failed to read the override file %s"
+msgstr "Nezdařilo se přečíst override soubor %s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Volba %s vyžaduje argument."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Neznámý kompresní algoritmus '%s'"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>."
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimovaný výstup %s potřebuje kompresní sadu"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne '%s'"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Selhalo vytvoření meziprocesové roury k podprocesu"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Volba '%s' je příliš dlouhá"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Selhalo vytvoření FILE*"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Nechápu význam %s, zkuste true nebo false."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Volání fork() se nezdařilo"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Neplatná operace %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Komprimovat potomka"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Nelze vyhodnotit přípojný bod %s"
+msgid "Internal error, failed to create %s"
+msgstr "Interní chyba, nezdařilo se vytvořit %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Nemohu přejít do %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Nemohu vytvořit podproces IPC"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Nezdařilo se vyhodnotit cdrom"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Nezdařilo se spustit kompresor "
-#: apt-pkg/contrib/fileutl.cc:82
-#, 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í"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekompresor"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Nešlo otevřít zámkový soubor %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "V/V operace s podprocesem/souborem selhala"
-#: apt-pkg/contrib/fileutl.cc:105
-#, 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"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Chyba čtení při výpočtu MD5"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not get lock %s"
-msgstr "Nemohu získat zámek %s"
+msgid "Problem unlinking %s"
+msgstr "Problém s odlinkováním %s"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Čekal jsem na %s, ale nebyl tam"
+msgid "Failed to rename %s to %s"
+msgstr "Selhalo přejmenování %s na %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Podproces %s obdržel chybu segmentace."
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Podproces %s vrátil chybový kód (%u)"
+msgid "Regex compilation error - %s"
+msgstr "Chyba při kompilaci regulárního výrazu - %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Podproces %s neočekávaně skončil"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Následující balíky mají nesplněné závislosti:"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Could not open file %s"
-msgstr "Nemohu otevřít soubor %s"
+msgid "but %s is installed"
+msgstr "ale %s je nainstalován"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "čtení, stále mám k přečtení %lu, ale už nic nezbývá"
+msgid "but %s is to be installed"
+msgstr "ale %s se bude instalovat"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "zápis, stále mám %lu k zápisu, ale nejde to"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ale nedá se nainstalovat"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problém při zavírání souboru"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ale je to virtuální balík"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problém při odstraňování souboru"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ale není nainstalovaný"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problém při synchronizování souboru"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ale nebude se instalovat"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Cache balíků je prázdná"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " nebo"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Cache soubor balíků je poškozen"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Následující NOVÉ balíky budou nainstalovány:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Cache soubor balíků je v nekompatibilní verzi"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Následující balíky budou ODSTRANĚNY:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Tento APT nepodporuje systém pro správu verzí '%s'"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Následující balíky jsou podrženy v aktuální verzi:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Cache balíků byla vytvořena pro jinou architekturu"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Následující balíky budou aktualizovány:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Závisí na"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Následující balíky budou DEGRADOVÁNY:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Předzávisí na"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Následující podržené balíky budou změněny:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Navrhuje"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (kvůli %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Doporučuje"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n"
+"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Koliduje s"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizováno, %lu nově instalováno, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Nahrazuje"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalováno, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Zastarává"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu degradováno, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu k odstranění a %lu neaktualizováno.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "důležitý"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu instalováno nebo odstraněno pouze částečně.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "vyžadovaný"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Opravuji závislosti..."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standardní"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " selhalo."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "volitelný"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Nemohu opravit závislosti"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Nemohu minimalizovat sadu pro aktualizaci"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Vytvářím strom závislostí"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Hotovo"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandidátské verze"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Pro opravení můžete spustit `apt-get -f install'."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generování závislostí"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nesplněné závislosti. Zkuste použít -f."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Slučuji dostupné informace"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Nelze otevřít %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Autentizační varování potlačeno.\n"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Selhal zápis souboru %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Instalovat tyto balíky bez ověření [y/N]? "
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Nelze zpracovat soubor %s (1)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Některé balíky nemohly být autentizovány"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Nelze zpracovat soubor %s (2)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Vnitřní chyba, třídění nedoběhlo do konce"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Nemohu zamknout adresář pro stahování"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Nelze přečíst seznam zdrojů."
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Otevírám %s"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Jak podivné... velikosti nesouhlasí, ohlaste to na apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Potřebuji stáhnout %sB/%sB archivů.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Potřebuji stáhnout %sB archivů.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po rozbalení bude na disku použito dalších %sB.\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po rozbalení bude na disku uvolněno %sB.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typ '%s' na řádce %u v seznamu zdrojů %s není známý"
+msgid "Couldn't determine free space in %s"
+msgstr "Nemohu určit volné místo v %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)"
+msgid "You don't have enough free space in %s."
+msgstr "V %s nemáte dostatek volného místa."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Udáno 'pouze triviální', ovšem toto není triviální operace."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ano, udělej to tak, jak říkám!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli "
-"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně "
-"chcete udělat, aktivujte možnost APT::Force-LoopBreak."
+"Chystáte se vykonat něco potenciálně škodlivého.\n"
+"Pro pokračování opište frázi '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indexový typ souboru '%s' není podporován"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Přerušeno."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Chcete pokračovat [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv."
+msgid "Failed to fetch %s %s\n"
+msgstr "Selhalo stažení %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Některé soubory nemohly být staženy"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Stahování dokončeno v režimu pouze stáhnout"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno "
-"podrženými balíky."
+"Nemohu stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --"
+"fix-missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Nemohu opravit problémy, některé balíky držíte v porouchaném stavu."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing a výměna média nejsou momentálně podporovány"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Adresář seznamů %spartial chybí."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Nemohu opravit chybějící balíky."
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Přerušuji instalaci."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Archivní adresář %spartial chybí."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Pozn: Vybírám %s místo %s\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Stahuji soubor %li z %li (%s zbývá)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Přeskakuji %s, protože je již nainstalován.\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Stahuji soubor %li z %li"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Balík %s není nainstalován, nelze tedy odstranit\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ovladač metody %s nemohl být nalezen."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Balík %s je virtuální balík poskytovaný:\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr "[Instalovaný]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Měli byste explicitně vybrat jeden k instalaci."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoda %s nebyla spuštěna správně"
+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"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Nicméně následující balíky jej nahrazují:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Vložte prosím disk nazvaný '%s' do mechaniky '%s' a stiskněte enter."
+msgid "Package %s has no installation candidate"
+msgstr "Balík %s nemá kandidáta pro instalaci"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Balíčkovací systém '%s' není podporován"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Reinstalace %s není možná, protože nelze stáhnout.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Nebylo možno určit vhodný typ balíčkovacího systému"
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s je již nejnovější verze.\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Unable to stat %s."
-msgstr "Nebylo možno vyhodnotit %s."
+msgid "Release '%s' for '%s' was not found"
+msgstr "Vydání '%s' pro '%s' nebylo nalezeno"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Do sources.list musíte zadat 'zdrojové' URI"
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Verze '%s' pro '%s' nebyla nalezena"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Nelze přečíst seznam zdrojů."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Vybraná verze %s (%s) pro %s\n"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Příkaz update neakceptuje žádné argumenty"
+
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Nemohu uzamknout list adresář"
+
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny."
+"Některé indexové soubory se nepodařilo stáhnout, jsou ignorovány, nebo jsou "
+"použity starší verze."
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Neplatný záznam v souboru preferencí, žádné záhlaví balíku"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Následující NOVÉ balíky budou nainstalovány:"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Nerozumím vypíchnutí typu %s"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Cache má nekompatibilní systém správy verzí"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+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-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Při zpracování %s se objevila chyba (NewPackage)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Při zpracování %s se objevila chyba (UsePackage1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Vnitřní chyba, AllUpgrade pokazil věci"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
+msgid "Couldn't find task %s"
+msgstr "Nemohu najít balík %s"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Při zpracování %s se objevila chyba (UsePackage2)"
+msgid "Couldn't find package %s"
+msgstr "Nemohu najít balík %s"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Pozn: vybírám %s pro regulární výraz '%s'\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Při zpracování %s se objevila chyba (NewVersion1)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ale %s se bude instalovat"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Při zpracování %s se objevila chyba (UsePackage3)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Pro opravení následujících můžete spustit `apt-get -f install':"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Při zpracování %s se objevila chyba (NewVersion2)"
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"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-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Wow, překročili jste počet jmen balíků, které tato APT zvládá zpracovat."
+"Protože jste požádali pouze o jednoduchou operaci, je téměř jisté, že\n"
+"balík není instalovatelný a měl byste o tom zaslat hlášení o chybě\n"
+"(bug report)."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Wow, překročili jste počet verzí, které tato APT zvládá zpracovat."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Poškozené balíky"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Wow, překročili jste počet verzí, které tato APT zvládá zpracovat."
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Následující extra balíky budou instalovány:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr ""
-"Wow, překročili jste počet závislostí, které tato APT zvládá zpracovat."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Navrhované balíky:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Doporučované balíky:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Propočítávám aktualizaci... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Selhalo"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Hotovo"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
+
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Chyba při zpracování %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Nemohu najít zdrojový balík pro %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Při zpracování %s se objevila chyba (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Přeskakuji dříve stažený soubor '%s'\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Při zpracování závislostí nebyl nalezen balík %s %s"
+msgid "You don't have enough free space in %s"
+msgstr "Na %s nemáte dostatek volného místa"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Čtu seznamy balíků"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Collecting File poskytuje"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Stáhnout zdroj %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Stažení některých archivů selhalo."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Nemohu zapsat do %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Chyba IO při ukládání zdrojové cache"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Příkaz pro rozbalení '%s' selhal.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "přejmenování selhalo, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Zkontrolujte, zda je nainstalován balíček 'dpkg-dev'.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Neshoda MD5 součtů"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Příkaz pro sestavení '%s' selhal.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Neshoda MD5 součtů"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Synovský proces selhal"
-#: apt-pkg/acquire-item.cc:1091
-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"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti "
+"pro sestavení"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, 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 ""
-"Nebyl jsem schopen nalézt soubor s balíkem %s. To by mohlo znamenat, že "
-"tento balík je třeba opravit ručně (kvůli chybějící architektuře)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Nemohu získat závislosti pro sestavení %s"
+
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s nemá žádné závislosti pro sestavení.\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Nebyl jsem schopen nalézt soubor s balíkem %s. Asi budete muset tento balík "
-"opravit ručně."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%s závislost pro %s nemůže být splněna, protože balík %s nebyl nalezen"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Velikosti nesouhlasí"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Blok výrobce %s neobsahuje otisk klíče"
+"%s závislost pro %s nemůže být splněna protože není k dispozici verze balíku "
+"%s, která odpovídá požadavku na verzi"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-"Používám přípojný bod %s\n"
-"Připojuji CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Rozpoznávám... "
+"Selhalo splnění %s závislosti pro %s: Instalovaný balík %s je příliš nový"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Uložený název: %s \n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Selhalo splnění %s závislosti pro %s: %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Používám přípojný bod %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Odpojuji CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Čekám na disk...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Připojuji CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Hledám na disku indexové soubory...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Nalezl jsem indexy balíků (%i), indexy zdrojů (%i) a podpisy (%i)\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Závislosti pro sestavení %s nemohly být splněny."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Uložený název: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Chyba při zpracování závislostí pro sestavení"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Nejedná se o platné jméno, zkuste to znovu.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Podporované moduly:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Tento disk se nazývá: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopíruji seznamy balíků..."
+"Použití: apt-get [volby] příkaz\n"
+" apt-get [volby] install|remove balík1 [balík2 ...]\n"
+" apt-get [volby] source balík1 [balík2 ...]\n"
+"\n"
+"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n"
+"balíků. Nejpoužívanější příkazy jsou update a install.\n"
+"\n"
+"Příkazy:\n"
+" update - Získá seznam nových balíků\n"
+" upgrade - Provede aktualizaci\n"
+" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n"
+" remove - Odstraní balíky\n"
+" source - Stáhne zdrojové archivy\n"
+" build-dep - Pro zdrojové balíky nastaví build-dependencies\n"
+" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n"
+" dselect-upgrade - Řídí se podle výběru v dselectu\n"
+" clean - Smaže stažené archivy\n"
+" autoclean - Smaže staré stažené archivy\n"
+" check - Ověří, zda se nevyskytují poškozené závislosti\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda\n"
+" -q Nezobrazí indikátor postupu - pro záznam\n"
+" -qq Nezobrazí nic než chyby\n"
+" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n"
+" -s Pouze simuluje prováděné akce\n"
+" -y Na všechny otázky odpovídá Ano\n"
+" -f Zkusí pokračovat, i když selže kontrola integrity\n"
+" -m Zkusí pokračovat, i když se nepodaří najít archivy\n"
+" -u Zobrazí také seznam aktualizovaných balíků\n"
+" -b Po stažení zdrojového balíku jej i zkompiluje\n"
+" -V Zobrazí čísla verzí\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
+"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n"
+"a apt.conf(5).\n"
+" Tato APT má schopnosti svaté krávy.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Zapisuji nový seznam balíků\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Cíl "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Seznamy zdrojů na tomto disku jsou:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Mám:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Odpojuji CD-ROM..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Zapsal jsem %i záznamů.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Zapsal jsem %i záznamů s chybějícími soubory (%i).\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Staženo %sB za %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Zapsal jsem %i záznamů s nesouhlasícími soubory (%i).\n"
+msgid " [Working]"
+msgstr " [Pracuji]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"Zapsal jsem %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n"
+"Výměna média: Vložte disk nazvaný\n"
+" '%s'\n"
+"do mechaniky '%s' a stiskněte enter\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Adresář seznamů %spartial chybí."
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Neznámý záznam o balíku!"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Připravuji %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použití: apt-sortpkgs [volby] soubor1 [soubor2 ...]\n"
+"\n"
+"apt-sortpkgs je jednoduchý nástroj pro setřídění souborů Packages.\n"
+"Volbou -s volíte typ souboru.\n"
+"\n"
+"Volby:\n"
+" -h Tato nápověda\n"
+" -s Setřídí zdrojový soubor\n"
+" -c=? Načte tento konfigurační soubor\n"
+" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Rozbaluji %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Chybné standardní nastavení!"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Připravuji nastavení %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Pro pokračování stiskněte enter."
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Nastavuji %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Během rozbalování se vyskytly chyby. Zkusím teď nakonfigurovat"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Chyba zpracování adresáře %s"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "balíky, které se nainstalovaly. To může způsobit chybové hlášky"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Nainstalován %s"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Připravuji odstranění %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Odstraňuji %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Odstraněn %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Připravuji úplné odstranění %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Kompletně odstraněn %s"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Nemohu otevřít soubor %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Selhalo vytvoření meziprocesové roury k podprocesu"
+#: dselect/install:103
+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"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Spojení bylo předčasně ukončeno"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Slučuji dostupné informace"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Diverzní cesta je příliš dlouhá"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Selhalo přejmenování %s na %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Soubor %s/%s přepisuje ten z balíku %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Nemohu číst %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Adresáře info a temp musí být na stejném souborovém systému"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Čtu seznamy balíků"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Nezpracovatelný kontrolní soubor"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Nemohu najít balík %s"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Celkem názvů balíků: "
+msgid "Unable to read the cdrom database %s"
+msgstr "Nemohu číst databázi na cdrom %s"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normálních balíků: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro "
+"přidávání nových CD."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Čistě virtuálních balíků: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Chybné CD"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Jednoduchých virtuálních balíků: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Nemohu odpojit CD-ROM v %s - možná se stále používá."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Smíšených virtuálních balíků: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk nebyl nalezen."
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Chybějících: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Soubor nebyl nalezen"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Celkem různých verzí: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Selhalo vyhodnocení"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Celkem různých verzí: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Nelze nastavit čas modifikace"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Celkem závislostí: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Neplatné URI, lokální URI nesmí začínat na //"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Celkem vztahů ver/soubor: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Přihlašuji se"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Celkem vztahů ver/soubor: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Nemohu určit jméno druhé strany"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Celkem poskytnutých mapování: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Nemohu určit lokální jméno"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Celkem globovaných řetězců: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Server zamítl naše spojení a řekl: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Celkem místa závislých verzí: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER selhal, server řekl: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Celkem jalového místa: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS selhal, server řekl: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Celkem přiřazeného místa: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin "
+"je prázdný."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Soubor balíku %s je špatně synchronizovaný."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Příkaz '%s' přihlašovacího skriptu selhal, server řekl: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Musíte zadat právě jeden vzor"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE selhal, server řekl: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nebyly nalezeny žádné balíky"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Čas spojení vypršel"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Soubory balíku:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Server uzavřel spojení"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Chyba čtení"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Odpověď přeplnila buffer."
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Vypíchnuté balíky:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Porušení protokolu"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nenalezeno)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Chyba zápisu"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalovaná verze: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Nemohu vytvořit socket"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(žádná)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Nemohu připojit datový socket, čas spojení vypršel"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidát: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Nemohu připojit pasivní socket."
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Vypíchnutý balík: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo nezískal naslouchající socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabulka verzí:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Nemohu navázat socket"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Nemohu naslouchat na socketu"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s pro %s %s zkompilován na %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Nemohu určit jméno socketu"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Použití: apt-cache [volby] příkaz\n"
-" apt-cache [volby] add soubor1 [soubor2 ...]\n"
-" apt-cache [volby] showpkg balík1 [balík2 ...]\n"
-" apt-cache [volby] showsrc balík1 [balík2 ...]\n"
-"\n"
-"apt-cache je nízkoúrovňový nástroj pro manipulaci se soubory ve\n"
-"vyrovnávací paměti APTu a pro získávání informací o balících.\n"
-"\n"
-"Příkazy:\n"
-" add - Přidá soubor Packages do zdrojové vyrovnávací paměti\n"
-" gencaches - Vybuduje vyrovnávací paměť balíků i zdrojů\n"
-" showpkg - Zobrazí obecné informace o balíku\n"
-" showsrc - Zobrazí zdrojové záznamy\n"
-" stats - Zobrazí základní statistiky\n"
-" dump - Zobrazí celý soubor ve zhuštěné podobě\n"
-" dumpavail - Vytiskne na výstup dostupné balíky\n"
-" unmet - Zobrazí nesplněné závislosti\n"
-" search - V seznamu balíků hledá regulární výraz\n"
-" show - Zobrazí informace o balíku\n"
-" depends - Zobrazí závislosti balíku\n"
-" rdepends - Zobrazí reverzní závislosti balíku\n"
-" pkgnames - Vypíše jména všech balíků\n"
-" dotty - Vygeneruje grafy ve formátu pro GraphVis\n"
-" xvcg - Vygeneruje grafy ve formátu pro xvcg\n"
-" policy - Zobrazí nastavenou politiku\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda.\n"
-" -p=? Vyrovnávací paměť balíků.\n"
-" -s=? Vyrovnávací paměť zdrojů.\n"
-" -q Nezobrazí indikátor postupu.\n"
-" -i U příkazu unmet zobrazí pouze důležité závislosti.\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Nemohu odeslat příkaz PORT"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Zadejte prosím název tohoto média, např. 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Neznámá rodina adres %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Vložte prosím médium do mechaniky a stiskněte enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT selhal, server řekl: %s"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Spojení datového socketu vypršelo"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenty nejsou v párech"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Nemohu přijmout spojení"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Použití: apt-config [volby] příkaz\n"
-"\n"
-"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n"
-"\n"
-"Příkazy:\n"
-" shell - Shellový režim\n"
-" dump - Zobrazí nastavení\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda.\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problém s hashováním souboru"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s není platný DEB balík."
-
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Použití: apt-extracttemplates soubor1 [soubor2 ...]\n"
-"\n"
-"apt-extracttemplates umí z balíků vytáhnout konfigurační skripty a šablony\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda.\n"
-" -t Nastaví dočasný adresář\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Nemohu určit verzi programu debconf. Je debconf nainstalován?"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Nemohu stáhnout soubor, server řekl '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Seznam rozšíření balíku je příliš dlouhý"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Datový socket vypršel"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing directory %s"
-msgstr "Chyba zpracování adresáře %s"
+msgid "Data transfer failed, server said '%s'"
+msgstr "Přenos dat selhal, server řekl '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Seznam zdrojových rozšíření je příliš dlouhý"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Dotaz"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Chyba při zapisování hlavičky do souboru"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Nemohu vyvolat "
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing contents %s"
-msgstr "Chyba při zpracovávání obsahu %s"
+msgid "Connecting to %s (%s)"
+msgstr "Připojuji se k %s (%s)"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Použití: apt-ftparchive [volby] příkaz\n"
-"Příkazy: packages binárnícesta [souboroverride [prefixcesty]]\n"
-" sources zdrojovácesta [souboroverride [prefixcesty]]\n"
-" contents cesta\n"
-" release cesta\n"
-" generate konfiguračnísoubor [skupiny]\n"
-" clean konfiguračnísoubor\n"
-"\n"
-"apt-ftparchive generuje indexové soubory debianích archivů. Podporuje\n"
-"několik režimů vytváření - od plně automatického až po funkční ekvivalent\n"
-"příkazů dpkg-scanpackages a dpkg-scansources.\n"
-"\n"
-"apt-ftparchive vytvoří ze stromu .deb souborů soubory Packages. Soubor\n"
-"Packages obsahuje kromě všech kontrolních polí každého balíku také jeho\n"
-"velikost a MD5 součet. Podporován je také soubor override, kterým můžete \n"
-"vynutit hodnoty polí Priority a Section.\n"
-"\n"
-"Podobně umí apt-ftparchive vygenerovat ze stromu souborů .dsc soubory\n"
-"Sources. Volbou --source-override můžete zadat zdrojový soubor override.\n"
-"\n"
-"Příkazy 'packages' a 'sources' by se měly spouštět z kořene stromu.\n"
-"BinárníCesta by měla ukazovat na začátek rekurzivního hledání a soubor \n"
-"override by měl obsahovat příznaky pro přepis. PrefixCesty, pokud je\n"
-"přítomen, je přidán do polí Filename.\n"
-"Reálný příklad na archivu Debianu:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda\n"
-" --md5 Vygeneruje kontrolní MD5\n"
-" -s=? Zdrojový soubor override\n"
-" -q Tichý režim\n"
-" -d=? Vybere volitelnou databázi pro vyrovnávací paměť\n"
-" --no-delink Povolí ladicí režim\n"
-" --contents Vygeneruje soubor Contents\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Žádný výběr nevyhověl"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Nemohu vytvořit socket pro %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:86
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Některé soubory chybí v balíkovém souboru skupiny %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Nemohu navázat spojení na %s:%s (%s)."
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:93
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB je porušená, soubor přejmenován na %s.old"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Nemohu se připojit k %s:%s (%s), čas spojení vypršel"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:108
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB je stará, zkouším aktualizovat %s"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Nemohu se připojit k %s:%s (%s)."
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"Formát databáze je neplatný. Pokud jste přešli ze starší verze apt, databázi "
-"prosím odstraňte a poté ji znovu vytvořte."
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Připojuji se k %s"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:167
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Nemohu otevřít DB soubor %s: %s"
+msgid "Could not resolve '%s'"
+msgstr "Nemohu zjistit '%s'"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archiv nemá kontrolní záznam"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Dočasné selhání při zjišťování '%s'"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Nemohu získat kurzor"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Něco hodně ošklivého se přihodilo při zjišťování '%s:%s' (%i)"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:223
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Nemohu číst adresář %s\n"
+msgid "Unable to connect to %s %s:"
+msgstr "Nemohu se připojit k %s %s:"
-#: ftparchive/writer.cc:81
+#: methods/gpgv.cc:65
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Nemohu vyhodnotit %s\n"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Nemohu přistoupit ke klíčence: '%s'"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Seznam argumentů Acquire::gpgv::Options je příliš dlouhý. Končím."
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Chyby se týkají souboru "
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Byl zaznamenán nejméně jeden neplatný podpis. "
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Chyba při zjišťování %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Nepodařilo se spustit '%s' pro ověření podpisu (je gnupg nainstalováno?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Průchod stromem selhal"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Neznámá chyba při spouštění gpgv"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Následující podpisy jsou neplatné:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný "
+"klíč:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "Nelze otevřít %s"
+msgid "Couldn't open pipe for %s"
+msgstr "Nemohu otevřít rouru pro %s"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "Odlinkování %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "Chyba čtení z procesu %s"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Čekám na hlavičky"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Nemohu přečíst link %s"
+msgid "Got a single header line over %u chars"
+msgstr "Získal jsem jednu řádku hlavičky přes %u znaků"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Chybná hlavička"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Http server poslal neplatnou hlavičku odpovědi"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Http server poslal neplatnou hlavičku Content-Length"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Http server poslal neplatnou hlavičku Content-Range"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Tento HTTP server má porouchanou podporu rozsahů"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Neznámý formát data"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Výběr selhal"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Čas spojení vypršel"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Chyba zápisu do výstupního souboru"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Chyba zápisu do souboru"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Chyba zápisu do souboru"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Chyba čtení ze serveru"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Špatné datové záhlaví"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Spojení selhalo"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Vnitřní chyba"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Nemohu provést mmap prázdného souboru"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Nemohu odlinkovat %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Nešlo mmapovat %lu bajtů"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Nezdařilo se slinkovat %s s %s"
+msgid "Selection %s not found"
+msgstr "Výběr %s nenalezen"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Odlinkovací limit %sB dosažen.\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Nerozpoznaná zkratka typu: '%c'"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archiv nemá pole Package"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "Otevírám konfigurační soubor %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Řádek %d je příliš dlouhý (max %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nemá žádnou položku pro override\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " správce %s je %s, ne %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaktická chyba %s:%u: Zkomolená značka"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nemá žádnou zdrojovou položku pro override\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s nemá ani žádnou binární položku pro override\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Vnitřní chyba, nemohu najít část %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Selhal pokus o přidělení paměti"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Nemohu otevřít %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Zkomolený soubor %s, řádek %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Zkomolený soubor %s, řádek %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Chyba!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Zkomolený soubor %s, řádek %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Hotovo"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Nezdařilo se přečíst override soubor %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Parametr příkazové řádky '%c' [z %s] je neznámý"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Neznámý kompresní algoritmus '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Nerozumím parametru %s příkazové řádky"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimovaný výstup %s potřebuje kompresní sadu"
+msgid "Command line option %s is not boolean"
+msgstr "Parametr příkazové řádky %s není pravdivostní hodnota"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Selhalo vytvoření FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Volba %s vyžaduje argument."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Volání fork() se nezdařilo"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Komprimovat potomka"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Interní chyba, nezdařilo se vytvořit %s"
+msgid "Option '%s' is too long"
+msgstr "Volba '%s' je příliš dlouhá"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Nemohu vytvořit podproces IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Nechápu význam %s, zkuste true nebo false."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Nezdařilo se spustit kompresor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Neplatná operace %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekompresor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Nelze vyhodnotit přípojný bod %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "V/V operace s podprocesem/souborem selhala"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Nemohu přejít do %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Chyba čtení při výpočtu MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Nezdařilo se vyhodnotit cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problém s odlinkováním %s"
+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í"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Nešlo otevřít zámkový soubor %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Chyba při kompilaci regulárního výrazu - %s"
+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"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Následující balíky mají nesplněné závislosti:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Nemohu získat zámek %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "ale %s je nainstalován"
+msgid "Waited for %s but it wasn't there"
+msgstr "Čekal jsem na %s, ale nebyl tam"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "ale %s se bude instalovat"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Podproces %s obdržel chybu segmentace."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ale nedá se nainstalovat"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Podproces %s vrátil chybový kód (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ale je to virtuální balík"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Podproces %s neočekávaně skončil"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ale není nainstalovaný"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Nemohu otevřít soubor %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ale nebude se instalovat"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "čtení, stále mám k přečtení %lu, ale už nic nezbývá"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " nebo"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "zápis, stále mám %lu k zápisu, ale nejde to"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Následující NOVÉ balíky budou nainstalovány:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problém při zavírání souboru"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Následující balíky budou ODSTRANĚNY:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problém při odstraňování souboru"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Následující balíky jsou podrženy v aktuální verzi:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problém při synchronizování souboru"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Následující balíky budou aktualizovány:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Cache balíků je prázdná"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Následující balíky budou DEGRADOVÁNY:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Cache soubor balíků je poškozen"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Následující podržené balíky budou změněny:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Cache soubor balíků je v nekompatibilní verzi"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (kvůli %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Tento APT nepodporuje systém pro správu verzí '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n"
-"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Cache balíků byla vytvořena pro jinou architekturu"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizováno, %lu nově instalováno, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Závisí na"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalováno, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Předzávisí na"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu degradováno, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Navrhuje"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu k odstranění a %lu neaktualizováno.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Doporučuje"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu instalováno nebo odstraněno pouze částečně.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Koliduje s"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Opravuji závislosti..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Nahrazuje"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " selhalo."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Zastarává"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Nemohu opravit závislosti"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Nemohu minimalizovat sadu pro aktualizaci"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "důležitý"
+
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "vyžadovaný"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Hotovo"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standardní"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Pro opravení můžete spustit `apt-get -f install'."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "volitelný"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nesplněné závislosti. Zkuste použít -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Vytvářím strom závislostí"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Autentizační varování potlačeno.\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandidátské verze"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Instalovat tyto balíky bez ověření [y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generování závislostí"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Některé balíky nemohly být autentizovány"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Slučuji dostupné informace"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Nelze otevřít %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Selhal zápis souboru %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Nelze zpracovat soubor %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Vnitřní chyba, třídění nedoběhlo do konce"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Nelze zpracovat soubor %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Nemohu zamknout adresář pro stahování"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Jak podivné... velikosti nesouhlasí, ohlaste to na apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Potřebuji stáhnout %sB/%sB archivů.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Potřebuji stáhnout %sB archivů.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Po rozbalení bude na disku použito dalších %sB.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Po rozbalení bude na disku uvolněno %sB.\n"
+msgid "Opening %s"
+msgstr "Otevírám %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nemohu určit volné místo v %s"
+msgid "Line %u too long in source list %s."
+msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "V %s nemáte dostatek volného místa."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Udáno 'pouze triviální', ovšem toto není triviální operace."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typ '%s' na řádce %u v seznamu zdrojů %s není známý"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ano, udělej to tak, jak říkám!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"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:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Přerušeno."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Chcete pokračovat [Y/n]? "
+"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli "
+"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně "
+"chcete udělat, aktivujte možnost APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Selhalo stažení %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Některé soubory nemohly být staženy"
+msgid "Index file type '%s' is not supported"
+msgstr "Indexový typ souboru '%s' není podporován"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Stahování dokončeno v režimu pouze stáhnout"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Nemohu stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --"
-"fix-missing?"
+"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno "
+"podrženými balíky."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing a výměna média nejsou momentálně podporovány"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Nemohu opravit problémy, některé balíky držíte v porouchaném stavu."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Nemohu opravit chybějící balíky."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Adresář seznamů %spartial chybí."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Přerušuji instalaci."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Archivní adresář %spartial chybí."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Pozn: Vybírám %s místo %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Stahuji soubor %li z %li (%s zbývá)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, 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"
+msgid "Retrieving file %li of %li"
+msgstr "Stahuji soubor %li z %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Balík %s není nainstalován, nelze tedy odstranit\n"
+msgid "The method driver %s could not be found."
+msgstr "Ovladač metody %s nemohl být nalezen."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Balík %s je virtuální balík poskytovaný:\n"
+msgid "Method %s did not start correctly"
+msgstr "Metoda %s nebyla spuštěna správně"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr "[Instalovaný]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Vložte prosím disk nazvaný '%s' do mechaniky '%s' a stiskněte enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Měli byste explicitně vybrat jeden k instalaci."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Balíčkovací systém '%s' není podporován"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Nebylo možno určit vhodný typ balíčkovacího systému"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Nebylo možno vyhodnotit %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Do sources.list musíte zadat 'zdrojové' URI"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
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"
+"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Nicméně následující balíky jej nahrazují:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Neplatný záznam v souboru preferencí, žádné záhlaví balíku"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "Nerozumím vypíchnutí typu %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Cache má nekompatibilní systém správy verzí"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Balík %s nemá kandidáta pro instalaci"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Při zpracování %s se objevila chyba (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Reinstalace %s není možná, protože nelze stáhnout.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Při zpracování %s se objevila chyba (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s je již nejnovější verze.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Při zpracování %s se objevila chyba (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Vydání '%s' pro '%s' nebylo nalezeno"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Verze '%s' pro '%s' nebyla nalezena"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Při zpracování %s se objevila chyba (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Vybraná verze %s (%s) pro %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Při zpracování %s se objevila chyba (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Příkaz update neakceptuje žádné argumenty"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Při zpracování %s se objevila chyba (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Nemohu uzamknout list adresář"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Některé indexové soubory se nepodařilo stáhnout, jsou ignorovány, nebo jsou "
-"použity starší verze."
+"Wow, překročili jste počet jmen balíků, které tato APT zvládá zpracovat."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Wow, překročili jste počet verzí, které tato APT zvládá zpracovat."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Následující NOVÉ balíky budou nainstalovány:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Wow, překročili jste počet verzí, které tato APT zvládá zpracovat."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Wow, překročili jste počet závislostí, které tato APT zvládá zpracovat."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Chyba při zpracování %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Při zpracování %s se objevila chyba (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Při zpracování závislostí nebyl nalezen balík %s %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Vnitřní chyba, AllUpgrade pokazil věci"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Nemohu najít balík %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Collecting File poskytuje"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Nemohu najít balík %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Chyba IO při ukládání zdrojové cache"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Pozn: vybírám %s pro regulární výraz '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "přejmenování selhalo, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ale %s se bude instalovat"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Neshoda MD5 součtů"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Pro opravení následujících můžete spustit `apt-get -f install':"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Neshoda MD5 součtů"
+
+#: apt-pkg/acquire-item.cc:1100
+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"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Nesplněné závislosti. Zkuste spustit 'apt-get -f install' bez balíků (nebo "
-"navrhněte řešení)."
+"Nebyl jsem schopen nalézt soubor s balíkem %s. To by mohlo znamenat, že "
+"tento balík je třeba opravit ručně (kvůli chybějící architektuře)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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."
+"Nebyl jsem schopen nalézt soubor s balíkem %s. Asi budete muset tento balík "
+"opravit ručně."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Protože jste požádali pouze o jednoduchou operaci, je téměř jisté, že\n"
-"balík není instalovatelný a měl byste o tom zaslat hlášení o chybě\n"
-"(bug report)."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Poškozené balíky"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Následující extra balíky budou instalovány:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Navrhované balíky:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Doporučované balíky:"
+"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Propočítávám aktualizaci... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Velikosti nesouhlasí"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Hotovo"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Blok výrobce %s neobsahuje otisk klíče"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Vnitřní chyba, řešitel problémů pokazil věci"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Používám přípojný bod %s\n"
+"Připojuji CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Rozpoznávám... "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Nemohu najít zdrojový balík pro %s"
+msgid "Stored label: %s\n"
+msgstr "Uložený název: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Přeskakuji dříve stažený soubor '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Odpojuji CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Na %s nemáte dostatek volného místa"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Používám přípojný bod %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Odpojuji CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Čekám na disk...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Stáhnout zdroj %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Připojuji CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Stažení některých archivů selhalo."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Hledám na disku indexové soubory...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Nalezl jsem indexy balíků (%i), indexy zdrojů (%i) a podpisy (%i)\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Příkaz pro rozbalení '%s' selhal.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Uložený název: %s \n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Nejedná se o platné jméno, zkuste to znovu.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Zkontrolujte, zda je nainstalován balíček 'dpkg-dev'.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Tento disk se nazývá: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Příkaz pro sestavení '%s' selhal.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopíruji seznamy balíků..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Synovský proces selhal"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Zapisuji nový seznam balíků\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti "
-"pro sestavení"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Seznamy zdrojů na tomto disku jsou:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Nemohu získat závislosti pro sestavení %s"
+msgid "Wrote %i records.\n"
+msgstr "Zapsal jsem %i záznamů.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s nemá žádné závislosti pro sestavení.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Zapsal jsem %i záznamů s chybějícími soubory (%i).\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%s závislost pro %s nemůže být splněna, protože balík %s nebyl nalezen"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Zapsal jsem %i záznamů s nesouhlasícími soubory (%i).\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"%s závislost pro %s nemůže být splněna protože není k dispozici verze balíku "
-"%s, která odpovídá požadavku na verzi"
+"Zapsal jsem %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Selhalo splnění %s závislosti pro %s: Instalovaný balík %s je příliš nový"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Adresář seznamů %spartial chybí."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Selhalo splnění %s závislosti pro %s: %s"
+msgid "Preparing %s"
+msgstr "Připravuji %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "Chyba při zpracování závislostí pro sestavení"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Podporované moduly:"
+msgid "Unpacking %s"
+msgstr "Rozbaluji %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Použití: apt-get [volby] příkaz\n"
-" apt-get [volby] install|remove balík1 [balík2 ...]\n"
-" apt-get [volby] source balík1 [balík2 ...]\n"
-"\n"
-"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n"
-"balíků. Nejpoužívanější příkazy jsou update a install.\n"
-"\n"
-"Příkazy:\n"
-" update - Získá seznam nových balíků\n"
-" upgrade - Provede aktualizaci\n"
-" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n"
-" remove - Odstraní balíky\n"
-" source - Stáhne zdrojové archivy\n"
-" build-dep - Pro zdrojové balíky nastaví build-dependencies\n"
-" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n"
-" dselect-upgrade - Řídí se podle výběru v dselectu\n"
-" clean - Smaže stažené archivy\n"
-" autoclean - Smaže staré stažené archivy\n"
-" check - Ověří, zda se nevyskytují poškozené závislosti\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda\n"
-" -q Nezobrazí indikátor postupu - pro záznam\n"
-" -qq Nezobrazí nic než chyby\n"
-" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n"
-" -s Pouze simuluje prováděné akce\n"
-" -y Na všechny otázky odpovídá Ano\n"
-" -f Zkusí pokračovat, i když selže kontrola integrity\n"
-" -m Zkusí pokračovat, i když se nepodaří najít archivy\n"
-" -u Zobrazí také seznam aktualizovaných balíků\n"
-" -b Po stažení zdrojového balíku jej i zkompiluje\n"
-" -V Zobrazí čísla verzí\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n"
-"a apt.conf(5).\n"
-" Tato APT má schopnosti svaté krávy.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Připravuji nastavení %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Cíl "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Nastavuji %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Mám:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Chyba zpracování adresáře %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Nainstalován %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Připravuji odstranění %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Staženo %sB za %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Odstraňuji %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Pracuji]"
+msgid "Removed %s"
+msgstr "Odstraněn %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Připravuji úplné odstranění %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Neznámý záznam o balíku!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Kompletně odstraněn %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Použití: apt-sortpkgs [volby] soubor1 [soubor2 ...]\n"
-"\n"
-"apt-sortpkgs je jednoduchý nástroj pro setřídění souborů Packages.\n"
-"Volbou -s volíte typ souboru.\n"
-"\n"
-"Volby:\n"
-" -h Tato nápověda\n"
-" -s Setřídí zdrojový soubor\n"
-" -c=? Načte tento konfigurační soubor\n"
-" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Chybné standardní nastavení!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Nemohu otevřít soubor %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Pro pokračování stiskněte enter."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Spojení bylo předčasně ukončeno"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Během rozbalování se vyskytly chyby. Zkusím teď nakonfigurovat"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Řádek %d je příliš dlouhý (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "balíky, které se nainstalovaly. To může způsobit chybové hlášky"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Při zpracování %s se objevila chyba (NewFileVer1)"
-#: dselect/install:103
-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"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Uložený název: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Slučuji dostupné informace"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Nalezl jsem indexy balíků (%i), indexy zdrojů (%i) a podpisy (%i)\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: APT\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Methwyd darllen y cronfa ddata CD-ROM %s"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n"
-#: methods/cdrom.cc:123
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#, c-format
+msgid "Unable to locate package %s"
+msgstr "Ni ellir lleoli'r pecyn %s"
+
+#: cmdline/apt-cache.cc:247
#, fuzzy
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-"
-"get update i ychwanegu CDau newydd."
+msgid "Total package names : "
+msgstr "Cyfanswm Enwau Pecynnau : "
-#: methods/cdrom.cc:131
+#: cmdline/apt-cache.cc:287
#, fuzzy
-msgid "Wrong CD-ROM"
-msgstr "CD Anghywir"
+msgid " Normal packages: "
+msgstr " Pecynnau Normal: "
-#: methods/cdrom.cc:166
-#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio."
+#: cmdline/apt-cache.cc:288
+#, fuzzy
+msgid " Pure virtual packages: "
+msgstr " Pecynnau Cwbl Rhithwir: "
-#: methods/cdrom.cc:171
+#: cmdline/apt-cache.cc:289
#, fuzzy
-msgid "Disk not found."
-msgstr "Ffeil heb ei ganfod"
+msgid " Single virtual packages: "
+msgstr " Pecynnau Rhithwir Sengl: "
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Ffeil heb ei ganfod"
+#: cmdline/apt-cache.cc:290
+#, fuzzy
+msgid " Mixed virtual packages: "
+msgstr " Pecynnau Rhithwir Cymysg: "
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Methwyd stat()"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Ar Goll: "
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Methwyd gosod amser newid"
+#: cmdline/apt-cache.cc:293
+#, fuzzy
+msgid "Total distinct versions: "
+msgstr "Cyfanswm Fersiynau Gwahanol: "
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\""
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Cyfanswm Fersiynau Gwahanol: "
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Yn mewngofnodi"
+#: cmdline/apt-cache.cc:297
+#, fuzzy
+msgid "Total dependencies: "
+msgstr "Cyfanswm Dibyniaethau: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Ni ellir darganfod enw'r cymar"
+#: cmdline/apt-cache.cc:300
+#, fuzzy
+msgid "Total ver/file relations: "
+msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Ni ellir darganfod yr enw lleol"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, fuzzy, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s"
+#: cmdline/apt-cache.cc:304
+#, fuzzy
+msgid "Total Provides mappings: "
+msgstr "Cyfanswm Mapiau Darpariath: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s"
+#: cmdline/apt-cache.cc:316
+#, fuzzy
+msgid "Total globbed strings: "
+msgstr "Cyfanswm Llinynau Glob: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s"
+#: cmdline/apt-cache.cc:330
+#, fuzzy
+msgid "Total dependency version space: "
+msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::"
-"ProxyLogin yn wag.)"
+#: cmdline/apt-cache.cc:335
+#, fuzzy
+msgid "Total slack space: "
+msgstr "Cyfanswm gofod Slac: "
-# FIXME
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s"
+#: cmdline/apt-cache.cc:343
+#, fuzzy
+msgid "Total space accounted for: "
+msgstr "Cyfanswm Gofod Cyfrifwyd: "
-#: methods/ftp.cc:291
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s"
-
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Goramser cysylltu"
-
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Caeodd y gweinydd y cysylltiad"
-
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Gwall darllen"
-
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Gorlifodd ateb y byffer."
+msgid "Package file %s is out of sync."
+msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig."
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Llygr protocol"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Rhaid i chi ddarparu un patrwm yn union"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Gwall ysgrifennu"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Canfuwyd dim pecyn"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Methwyd creu soced"
+#: cmdline/apt-cache.cc:1524
+#, fuzzy
+msgid "Package files:"
+msgstr "Ffeiliau Pecynnau:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Methwyd"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:704
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
#, fuzzy
-msgid "Could not connect passive socket."
-msgstr "Methwyd cysylltu soced goddefol"
+msgid "Pinned packages:"
+msgstr "Pecynnau wedi eu Pinio:"
-# FIXME
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "Methodd getaddrinfo gael soced gwrando"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(heb ganfod)"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Methwyd rhwymo soced"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Wedi Sefydlu: "
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Methwyd gwrando ar y soced"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(dim)"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Methwyd canfod enw'r soced"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Ymgeisydd: "
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Methwyd danfod gorchymyn PORT"
+#: cmdline/apt-cache.cc:1594
+#, fuzzy
+msgid " Package pin: "
+msgstr " Pin Pecyn: "
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Teulu cyfeiriad anhysbys %u (AF_*)"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+#, fuzzy
+msgid " Version table:"
+msgstr " Tabl Fersiynnau:"
-#: methods/ftp.cc:798
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s"
-
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Goramserodd cysylltiad y soced data"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Methwyd derbyn cysylltiad"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem wrth stwnshio ffeil"
-
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Goramserodd soced data"
-
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'"
+#: cmdline/apt-cache.cc:1721
+#, fuzzy
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Defnydd: apt-cache [opsiynnau] gorchymyn\n"
+" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n"
+" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n"
+" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n"
+"\n"
+"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa "
+"deuol APT, ac ymholi gwybodaeth ohonynt\n"
+"\n"
+"Gorchmynion:\n"
+" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n"
+" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n"
+" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n"
+" showsrc - Dangos cofnodion ffynhonell\n"
+" stats - Dangos rhyw ystadegau sylfaenol\n"
+" dump - Dangos y ffeil cyfan mewn ffurf syml\n"
+" dumpavail - Dangos ffeil argaeledd\n"
+" unmet - Dangos dibyniaethau heb eu darparu\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Ymholiad"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
-# FIXME
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Methwyd gweithredu "
+#: cmdline/apt-cdrom.cc:93
+#, fuzzy
+msgid "Please insert a Disc in the drive and press enter"
+msgstr ""
+"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
+" '%s'\n"
+"yn y gyrriant '%s' a gwasgwch Enter\n"
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Yn cysylltu i %s (%s)"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr ""
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Nid yw ymresymiadau mewn parau"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)"
+#: cmdline/apt-config.cc:76
+#, fuzzy
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Defnydd: apt-config [opsiynnau] gorchymyn\n"
+"\n"
+"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n"
+"\n"
+"Gorchmynion:\n"
+" shell - Modd plisgyn\n"
+" dump - Dangod y cyfluniad\n"
+"\n"
+"Opsiynnau:\n"
+" -h Y testun cymorth hwn\n"
+" -c=? Darllen y ffeil cyfluniad\n"
+" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
-#: methods/connect.cc:86
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)."
+msgid "%s not a valid DEB package."
+msgstr "Nid yw %s yn becyn DEB dilys."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad"
+# FIXME: "debian"
+#: cmdline/apt-extracttemplates.cc:232
+#, fuzzy
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Defnydd: apt-extracttemplates ffeil1 [ffeil2 ...]\n"
+"\n"
+"Mae apt-extracttemplates yn erfyn ar gyfer echdynnu manylion cyfluniad a\n"
+"templed o becynnau Debian.\n"
+"\n"
+"Opsiynnau:\n"
+" -h Dangos y testun cymorth hwn\n"
+" -t Gosod y cyfeiriadur dros dro\n"
+" -c=? Darllen y ffeil cyfluniad hwn\n"
+" -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n"
-#: methods/connect.cc:108
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Methwyd cysylltu i %s:%s (%s)."
+msgid "Unable to write to %s"
+msgstr "Ni ellir ysgrifennu i %s"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Yn cysylltu i %s"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Methwyd datrys '%s'"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Mae'r rhestr estyniad pecyn yn rhy hir."
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Methiant dros dro yn datrys '%s'"
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#, fuzzy, c-format
+msgid "Error processing directory %s"
+msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Methwyd cysylltu i %s %s:"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:398
#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Methwyd datrys '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
+msgid "Error processing contents %s"
+msgstr "Gwall wrth Brosesu Cynnwys %s"
-#: methods/gpgv.cc:204
+# FIXME: full stops
+#: ftparchive/apt-ftparchive.cc:553
+#, fuzzy
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
+"Defnydd: apt-ftparchive [opsiynnau] gorchymyn\n"
+"Gorchmynion: packages llwybrdeuol [ffeilgwrthwneud [cynddodiadllwybr]]\n"
+" sources llwybrffynhonell [ffeilgwrthwneud [cynddodiadllwybr]]\n"
+" contents llwybr\n"
+" release llwybr\n"
+" generate cyfluniad [grŵpiau]\n"
+" clean cyfluniad\n"
+"\n"
+"Mae apt-ftparchive yn cynhyrchu ffeiliau mynegai ar gyfer archifau Debian.\n"
+"Mae'n cynnal nifer o arddulliau o gynhyrchiad, yn cynnwys modd wedi\n"
+"awtomeiddio'n llwyr a modd yn debyg i dpkg-scanpackages a dpkg-scansources.\n"
+"\n"
+"Gall apt-ftparchive gynhyrchu ffeil Package o goeden o ffeiliau .deb.\n"
+"Mae'r ffeil Package yn cynnwys yr holl feysydd rheoli o bob pecyn yn\n"
+"ogystal a'r stwnsh MD5 a maint y ffeil. Cynhelir ffeil gwrthwneud er mwyn\n"
+"gorfodi'r gwerthoedd Priority a Section.\n"
+"\n"
+"Yn debyg, gall apt-ftparchive gynhyrchu ffeil Sources o goeden o ffeiliau\n"
+".dsc. Gellir defnyddio'r opsiwn --source-override er mwyn penodi ffeil\n"
+"gwrthwneud ffynhonell.\n"
+"\n"
+"Dylid rhedeg y gorchmynion 'packages' a 'sources' yng ngwraidd y goeden.\n"
+"Fe ddylai llwybrdeuol bwyntio at sail y chwilio ailadroddus a fe ddylai\n"
+"ffeilgwrthwneud gynnwys y gosodiadau gwrthwneud. Ychwanegir\n"
+"cynddodiadllwybr i'r meysydd enw ffeil os ydynt yn bresennol. Esiampl\n"
+"defnydd o'r archif Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opsiynnau:\n"
+" -h Y testun cymorth hwn\n"
+" --md5 Rheoli cynhyrchiad stwnch MD5\n"
+" -s=? Ffeil gwrthwneud ffynhonell\n"
+" -q Tawel\n"
+" -d=? Dewis cronda data storfa opsiynnol\n"
+" --no-delink Galluogi'r modd datgysylltu datnamu\n"
+" --contents Rheoli cynhyrchiad ffeil cynnwys\n"
+" -c=? Darllen y ffeil cyfluniad hwn\n"
+" -o=? Gosod opsiwn cyfluniad mympwyol"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Dim dewisiadau'n cyfateb"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr ""
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Llygrwyd y cronfa data, ailenwyd y ffeil i %s.old"
-#: methods/gpgv.cc:249
-#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Hen gronfa data, yn ceisio uwchraddio %s"
-#: methods/gpgv.cc:256
+#: ftparchive/cachedb.cc:72
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-#: methods/gpgv.cc:272
+#: ftparchive/cachedb.cc:77
#, c-format
-msgid "Failed to stat %s"
-msgstr "Methodd stat() o %s"
+msgid "Unable to open DB file %s: %s"
+msgstr "Ni ellir agor y ffeil DB2 %s: %s"
-#: methods/gzip.cc:64
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Methwyd agor pibell ar gyfer %s"
+msgid "Failed to stat %s"
+msgstr "Methodd stat() o %s"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Gwall darllen o broses %s"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Does dim cofnod rheoli gan yr archif"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Yn aros am benawdau"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Ni ellir cael cyrchydd"
-#: methods/http.cc:523
+#: ftparchive/writer.cc:76
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Derbynnwyd llinell pennaws sengl dros %u nod"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Llinell pennawd gwael"
-
-#: methods/http.cc:550 methods/http.cc:557
-#, fuzzy
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys"
-
-#: methods/http.cc:586
-#, fuzzy
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys"
-
-#: methods/http.cc:601
-#, fuzzy
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys"
-
-#: methods/http.cc:603
-#, fuzzy
-msgid "This HTTP server has broken range support"
-msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Fformat dyddiad anhysbys"
-
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Methwyd dewis"
-
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Goramserodd y cysylltiad"
-
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Gwall wrth ysgrifennu i ffeil allbwn"
-
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Gwall wrth ysgrifennu at ffeil"
-
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Gwall wrth ysgrifennu at y ffeil"
-
-#: methods/http.cc:875
-#, 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:877
-msgid "Error reading from server"
-msgstr "Gwall wrth ddarllen o'r gweinydd"
-
-#: methods/http.cc:1104
-#, fuzzy
-msgid "Bad header data"
-msgstr "Data pennawd gwael"
-
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Methodd y cysylltiad"
-
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Gwall mewnol"
-
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Ni ellir defnyddio mmap() ar ffeil gwag"
+msgid "W: Unable to read directory %s\n"
+msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Methwyd gwneud mmap() efo %lu beit"
+msgid "W: Unable to stat %s\n"
+msgstr "Rh: Ni ellir gwneud stat() o %s\n"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "Ni chanfuwyd y dewis %s"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "G: "
+
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "Rh: "
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Talgryniad math anhysbys: '%c'"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "G: Mae gwallau yn cymhwyso i'r ffeil "
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Yn agor y ffeil cyfluniad %s"
+msgid "Failed to resolve %s"
+msgstr "Methwyd datrys %s"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linell %d yn rhy hir (uchaf %d)"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Methwyd cerdded y goeden"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw."
+msgid "Failed to open %s"
+msgstr "Methwyd agor %s"
# FIXME
-#: apt-pkg/contrib/configuration.cc:625
-#, fuzzy, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio"
-
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth"
+msgid " DeLink %s [%s]\n"
+msgstr " DatGysylltu %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig"
+msgid "Failed to readlink %s"
+msgstr "Methwyd darllen y cyswllt %s"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol"
+msgid "Failed to unlink %s"
+msgstr "Methwyd datgysylltu %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Methwyd cysylltu %s at %s"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Tarwyd y terfyn cyswllt %sB.\n"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Doedd dim maes pecyn gan yr archif"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Unable to read %s"
-msgstr "Ni ellir darllen %s"
+msgid " %s has no override entry\n"
+msgstr " Does dim cofnod gwrthwneud gan %s\n"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Gwall!"
+msgid " %s maintainer is %s not %s\n"
+msgstr " Cynaliwr %s yw %s nid %s\n"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Wedi Gorffen"
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " Does dim cofnod gwrthwneud gan %s\n"
-# FIXME
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)."
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " Does dim cofnod gwrthwneud gan %s\n"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s"
+#: ftparchive/contents.cc:321
+#, fuzzy, c-format
+msgid "Internal error, could not locate member %s"
+msgstr "Gwall Mewnol, methwyd lleoli aelod %s"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Methwyd neilltuo cof"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Mae'r opsiwn %s yn mynnu ymresymiad."
+msgid "Unable to open %s"
+msgstr "Ni ellir agor %s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>."
+msgid "Malformed override %s line %lu #1"
+msgstr "Gwrthwneud camffurfiol %s llinell %lu #1"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'"
+msgid "Malformed override %s line %lu #2"
+msgstr "Gwrthwneud camffurfiol %s llinell %lu #2"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opsiwn '%s' yn rhy hir"
+msgid "Malformed override %s line %lu #3"
+msgstr "Gwrthwneud camffurfiol %s llinell %lu #3"
-# FIXME: 'Sense'?
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'."
+msgid "Failed to read the override file %s"
+msgstr "Methwydd darllen y ffeil dargyfeirio %s"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Gweithred annilys %s"
+#: ftparchive/multicompress.cc:72
+#, fuzzy, c-format
+msgid "Unknown compression algorithm '%s'"
+msgstr "Dull Cywasgu Anhysbys '%s'"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s"
+msgid "Compressed output %s needs a compression set"
+msgstr "Mae'r allbwn cywasgiedig %s angen cywasgiad wedi ei osod"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Ni ellir newid i %s"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Methwyd creu pibell cyfathrebu at isbroses"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Methwyd gwneud stat() o'r CD-ROM"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Methwyd creu FILE*"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Methodd fork()"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Methwyd agor y ffeil clo %s"
+#: ftparchive/multicompress.cc:212
+#, fuzzy
+msgid "Compress child"
+msgstr "Plentyn Cywasgu"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Ddim yn cloi'r ffeil clo ar NFS %s"
+#: ftparchive/multicompress.cc:235
+#, fuzzy, c-format
+msgid "Internal error, failed to create %s"
+msgstr "Gwall Mewnol, Methwyd creu %s"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Methwyd cael y clo %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Methwyd creu isbroses IPC"
-#: apt-pkg/contrib/fileutl.cc:377
-#, fuzzy, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Arhoswyd am %s ond nid oedd e yna"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Methwyd gweithredu cywasgydd "
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Derbyniodd is-broses %s wall segmentu."
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "datgywasgydd"
-#: apt-pkg/contrib/fileutl.cc:390
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Methodd MA i isbroses/ffeil"
+
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Methwyd darllen wrth gyfrifo MD5"
+
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Dychwelodd is-broses %s gôd gwall (%u)"
+msgid "Problem unlinking %s"
+msgstr "Gwall wrth datgysylltu %s"
-#: apt-pkg/contrib/fileutl.cc:392
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Gorffenodd is-broses %s yn annisgwyl"
+msgid "Failed to rename %s to %s"
+msgstr "Methwyd ailenwi %s at %s"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "I"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not open file %s"
-msgstr "Methwyd agor ffeil %s"
+msgid "Regex compilation error - %s"
+msgstr "Gwall crynhoi patrwm - %s"
-# FIXME
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:"
+
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "o hyd %lu i ddarllen ond dim ar ôl"
+msgid "but %s is installed"
+msgstr "ond mae %s wedi ei sefydlu"
-# FIXME
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "o hyd %lu i ysgrifennu ond methwyd"
+msgid "but %s is to be installed"
+msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Gwall wrth gau'r ffeil"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ond ni ellir ei sefydlu"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Gwall wrth dadgysylltu'r ffeil"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ond mae'n becyn rhithwir"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ond nid yw wedi ei sefydlu"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ond nid yw'n mynd i gael ei sefydlu"
+
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " neu"
+
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Gwall wrth gyfamseru'r ffeil"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Caiff y pecynnau canlynol eu TYNNU:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Storfa pecyn gwag"
+#: cmdline/apt-get.cc:427
+#, fuzzy
+msgid "The following packages have been kept back:"
+msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Mae'r ffeil storfa pecyn yn llygredig"
+#: cmdline/apt-get.cc:448
+#, fuzzy
+msgid "The following packages will be upgraded:"
+msgstr "Caiff y pecynnau canlynol eu uwchraddio"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn"
+#: cmdline/apt-get.cc:469
+#, fuzzy
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Caiff y pecynnau canlynol eu ISRADDIO"
-# FIXME: capitalisation?
-#: apt-pkg/pkgcache.cc:148
-#, fuzzy, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (oherwydd %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Dibynnu"
+#: cmdline/apt-get.cc:550
+#, 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-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "CynDdibynnu"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Awgrymu"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu wedi ailsefydlu, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Argymell"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu wedi eu israddio, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Gwrthdaro"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Amnewid"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Darfodi"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Yn cywiro dibyniaethau..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " wedi methu."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "pwysig"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Ni ellir cywiro dibyniaethau"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "angenrheidiol"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ni ellir bychanu y set uwchraddio"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "safonnol"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Wedi Gorffen"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opsiynnol"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "ychwanegol"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+#: cmdline/apt-get.cc:707
#, fuzzy
-msgid "Building dependency tree"
-msgstr "Yn Aideladu Coeden Dibyniaeth"
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
-#: apt-pkg/depcache.cc:122
-#, fuzzy
-msgid "Candidate versions"
-msgstr "Fersiynau Posib"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr ""
-#: apt-pkg/depcache.cc:151
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr ""
+
+#: cmdline/apt-get.cc:720
#, fuzzy
-msgid "Dependency generation"
-msgstr "Cynhyrchaid Dibyniaeth"
+msgid "Some packages could not be authenticated"
+msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Mae problemau a defnyddwyd -y heb --force-yes"
+
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+
+#: cmdline/apt-get.cc:782
#, fuzzy
-msgid "Reading state information"
-msgstr "Yn cyfuno manylion Ar Gael"
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi."
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Methwyd agor %s"
+#: cmdline/apt-get.cc:793
+#, fuzzy
+msgid "Internal error, Ordering didn't finish"
+msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Methwyd ysgrifennu ffeil %s"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho"
-# FIXME: number?
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Methwyd darllen y rhestr ffynhonellau."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Ni ellir gramadegu ffeil becynnau %s (2)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
-#: apt-pkg/sourcelist.cc:90
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n"
-#: apt-pkg/sourcelist.cc:92
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Mae angen cyrchu %sB o archifau.\n"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)"
+#: cmdline/apt-get.cc:847
+#, 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"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:850
#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)"
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr ""
-"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
+#, fuzzy, c-format
+msgid "Couldn't determine free space in %s"
+msgstr "Does dim digon o le rhydd yn %s gennych"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Opening %s"
-msgstr "Yn agor %s"
+msgid "You don't have enough free space in %s."
+msgstr "Does dim digon o le rhydd gennych yn %s."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml."
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ie, gwna fel rydw i'n dweud!"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:891
#, fuzzy, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s"
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n"
+"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n"
+" ?]"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, fuzzy, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Erthylu."
-# FIXME: %s may have an arbirrary length
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:912
+#, fuzzy
+msgid "Do you want to continue [Y/n]? "
+msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
-"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s "
-"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir "
-"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak."
+msgid "Failed to fetch %s %s\n"
+msgstr "Methwyd cyrchu %s %s\n"
+
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Methodd rhai ffeiliau lawrlwytho"
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Ni chynhelir y math ffeil mynegai '%s'"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig"
-#: apt-pkg/algorithms.cc:247
-#, c-format
+#: cmdline/apt-get.cc:1009
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar "
-"ei gyfer."
+"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu "
+"geidio defnyddio --fix-missing?"
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi "
-"ei achosi gan pecynnau wedi eu dal."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Ni ellir cywiro pecynnau ar goll."
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
+#: cmdline/apt-get.cc:1019
+#, fuzzy
+msgid "Aborting install."
+msgstr "Yn Erthylu'r Sefydliad."
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Mae'r cyfeiriadur archif %spartial ar goll."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr ""
-
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Yn Darllen Rhestr Ffeiliau"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Methwyd canfod y gyrrydd dull %s."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Ni gychwynodd y dull %s yn gywir"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Mae'r pecyn %s yn becyn rhithwir a ddarparir gan:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Sefydliwyd]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Dylech ddewis un yn benodol i'w sefydlu."
+
+# FIXME: punctuation
+#: cmdline/apt-get.cc:1114
#, fuzzy, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
-" '%s'\n"
-"yn y gyrriant '%s' a gwasgwch Enter\n"
+"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"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Ni chynhelir y system pecynnu '%s'"
+msgid "Package %s has no installation candidate"
+msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s"
-#: apt-pkg/init.cc:140
-#, fuzzy
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Ni ellir canfod math system addas"
+#: cmdline/apt-get.cc:1156
+#, c-format
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Unable to stat %s."
-msgstr "Ni ellir gwneud stat() o %s."
+msgid "%s is already the newest version.\n"
+msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
-# FIXME: ...file
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Methwyd darllen y rhestr ffynhonellau."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' "
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau"
-# FIXME: literal
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Ni ellir cloi'r cyfeiriadur rhestr"
-# FIXME: tense
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Methwyd daeall y math pin %s"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Mae can y storfa system fersiwn anghyfaddas"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
-#: apt-pkg/pkgcachegen.cc:115
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewPackage)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Digwyddod gwall wrth brosesu %s (UsePackage1)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:"
-#: apt-pkg/pkgcachegen.cc:178
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Digwyddod gwall wrth brosesu %s (UsePackage2)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-#: apt-pkg/pkgcachegen.cc:182
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1506
+#, fuzzy
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewVersion1)"
+msgid "Couldn't find task %s"
+msgstr "Methwyd canfod pecyn %s"
-#: apt-pkg/pkgcachegen.cc:217
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Digwyddod gwall wrth brosesu %s (UsePackage3)"
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
+#, c-format
+msgid "Couldn't find package %s"
+msgstr "Methwyd canfod pecyn %s"
-#: apt-pkg/pkgcachegen.cc:221
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewVersion2)"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "ond mae %s yn mynd i gael ei sefydlu"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr ""
-"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
+# FIXME
+#: cmdline/apt-get.cc:1738
+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)"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
+# FIXME: needs commas
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n"
+"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n"
+"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n"
+"heb gael eu symud allan o Incoming."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+# FIXME: commas, wrapping
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin."
+"Gan y gofynnoch am weithred syml yn unig, mae'n debygol nad yw'r pecyn\n"
+"yn sefydladwy a dylid cyflwyno adroddiad nam yn erbyn y pecyn hwnnw."
-#: apt-pkg/pkgcachegen.cc:288
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pecynnau wedi torri"
-#: apt-pkg/pkgcachegen.cc:301
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Digwyddod gwall wrth brosesu %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Pecynnau a awgrymmir:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Pecynnau a argymhellir:"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
+#: cmdline/apt-get.cc:1913
#, fuzzy
-msgid "Reading package lists"
-msgstr "Yn Darllen Rhestrau Pecynnau"
-
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Yn Casglu Darpariaethau Ffeil"
+msgid "Calculating upgrade... "
+msgstr "Yn Cyfrifo'r Uwchraddiad... "
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Ni ellir ysgrifennu i %s"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Methwyd"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Gwall M/A wrth gadw'r storfa ffynhonell"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Wedi Gorffen"
-#: apt-pkg/acquire-item.cc:127
-#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "methwyd ailenwi, %s (%s -> %s)."
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+#, fuzzy
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Camgyfatebiaeth swm MD5"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Camgyfatebiaeth swm MD5"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
+#: cmdline/apt-get.cc:2175
+#, fuzzy, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
-# FIXME: case
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2203
#, 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 ""
-"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.)"
+msgid "You don't have enough free space in %s"
+msgstr "Does dim digon o le rhydd yn %s gennych"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi "
-"drwsio'r pecyn hyn a law."
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2212
#, 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."
+msgid "Need to get %sB of source archives.\n"
+msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Camgyfatebiaeth maint"
+#: cmdline/apt-get.cc:2218
+#, fuzzy, c-format
+msgid "Fetch source %s\n"
+msgstr "Cyrchu Ffynhonell %s\n"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Methwyd cyrchu rhai archifau."
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr ""
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Methodd y gorchymyn dadbacio '%s'.\n"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr ""
+msgid "Build command '%s' failed.\n"
+msgstr "Methodd y gorchymyn adeiladu '%s'.\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Methodd proses plentyn"
+
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer"
-#: apt-pkg/cdrom.cc:605
-#, fuzzy
-msgid "Waiting for disc...\n"
-msgstr "Yn aros am benawdau"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr ""
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "Nid oes dibyniaethau adeiladu gan %s.\n"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
+#: cmdline/apt-get.cc:2442
+#, c-format
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
+"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn %"
+"s"
-#: apt-pkg/cdrom.cc:671
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
+"Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd "
+"ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin"
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Found label '%s'\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
+"Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy "
+"newydd"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr ""
+#: cmdline/apt-get.cc:2556
+#, c-format
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Methwyd bodloni dibyniaeth %s am %s: %s"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s."
+
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Methwyd prosesu dibyniaethau adeiladu"
-#: apt-pkg/cdrom.cc:757
+#: cmdline/apt-get.cc:2606
#, fuzzy
-msgid "Copying package lists..."
-msgstr "Yn Darllen Rhestrau Pecynnau"
+msgid "Supported modules:"
+msgstr "Modylau a Gynhelir:"
-#: apt-pkg/cdrom.cc:783
+# FIXME: split
+#: cmdline/apt-get.cc:2647
#, fuzzy
-msgid "Writing new source list\n"
-msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Defnydd: apt-get [opsiynnau] gorchymyn\n"
+" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n"
+" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n"
+"\n"
+"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n"
+"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n"
+"ddefnyddir amlaf.\n"
+"\n"
+"Gorchmynion:\n"
+" update - Cyrchu rhestrau pecynnau newydd\n"
+" update - Uwchraddio pecynnau wedi sefydlu\n"
+" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n"
+" remove - Tynnu pecynnau\n"
+" source - Lawrlwytho archifau ffynhonell\n"
+" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n"
+" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n"
+" dselect-upgrade - Dilyn dewisiadau dselect\n"
+" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n"
+" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n"
+" check - Gwirio fod dim dibyniaethau torredig\n"
+"\n"
+"Opsiynnau:\n"
+" -h Y testun cymorth hwn.\n"
+" -q Allbwn cofnodadwy - dim dangosydd cynydd\n"
+" -qq Dim allbwn ar wahan i wallau\n"
+" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n"
+" -s Peidio gweithredu. Gwneir efelychiad trefn.\n"
+" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n"
+" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n"
+" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n"
+" -u Dangos rhestr o archifau a uwchraddir hefyd\n"
+" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n"
+" -V Dangos rhifau fersiwn cyflawn\n"
+" -c=? Darllen y ffeil cyfluniad hwn\n"
+" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
+"\n"
+"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n"
+"fwy o wybodaeth ac opsiynnau.\n"
+"\n"
+" Mae gan yr APT hwn bŵerau buwch hudol.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr ""
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Presennol "
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD Anghywir"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Cyrchu:"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr ""
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Anwybyddu "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr ""
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Gwall "
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr ""
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Cyrchwyd %sB yn %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, fuzzy, c-format
-msgid "Preparing %s"
-msgstr "Yn agor %s"
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, fuzzy, c-format
-msgid "Unpacking %s"
-msgstr "Yn agor %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, fuzzy, c-format
-msgid "Preparing to configure %s"
-msgstr "Yn agor y ffeil cyfluniad %s"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, fuzzy, c-format
-msgid "Configuring %s"
-msgstr "Yn cysylltu i %s"
+msgid " [Working]"
+msgstr " [Gweithio]"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
+#: cmdline/acqprogress.cc:271
#, fuzzy, c-format
-msgid "Processing triggers for %s"
-msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
+" '%s'\n"
+"yn y gyrriant '%s' a gwasgwch Enter\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr " Wedi Sefydlu: "
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Cofnod pecyn anhysbys!"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
+#: cmdline/apt-sortpkgs.cc:150
+#, fuzzy
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Defnydd: apt-sortpkgs [opsiynnau] ffeil1 [ffeil2 ...]\n"
+"\n"
+"Mae apt-sortpkgs yn erfyn syml er mwyn trefnu ffeiliau pecyn. Defnyddir yr\n"
+"opsiwn -s er mwyn penodi pa fath o ffeil ydyw.\n"
+"\n"
+"Opsiynnau:\n"
+" -h Y testun cymorth hwn\n"
+" -s Defnyddio trefnu ffeil ffynhonell\n"
+" -c=? Darllen y ffeil cyfluniad hwn\n"
+" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Yn agor %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Rhagosodiad gwael!"
-#: apt-pkg/deb/dpkgpm.cc:595
-#, fuzzy, c-format
-msgid "Removed %s"
-msgstr "Argymell"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Gwasgwch Enter er mwyn mynd ymlaen."
-#: apt-pkg/deb/dpkgpm.cc:600
-#, fuzzy, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Yn agor y ffeil cyfluniad %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Methwyd dileu %s"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:102
+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:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
+"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu "
+"eto."
-#: methods/rred.cc:219
+#: dselect/update:30
#, fuzzy
-msgid "Could not patch file"
-msgstr "Methwyd agor ffeil %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Methwyd creu pibell cyfathrebu at isbroses"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Caewyd y cysylltiad yn gynnar"
+msgid "Merging available information"
+msgstr "Yn cyfuno manylion Ar Gael"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Mae llwybr y dargyfeiriad yn rhy hir"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Methwyd ailenwi %s at %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Ni ellir darllen %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Rhaid i'r cyfeiriaduron 'info' a 'temp' for ar yr un system ffeiliau"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+#, fuzzy
+msgid "Reading package lists"
+msgstr "Yn Darllen Rhestrau Pecynnau"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Ffeil rheoli ni ellir ei ramadegu"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Ni ellir lleoli'r pecyn %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Methwyd darllen y cronfa ddata CD-ROM %s"
-#: cmdline/apt-cache.cc:247
+#: methods/cdrom.cc:123
#, fuzzy
-msgid "Total package names : "
-msgstr "Cyfanswm Enwau Pecynnau : "
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-"
+"get update i ychwanegu CDau newydd."
-#: cmdline/apt-cache.cc:287
+#: methods/cdrom.cc:131
#, fuzzy
-msgid " Normal packages: "
-msgstr " Pecynnau Normal: "
+msgid "Wrong CD-ROM"
+msgstr "CD Anghywir"
-#: cmdline/apt-cache.cc:288
-#, fuzzy
-msgid " Pure virtual packages: "
-msgstr " Pecynnau Cwbl Rhithwir: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio."
-#: cmdline/apt-cache.cc:289
+#: methods/cdrom.cc:171
#, fuzzy
-msgid " Single virtual packages: "
-msgstr " Pecynnau Rhithwir Sengl: "
+msgid "Disk not found."
+msgstr "Ffeil heb ei ganfod"
-#: cmdline/apt-cache.cc:290
-#, fuzzy
-msgid " Mixed virtual packages: "
-msgstr " Pecynnau Rhithwir Cymysg: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Ffeil heb ei ganfod"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Ar Goll: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Methwyd stat()"
-#: cmdline/apt-cache.cc:293
-#, fuzzy
-msgid "Total distinct versions: "
-msgstr "Cyfanswm Fersiynau Gwahanol: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Methwyd gosod amser newid"
+
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\""
+
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Yn mewngofnodi"
+
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Ni ellir darganfod enw'r cymar"
+
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Ni ellir darganfod yr enw lleol"
+
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, fuzzy, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s"
+
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Cyfanswm Fersiynau Gwahanol: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s"
-#: cmdline/apt-cache.cc:297
-#, fuzzy
-msgid "Total dependencies: "
-msgstr "Cyfanswm Dibyniaethau: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::"
+"ProxyLogin yn wag.)"
-#: cmdline/apt-cache.cc:300
-#, fuzzy
-msgid "Total ver/file relations: "
-msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
+# FIXME
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s"
-#: cmdline/apt-cache.cc:304
-#, fuzzy
-msgid "Total Provides mappings: "
-msgstr "Cyfanswm Mapiau Darpariath: "
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Goramser cysylltu"
-#: cmdline/apt-cache.cc:316
-#, fuzzy
-msgid "Total globbed strings: "
-msgstr "Cyfanswm Llinynau Glob: "
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Caeodd y gweinydd y cysylltiad"
-#: cmdline/apt-cache.cc:330
-#, fuzzy
-msgid "Total dependency version space: "
-msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: "
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Gwall darllen"
-#: cmdline/apt-cache.cc:335
-#, fuzzy
-msgid "Total slack space: "
-msgstr "Cyfanswm gofod Slac: "
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Gorlifodd ateb y byffer."
-#: cmdline/apt-cache.cc:343
-#, fuzzy
-msgid "Total space accounted for: "
-msgstr "Cyfanswm Gofod Cyfrifwyd: "
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Llygr protocol"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
-#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig."
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Gwall ysgrifennu"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Rhaid i chi ddarparu un patrwm yn union"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Methwyd creu soced"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Canfuwyd dim pecyn"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad"
-#: cmdline/apt-cache.cc:1524
+#: methods/ftp.cc:704
#, fuzzy
-msgid "Package files:"
-msgstr "Ffeiliau Pecynnau:"
+msgid "Could not connect passive socket."
+msgstr "Methwyd cysylltu soced goddefol"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym"
+# FIXME
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "Methodd getaddrinfo gael soced gwrando"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Methwyd rhwymo soced"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-#, fuzzy
-msgid "Pinned packages:"
-msgstr "Pecynnau wedi eu Pinio:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Methwyd gwrando ar y soced"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(heb ganfod)"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Methwyd canfod enw'r soced"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Wedi Sefydlu: "
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Methwyd danfod gorchymyn PORT"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(dim)"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Teulu cyfeiriad anhysbys %u (AF_*)"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Ymgeisydd: "
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s"
-#: cmdline/apt-cache.cc:1594
-#, fuzzy
-msgid " Package pin: "
-msgstr " Pin Pecyn: "
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Goramserodd cysylltiad y soced data"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-#, fuzzy
-msgid " Version table:"
-msgstr " Tabl Fersiynnau:"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Methwyd derbyn cysylltiad"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem wrth stwnshio ffeil"
+
+#: methods/ftp.cc:877
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Goramserodd soced data"
-#: cmdline/apt-cache.cc:1721
-#, fuzzy
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Defnydd: apt-cache [opsiynnau] gorchymyn\n"
-" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n"
-" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n"
-" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n"
-"\n"
-"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa "
-"deuol APT, ac ymholi gwybodaeth ohonynt\n"
-"\n"
-"Gorchmynion:\n"
-" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n"
-" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n"
-" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n"
-" showsrc - Dangos cofnodion ffynhonell\n"
-" stats - Dangos rhyw ystadegau sylfaenol\n"
-" dump - Dangos y ffeil cyfan mewn ffurf syml\n"
-" dumpavail - Dangos ffeil argaeledd\n"
-" unmet - Dangos dibyniaethau heb eu darparu\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Ymholiad"
-#: cmdline/apt-cdrom.cc:93
-#, fuzzy
-msgid "Please insert a Disc in the drive and press enter"
-msgstr ""
-"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
-" '%s'\n"
-"yn y gyrriant '%s' a gwasgwch Enter\n"
+# FIXME
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Methwyd gweithredu "
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr ""
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Yn cysylltu i %s (%s)"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Nid yw ymresymiadau mewn parau"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: cmdline/apt-config.cc:76
-#, fuzzy
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Defnydd: apt-config [opsiynnau] gorchymyn\n"
-"\n"
-"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n"
-"\n"
-"Gorchmynion:\n"
-" shell - Modd plisgyn\n"
-" dump - Dangod y cyfluniad\n"
-"\n"
-"Opsiynnau:\n"
-" -h Y testun cymorth hwn\n"
-" -c=? Darllen y ffeil cyfluniad\n"
-" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/connect.cc:86
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "Nid yw %s yn becyn DEB dilys."
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)."
-# FIXME: "debian"
-#: cmdline/apt-extracttemplates.cc:232
-#, fuzzy
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Defnydd: apt-extracttemplates ffeil1 [ffeil2 ...]\n"
-"\n"
-"Mae apt-extracttemplates yn erfyn ar gyfer echdynnu manylion cyfluniad a\n"
-"templed o becynnau Debian.\n"
-"\n"
-"Opsiynnau:\n"
-" -h Dangos y testun cymorth hwn\n"
-" -t Gosod y cyfeiriadur dros dro\n"
-" -c=? Darllen y ffeil cyfluniad hwn\n"
-" -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Methwyd cysylltu i %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Mae'r rhestr estyniad pecyn yn rhy hir."
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Yn cysylltu i %s"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
-#, fuzzy, c-format
-msgid "Error processing directory %s"
-msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Methwyd datrys '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Methiant dros dro yn datrys '%s'"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Methwyd cysylltu i %s %s:"
+
+#: methods/gpgv.cc:65
#, fuzzy, c-format
-msgid "Error processing contents %s"
-msgstr "Gwall wrth Brosesu Cynnwys %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Methwyd datrys '%s'"
-# FIXME: full stops
-#: ftparchive/apt-ftparchive.cc:553
-#, fuzzy
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Defnydd: apt-ftparchive [opsiynnau] gorchymyn\n"
-"Gorchmynion: packages llwybrdeuol [ffeilgwrthwneud [cynddodiadllwybr]]\n"
-" sources llwybrffynhonell [ffeilgwrthwneud [cynddodiadllwybr]]\n"
-" contents llwybr\n"
-" release llwybr\n"
-" generate cyfluniad [grŵpiau]\n"
-" clean cyfluniad\n"
-"\n"
-"Mae apt-ftparchive yn cynhyrchu ffeiliau mynegai ar gyfer archifau Debian.\n"
-"Mae'n cynnal nifer o arddulliau o gynhyrchiad, yn cynnwys modd wedi\n"
-"awtomeiddio'n llwyr a modd yn debyg i dpkg-scanpackages a dpkg-scansources.\n"
-"\n"
-"Gall apt-ftparchive gynhyrchu ffeil Package o goeden o ffeiliau .deb.\n"
-"Mae'r ffeil Package yn cynnwys yr holl feysydd rheoli o bob pecyn yn\n"
-"ogystal a'r stwnsh MD5 a maint y ffeil. Cynhelir ffeil gwrthwneud er mwyn\n"
-"gorfodi'r gwerthoedd Priority a Section.\n"
-"\n"
-"Yn debyg, gall apt-ftparchive gynhyrchu ffeil Sources o goeden o ffeiliau\n"
-".dsc. Gellir defnyddio'r opsiwn --source-override er mwyn penodi ffeil\n"
-"gwrthwneud ffynhonell.\n"
-"\n"
-"Dylid rhedeg y gorchmynion 'packages' a 'sources' yng ngwraidd y goeden.\n"
-"Fe ddylai llwybrdeuol bwyntio at sail y chwilio ailadroddus a fe ddylai\n"
-"ffeilgwrthwneud gynnwys y gosodiadau gwrthwneud. Ychwanegir\n"
-"cynddodiadllwybr i'r meysydd enw ffeil os ydynt yn bresennol. Esiampl\n"
-"defnydd o'r archif Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opsiynnau:\n"
-" -h Y testun cymorth hwn\n"
-" --md5 Rheoli cynhyrchiad stwnch MD5\n"
-" -s=? Ffeil gwrthwneud ffynhonell\n"
-" -q Tawel\n"
-" -d=? Dewis cronda data storfa opsiynnol\n"
-" --no-delink Galluogi'r modd datgysylltu datnamu\n"
-" --contents Rheoli cynhyrchiad ffeil cynnwys\n"
-" -c=? Darllen y ffeil cyfluniad hwn\n"
-" -o=? Gosod opsiwn cyfluniad mympwyol"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Dim dewisiadau'n cyfateb"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/gpgv.cc:214
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr ""
+
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
-#: ftparchive/cachedb.cc:43
+#: methods/gzip.cc:64
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Llygrwyd y cronfa data, ailenwyd y ffeil i %s.old"
+msgid "Couldn't open pipe for %s"
+msgstr "Methwyd agor pibell ar gyfer %s"
-#: ftparchive/cachedb.cc:61
+#: methods/gzip.cc:109
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Hen gronfa data, yn ceisio uwchraddio %s"
+msgid "Read error from %s process"
+msgstr "Gwall darllen o broses %s"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Yn aros am benawdau"
-#: ftparchive/cachedb.cc:77
+#: methods/http.cc:523
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Ni ellir agor y ffeil DB2 %s: %s"
+msgid "Got a single header line over %u chars"
+msgstr "Derbynnwyd llinell pennaws sengl dros %u nod"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Does dim cofnod rheoli gan yr archif"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Llinell pennawd gwael"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Ni ellir cael cyrchydd"
+#: methods/http.cc:550 methods/http.cc:557
+#, fuzzy
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys"
-#: ftparchive/writer.cc:76
-#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n"
+#: methods/http.cc:586
+#, fuzzy
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "Rh: Ni ellir gwneud stat() o %s\n"
+#: methods/http.cc:601
+#, fuzzy
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "G: "
+#: methods/http.cc:603
+#, fuzzy
+msgid "This HTTP server has broken range support"
+msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "Rh: "
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Fformat dyddiad anhysbys"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "G: Mae gwallau yn cymhwyso i'r ffeil "
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Methwyd dewis"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Goramserodd y cysylltiad"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Gwall wrth ysgrifennu i ffeil allbwn"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Gwall wrth ysgrifennu at ffeil"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Gwall wrth ysgrifennu at y ffeil"
+
+#: methods/http.cc:875
+#, 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:877
+msgid "Error reading from server"
+msgstr "Gwall wrth ddarllen o'r gweinydd"
+
+#: methods/http.cc:1104
+#, fuzzy
+msgid "Bad header data"
+msgstr "Data pennawd gwael"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Methodd y cysylltiad"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Gwall mewnol"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Ni ellir defnyddio mmap() ar ffeil gwag"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Methwyd datrys %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Methwyd gwneud mmap() efo %lu beit"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Methwyd cerdded y goeden"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Ni chanfuwyd y dewis %s"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "Methwyd agor %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Talgryniad math anhysbys: '%c'"
-# FIXME
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DatGysylltu %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr "Yn agor y ffeil cyfluniad %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linell %d yn rhy hir (uchaf %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Methwyd darllen y cyswllt %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw."
-#: ftparchive/writer.cc:266
+# FIXME
+#: apt-pkg/contrib/configuration.cc:630
+#, fuzzy, c-format
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio"
+
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Methwyd datgysylltu %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Methwyd cysylltu %s at %s"
+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"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Tarwyd y terfyn cyswllt %sB.\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Doedd dim maes pecyn gan yr archif"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no override entry\n"
-msgstr " Does dim cofnod gwrthwneud gan %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " Cynaliwr %s yw %s nid %s\n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil"
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " Does dim cofnod gwrthwneud gan %s\n"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Gwall!"
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " Does dim cofnod gwrthwneud gan %s\n"
+#: apt-pkg/contrib/progress.cc:155
+#, c-format
+msgid "%c%s... Done"
+msgstr "%c%s... Wedi Gorffen"
-#: ftparchive/contents.cc:317
-#, fuzzy, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Gwall Mewnol, methwyd lleoli aelod %s"
+# FIXME
+#: apt-pkg/contrib/cmndline.cc:77
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)."
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Methwyd neilltuo cof"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Unable to open %s"
-msgstr "Ni ellir agor %s"
+msgid "Command line option %s is not boolean"
+msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Gwrthwneud camffurfiol %s llinell %lu #1"
+msgid "Option %s requires an argument."
+msgstr "Mae'r opsiwn %s yn mynnu ymresymiad."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Gwrthwneud camffurfiol %s llinell %lu #2"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>."
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Gwrthwneud camffurfiol %s llinell %lu #3"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Methwydd darllen y ffeil dargyfeirio %s"
+msgid "Option '%s' is too long"
+msgstr "Opsiwn '%s' yn rhy hir"
-#: ftparchive/multicompress.cc:71
-#, fuzzy, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Dull Cywasgu Anhysbys '%s'"
+# FIXME: 'Sense'?
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Mae'r allbwn cywasgiedig %s angen cywasgiad wedi ei osod"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Methwyd creu FILE*"
+msgid "Invalid operation %s"
+msgstr "Gweithred annilys %s"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Methodd fork()"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s"
-#: ftparchive/multicompress.cc:211
-#, fuzzy
-msgid "Compress child"
-msgstr "Plentyn Cywasgu"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Ni ellir newid i %s"
-#: ftparchive/multicompress.cc:234
-#, fuzzy, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Gwall Mewnol, Methwyd creu %s"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Methwyd gwneud stat() o'r CD-ROM"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Methwyd creu isbroses IPC"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Methwyd gweithredu cywasgydd "
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Methwyd agor y ffeil clo %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "datgywasgydd"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Ddim yn cloi'r ffeil clo ar NFS %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Methodd MA i isbroses/ffeil"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Methwyd cael y clo %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Methwyd darllen wrth gyfrifo MD5"
+#: apt-pkg/contrib/fileutl.cc:377
+#, fuzzy, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Arhoswyd am %s ond nid oedd e yna"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Gwall wrth datgysylltu %s"
-
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "I"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Derbyniodd is-broses %s wall segmentu."
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Gwall crynhoi patrwm - %s"
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Dychwelodd is-broses %s gôd gwall (%u)"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Gorffenodd is-broses %s yn annisgwyl"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is installed"
-msgstr "ond mae %s wedi ei sefydlu"
+msgid "Could not open file %s"
+msgstr "Methwyd agor ffeil %s"
-#: cmdline/apt-get.cc:330
+# FIXME
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
-msgid "but %s is to be installed"
-msgstr "ond mae %s yn mynd i gael ei sefydlu"
+msgid "read, still have %lu to read but none left"
+msgstr "o hyd %lu i ddarllen ond dim ar ôl"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ond ni ellir ei sefydlu"
+# FIXME
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "o hyd %lu i ysgrifennu ond methwyd"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ond mae'n becyn rhithwir"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Gwall wrth gau'r ffeil"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ond nid yw wedi ei sefydlu"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Gwall wrth dadgysylltu'r ffeil"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ond nid yw'n mynd i gael ei sefydlu"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Gwall wrth gyfamseru'r ffeil"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " neu"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Storfa pecyn gwag"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Mae'r ffeil storfa pecyn yn llygredig"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Caiff y pecynnau canlynol eu TYNNU:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn"
-#: cmdline/apt-get.cc:424
-#, fuzzy
-msgid "The following packages have been kept back:"
-msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl"
+# FIXME: capitalisation?
+#: apt-pkg/pkgcache.cc:148
+#, fuzzy, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'"
-#: cmdline/apt-get.cc:445
-#, fuzzy
-msgid "The following packages will be upgraded:"
-msgstr "Caiff y pecynnau canlynol eu uwchraddio"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol"
-#: cmdline/apt-get.cc:466
-#, fuzzy
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Caiff y pecynnau canlynol eu ISRADDIO"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Dibynnu"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "CynDdibynnu"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (oherwydd %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Awgrymu"
-#: cmdline/apt-get.cc:547
-#, 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-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Argymell"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Gwrthdaro"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu wedi ailsefydlu, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Amnewid"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu wedi eu israddio, "
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Darfodi"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "pwysig"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Yn cywiro dibyniaethau..."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "angenrheidiol"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " wedi methu."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "safonnol"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Ni ellir cywiro dibyniaethau"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opsiynnol"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ni ellir bychanu y set uwchraddio"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "ychwanegol"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Wedi Gorffen"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+#, fuzzy
+msgid "Building dependency tree"
+msgstr "Yn Aideladu Coeden Dibyniaeth"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain."
+#: apt-pkg/depcache.cc:122
+#, fuzzy
+msgid "Candidate versions"
+msgstr "Fersiynau Posib"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f."
+#: apt-pkg/depcache.cc:151
+#, fuzzy
+msgid "Dependency generation"
+msgstr "Cynhyrchaid Dibyniaeth"
-#: cmdline/apt-get.cc:704
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
#, fuzzy
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
+msgid "Reading state information"
+msgstr "Yn cyfuno manylion Ar Gael"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr ""
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Methwyd agor %s"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr ""
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Methwyd ysgrifennu ffeil %s"
-#: cmdline/apt-get.cc:717
-#, fuzzy
-msgid "Some packages could not be authenticated"
-msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
+# FIXME: number?
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Mae problemau a defnyddwyd -y heb --force-yes"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Ni ellir gramadegu ffeil becynnau %s (2)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)"
-#: cmdline/apt-get.cc:779
-#, fuzzy
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi."
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
-#: cmdline/apt-get.cc:790
-#, fuzzy
-msgid "Internal error, Ordering didn't finish"
-msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho"
+#: apt-pkg/sourcelist.cc:101
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:108
+#, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
+"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n"
+msgid "Opening %s"
+msgstr "Yn agor %s"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Mae angen cyrchu %sB o archifau.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)"
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n"
+#: apt-pkg/sourcelist.cc:240
+#, fuzzy, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, fuzzy, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Does dim digon o le rhydd yn %s gennych"
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
-#: cmdline/apt-get.cc:864
+# FIXME: %s may have an arbirrary length
+#: apt-pkg/packagemanager.cc:399
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Does dim digon o le rhydd gennych yn %s."
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s "
+"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir "
+"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml."
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Ni chynhelir y math ffeil mynegai '%s'"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ie, gwna fel rydw i'n dweud!"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar "
+"ei gyfer."
-#: cmdline/apt-get.cc:883
-#, fuzzy, c-format
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n"
-"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n"
-" ?]"
+"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi "
+"ei achosi gan pecynnau wedi eu dal."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Erthylu."
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig."
-#: cmdline/apt-get.cc:904
-#, fuzzy
-msgid "Do you want to continue [Y/n]? "
-msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] "
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Methwyd cyrchu %s %s\n"
+msgid "Archive directory %spartial is missing."
+msgstr "Mae'r cyfeiriadur archif %spartial ar goll."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Methodd rhai ffeiliau lawrlwytho"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr ""
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig"
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Yn Darllen Rhestr Ffeiliau"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu "
-"geidio defnyddio --fix-missing?"
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Methwyd canfod y gyrrydd dull %s."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd"
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Ni gychwynodd y dull %s yn gywir"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Ni ellir cywiro pecynnau ar goll."
+#: apt-pkg/acquire-worker.cc:398
+#, fuzzy, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
+" '%s'\n"
+"yn y gyrriant '%s' a gwasgwch Enter\n"
+
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Ni chynhelir y system pecynnu '%s'"
-#: cmdline/apt-get.cc:1011
+#: apt-pkg/init.cc:140
#, fuzzy
-msgid "Aborting install."
-msgstr "Yn Erthylu'r Sefydliad."
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Ni ellir canfod math system addas"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
+msgid "Unable to stat %s."
+msgstr "Ni ellir gwneud stat() o %s."
-#: cmdline/apt-get.cc:1055
-#, 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"
+# FIXME: ...file
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list"
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn."
+
+# FIXME: literal
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'"
-#: cmdline/apt-get.cc:1084
+# FIXME: tense
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Mae'r pecyn %s yn becyn rhithwir a ddarparir gan:\n"
+msgid "Did not understand pin type %s"
+msgstr "Methwyd daeall y math pin %s"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Sefydliwyd]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Dylech ddewis un yn benodol i'w sefydlu."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Mae can y storfa system fersiwn anghyfaddas"
-# FIXME: punctuation
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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:1125
-msgid "However the following packages replace it:"
-msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewPackage)"
-#: cmdline/apt-get.cc:1128
-#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s"
+#: apt-pkg/pkgcachegen.cc:130
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Digwyddod gwall wrth brosesu %s (UsePackage1)"
-#: cmdline/apt-get.cc:1148
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1156
-#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
+#: apt-pkg/pkgcachegen.cc:178
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Digwyddod gwall wrth brosesu %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
-#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'"
+#: apt-pkg/pkgcachegen.cc:182
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
-#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' "
+#: apt-pkg/pkgcachegen.cc:213
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
-#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
+#: apt-pkg/pkgcachegen.cc:217
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Digwyddod gwall wrth brosesu %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau"
+#: apt-pkg/pkgcachegen.cc:221
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Ni ellir cloi'r cyfeiriadur rhestr"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen "
-"rai eu defnyddio yn lle."
+"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:"
+#: apt-pkg/pkgcachegen.cc:301
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Digwyddod gwall wrth brosesu %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil"
-#: cmdline/apt-get.cc:1498
-#, fuzzy
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Methwyd canfod pecyn %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Yn Casglu Darpariaethau Ffeil"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Methwyd canfod pecyn %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Gwall M/A wrth gadw'r storfa ffynhonell"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "methwyd ailenwi, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ond mae %s yn mynd i gael ei sefydlu"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Camgyfatebiaeth swm MD5"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Efallai hoffech rhedeg `apt-get -f install' er mwyn cywiro'r rhain:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Camgyfatebiaeth swm MD5"
-# FIXME
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim "
-"pecyn (neu penodwch ddatrys)"
-# FIXME: needs commas
-#: cmdline/apt-get.cc:1742
+# FIXME: case
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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."
+"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.)"
-# FIXME: commas, wrapping
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Gan y gofynnoch am weithred syml yn unig, mae'n debygol nad yw'r pecyn\n"
-"yn sefydladwy a dylid cyflwyno adroddiad nam yn erbyn y pecyn hwnnw."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pecynnau wedi torri"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Pecynnau a awgrymmir:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Pecynnau a argymhellir:"
-
-#: cmdline/apt-get.cc:1905
-#, fuzzy
-msgid "Calculating upgrade... "
-msgstr "Yn Cyfrifo'r Uwchraddiad... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Wedi Gorffen"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-#, fuzzy
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer"
+"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi "
+"drwsio'r pecyn hyn a law."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s"
-
-#: cmdline/apt-get.cc:2167
-#, fuzzy, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
+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."
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Does dim digon o le rhydd yn %s gennych"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Camgyfatebiaeth maint"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys"
-#: cmdline/apt-get.cc:2199
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n"
-
-#: cmdline/apt-get.cc:2205
-#, fuzzy, c-format
-msgid "Fetch source %s\n"
-msgstr "Cyrchu Ffynhonell %s\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Methwyd cyrchu rhai archifau."
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr ""
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
+msgid "Stored label: %s\n"
+msgstr ""
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Methodd y gorchymyn dadbacio '%s'.\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD Anghywir"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Methodd y gorchymyn adeiladu '%s'.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr ""
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Methodd proses plentyn"
+#: apt-pkg/cdrom.cc:612
+#, fuzzy
+msgid "Waiting for disc...\n"
+msgstr "Yn aros am benawdau"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr ""
+
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
msgstr ""
-"Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/cdrom.cc:678
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s"
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "Nid oes dibyniaethau adeiladu gan %s.\n"
+msgid "Found label '%s'\n"
+msgstr ""
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr ""
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn %"
-"s"
-#: cmdline/apt-get.cc:2482
-#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+#: apt-pkg/cdrom.cc:764
+#, fuzzy
+msgid "Copying package lists..."
+msgstr "Yn Darllen Rhestrau Pecynnau"
+
+#: apt-pkg/cdrom.cc:790
+#, fuzzy
+msgid "Writing new source list\n"
+msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
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:2518
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records.\n"
msgstr ""
-"Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy "
-"newydd"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Methwyd bodloni dibyniaeth %s am %s: %s"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr ""
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s."
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr ""
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Methwyd prosesu dibyniaethau adeiladu"
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#, c-format
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr ""
-#: cmdline/apt-get.cc:2593
-#, fuzzy
-msgid "Supported modules:"
-msgstr "Modylau a Gynhelir:"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
-# FIXME: split
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Defnydd: apt-get [opsiynnau] gorchymyn\n"
-" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n"
-" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n"
-"\n"
-"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n"
-"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n"
-"ddefnyddir amlaf.\n"
-"\n"
-"Gorchmynion:\n"
-" update - Cyrchu rhestrau pecynnau newydd\n"
-" update - Uwchraddio pecynnau wedi sefydlu\n"
-" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n"
-" remove - Tynnu pecynnau\n"
-" source - Lawrlwytho archifau ffynhonell\n"
-" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n"
-" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n"
-" dselect-upgrade - Dilyn dewisiadau dselect\n"
-" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n"
-" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n"
-" check - Gwirio fod dim dibyniaethau torredig\n"
-"\n"
-"Opsiynnau:\n"
-" -h Y testun cymorth hwn.\n"
-" -q Allbwn cofnodadwy - dim dangosydd cynydd\n"
-" -qq Dim allbwn ar wahan i wallau\n"
-" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n"
-" -s Peidio gweithredu. Gwneir efelychiad trefn.\n"
-" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n"
-" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n"
-" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n"
-" -u Dangos rhestr o archifau a uwchraddir hefyd\n"
-" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n"
-" -V Dangos rhifau fersiwn cyflawn\n"
-" -c=? Darllen y ffeil cyfluniad hwn\n"
-" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
-"\n"
-"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n"
-"fwy o wybodaeth ac opsiynnau.\n"
-"\n"
-" Mae gan yr APT hwn bŵerau buwch hudol.\n"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, fuzzy, c-format
+msgid "Preparing %s"
+msgstr "Yn agor %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Presennol "
+#: apt-pkg/deb/dpkgpm.cc:597
+#, fuzzy, c-format
+msgid "Unpacking %s"
+msgstr "Yn agor %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Cyrchu:"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, fuzzy, c-format
+msgid "Preparing to configure %s"
+msgstr "Yn agor y ffeil cyfluniad %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Anwybyddu "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, fuzzy, c-format
+msgid "Configuring %s"
+msgstr "Yn cysylltu i %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Gwall "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
-#: cmdline/acqprogress.cc:135
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Cyrchwyd %sB yn %s (%sB/s)\n"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr " Wedi Sefydlu: "
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid " [Working]"
-msgstr " [Gweithio]"
+msgid "Preparing for removal of %s"
+msgstr ""
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:618
#, 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"
+msgid "Removing %s"
+msgstr "Yn agor %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Cofnod pecyn anhysbys!"
+#: apt-pkg/deb/dpkgpm.cc:619
+#, fuzzy, c-format
+msgid "Removed %s"
+msgstr "Argymell"
-#: cmdline/apt-sortpkgs.cc:150
-#, fuzzy
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Defnydd: apt-sortpkgs [opsiynnau] ffeil1 [ffeil2 ...]\n"
-"\n"
-"Mae apt-sortpkgs yn erfyn syml er mwyn trefnu ffeiliau pecyn. Defnyddir yr\n"
-"opsiwn -s er mwyn penodi pa fath o ffeil ydyw.\n"
-"\n"
-"Opsiynnau:\n"
-" -h Y testun cymorth hwn\n"
-" -s Defnyddio trefnu ffeil ffynhonell\n"
-" -c=? Darllen y ffeil cyfluniad hwn\n"
-" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, fuzzy, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Yn agor y ffeil cyfluniad %s"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Rhagosodiad gwael!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Methwyd dileu %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Gwasgwch Enter er mwyn mynd ymlaen."
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+msgstr ""
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Methwyd agor ffeil %s"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Caewyd y cysylltiad yn gynnar"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linell %d yn rhy hir (uchaf %d)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu "
-"eto."
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
-#: dselect/update:30
#, fuzzy
-msgid "Merging available information"
-msgstr "Yn cyfuno manylion Ar Gael"
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt-da\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-09-06 21:40+0200\n"
"Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n"
"Language-Team: Danish\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Kunne ikke læse cdrom-databasen %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke "
-"bruges til at tilføje nye cd'er"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Forkert cd"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "<Pakken %s version %s har en uopfyldt afhængighed:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk blev ikke fundet."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fil blev ikke fundet"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Kunne ikke finde"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Kunne ikke angive ændringstidspunkt"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ugyldig URI, lokale URI'er må ikke starte med //"
+msgid "Unable to locate package %s"
+msgstr "Kunne ikke lokalisere pakken %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Logget på"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Totale pakkenavne : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Kunne ikke bestemme serverens navn"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normale pakker: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Kunne ikke bestemme det lokale navn"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Rene virtuelle pakker: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Serveren nægtede os forbindelse og sagde: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Enkelte virtuelle pakker: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Blandede virtuelle pakker: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Manglende: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::"
-"ProxyLogin er tom."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Totale forskellige versioner: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Logpå-skriptets kommando '%s' mislykkedes. Serveren sagde: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "Sammenlagt forskellige beskrivelser: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE mislykkedes. Serveren sagde: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Sammenlagt afhængigheder: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Tidsudløb på forbindelsen"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Sammenlagt version/fil-relationer: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Serveren lukkede forbindelsen"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "Sammenlagt version/fil-relationer: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Læsefejl"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Sammenlagt 'Tilbyder'-markeringer: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Mellemlageret blev overfyldt af et svar."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Totalle søgemønsterstrenge: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokolfejl"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total afhængighedsversions-plads: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Skrivefejl"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total 'Slack'-plads: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Kunne ikke oprette sokkel"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total plads, der kan gøres rede for: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Pakkefilen %s er ude af trit."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Mislykkedes"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Du skal angive nøjagtig ét mønster"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Kunne ikke forbinde passiv sokkel."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Fandt ingen pakker"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo kunne ikke få en lyttesokkel"
+# Overskriften til apt-cache policy,
+# forkorter "Package" væk. CH
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pakkefiler:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Kunne ikke tilknytte en sokkel"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Kunne ikke lytte på soklen"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Kunne ikke finde soklens navn"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "'Pinned' pakker:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Kunne ikke sende PORT-kommando"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ikke fundet)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Ukendt adressefamilie %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installeret: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT mislykkedes. Serveren sagde: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ingen)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Tidsudløb på datasokkel-forbindelse"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Kunne ikke acceptere forbindelse"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pakke-pin: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem ved \"hashing\" af fil"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versionstabel:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Kunne ikke hente fil. Serveren sagde '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Tidsudløb ved datasokkel"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Dataoverførsel mislykkedes, serveren sagde '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s oversat %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Forespørgsel"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Kunne ikke udføre "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Forbinder til %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Kan ikke oprette forbindelse til %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Kunne ikke forbinde til %s:%s (%s)."
-
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Forbinder til %s"
-
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Kunne ikke omsætte navnet '%s'"
-
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Midlertidig fejl ved omsætning af navnet '%s'"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Brug: apt-cache [tilvalg] kommando\n"
+" apt-cache [tilvalg] add fil1 [fil2 ...]\n"
+" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n"
+" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n"
+"\n"
+"apt-cache er et lavniveau-værktøj, der bruge håndtere APTs\n"
+"binære mellemlager-filer og hente oplysninger fra dem.\n"
+"\n"
+"Kommandoer:\n"
+" add - Tilføj en pakkefil til kilde-mellemlageret\n"
+" gencaches - Opbyg både pakke- og kilde-mellemlageret\n"
+" showpkg - Vis generelle oplysninger om en enkelt pakke\n"
+" showsrc - Vis kildetekstposter\n"
+" stats - Vis nogle grundlæggende statistikker\n"
+" dump - Vis hele filen i kort form\n"
+" dumpavail - Udlæs en 'available'-fil til standard-ud\n"
+" unmet - Vis uopfyldte afhængigheder\n"
+" search - Gennemsøg pakkelisten med et regulært udtryk\n"
+" show - Vis en læsbar post for pakken\n"
+" depends - Vis de rå afhængighedsoplysninger for en pakke\n"
+" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n"
+" pkgnames - Vis navnene på alle pakker\n"
+" dotty - Generér pakkegrafer til GraphVis\n"
+" xvcg - Generér pakkegrafer til xvcg\n"
+" policy - Vis policy-indstillinger\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst.\n"
+" -p=? Pakke-mellemlageret.\n"
+" -s=? Kilde-mellemlageret.\n"
+" -q Deaktivér fremgangsindikatoren.\n"
+" -i Vis kun vigtige afhængigheder for 'unmet'-kommandoen.\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
+"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Der skete noget underligt under navneomsætning af '%s:%s' (%i)"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Angiv et navn for denne disk, som f.eks. 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Kunne ikke forbinde til %s %s:"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Indsæt en disk i drevet og tryk retur"
-#: methods/gpgv.cc:65
-#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Kunne ikke tilgå nøgleringent '%s'"
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "F: Argumentlisten fra Acquire::gpgv::Options er for lang. Afslutter."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Parametre ikke angivet i par"
-#: methods/gpgv.cc:204
+#: cmdline/apt-config.cc:76
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Stødte på mindst én ugyldig signatur."
+"Brug: apt-config [tilvalg] kommando\n"
+"\n"
+"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n"
+"\n"
+"Kommandoer:\n"
+" shell - Skal-tilstand\n"
+" dump - Vis opsætningen\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst.\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Kunne ikke køre '%s' for at verificere signaturen (er gnupg installeret?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Ukendt fejl ved kørsel af gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Følgende signaturer var ugyldige:\n"
+msgid "%s not a valid DEB package."
+msgstr "%s er ikke en gyldig DEB-pakke."
-#: methods/gpgv.cc:256
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er "
-"tilgængelig:\n"
+"Brug: apt-extracttemplates fil1 [fil2 ...]\n"
+"\n"
+"apt-extracttemplates er et værktøj til at uddrage opsætnings- og skabelon-"
+"oplysninger fra Debianpakker\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst\n"
+" -t Angiv temp-mappe\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:272
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Failed to stat %s"
-msgstr "Kunne ikke finde %s"
+msgid "Unable to write to %s"
+msgstr "Kunne ikke skrive til %s"
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Kunne ikke åbne datarør for %s"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Kan ikke finde debconfs version. Er debconf installeret?"
-#: methods/gzip.cc:109
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Pakkeudvidelseslisten er for lang"
+
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Read error from %s process"
-msgstr "Læsefejl fra %s-process"
+msgid "Error processing directory %s"
+msgstr "Fejl under behandling af mappen %s"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Afventer hoveder"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Kildeudvidelseslisten er for lang"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Fejl under skrivning af hovedet til indholdsfil"
+
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Fandt en enkelt linje i hovedet på over %u tegn"
+msgid "Error processing contents %s"
+msgstr "Fejl under behandling af indhold %s"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Ugyldig linje i hovedet"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Brug: apt-ftparchive [tilvalg] kommando\n"
+"Kommandoer: packges binærsti [tvangsfil [sti]]\n"
+" sources kildesti [tvangsfil [sti]]\n"
+" contents sti\n"
+" release sti\n"
+" generate config [grupper]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive laver indeksfiler til Debianarkiver. Det understøtter \n"
+"mange former for generering, lige fra fuldautomatiske til funktionelle\n"
+"erstatninger for dpkg-scanpackages og dpkg-scansources\n"
+"\n"
+"apt-ftparchive genererer Package-filer ud fra træer af .deb'er.\n"
+"Package-filen indeholder alle styrefelterne fra hver pakke såvel\n"
+"som MD5-mønstre og filstørrelser. En tvangsfil understøttes til at\n"
+"gennemtvinge indholdet af Priority og Section.\n"
+"\n"
+"På samme måde genererer apt-ftparchive Sources-filer ud fra træer\n"
+"med .dsc'er. Tvangstilvalget --source-override kan bruges til at\n"
+"angive en src-tvangsfil.\n"
+"\n"
+"Kommandoerne 'packages' og 'sources' skal køres i roden af træet.\n"
+"binærsti skal pege på basen af rekursive søgninger og tvangsfilen\n"
+"skal indeholde tvangsflagene. Sti foranstilles eventuelle\n"
+"filnavnfelter. Et eksempel på brug fra Debianarkivet:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst\n"
+" --md5 Styr generering af MD5\n"
+" -s=? Kilde-tvangsfil\n"
+" -q Stille\n"
+" -d=? Vælg den valgfrie mellemlager-database\n"
+" --no-delink Aktivér \"delinking\"-fejlsporingstilstand\n"
+" --contents Bestem generering af indholdsfil\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Sæt en opsætnings-indstilling"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "http-serveren sendte et ugyldigt svarhovede"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ingen valg passede"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "http-serveren sendte et ugyldigt Content-Length-hovede"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Visse filer mangler i pakkefilgruppen '%s'"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "http-serveren sendte et ugyldigt Content-Range-hovede"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB var ødelagt, filen omdøbt til %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr ""
-"Denne http-servere har fejlagtig understøttelse af intervaller ('ranges')"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB er gammel, forsøger at opgradere %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Ukendt datoformat"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Databaseformatet er ugyldigt. Hvis du har opgraderet fra en tidligere "
+"version af apt, så fjern og genskab databasen."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Valg mislykkedes"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Kunne ikke åbne DB-filen %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Tidsudløb på forbindelsen"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Kunne ikke finde %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Fejl ved skrivning af uddatafil"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arkivet har ingen kontrolindgang"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Fejl ved skrivning til fil"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Kunne skaffe en markør"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Fejl ved skrivning til filen"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "A: Kunne ikke læse mappen %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Kunne ikke finde finde %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Fejl ved læsning fra server"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Ugyldige hoved-data"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "A: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Forbindelsen mislykkedes"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Fejlene vedrører filen "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Intern fejl"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Kunne ikke omsætte navnet %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kan ikke udføre mmap for en tom fil"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Trævandring mislykkedes"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Kunne ikke udføre mmap for %lu byte"
+msgid "Failed to open %s"
+msgstr "Kunne ikke åbne %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Det valgte %s blev ikke fundet"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Ukendt type-forkortelse: '%c'"
+msgid "Failed to readlink %s"
+msgstr "Kunne ikke 'readlink' %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Åbner konfigurationsfilen %s"
+msgid "Failed to unlink %s"
+msgstr "Kunne ikke frigøre %s"
-#: apt-pkg/contrib/configuration.cc:510
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linjen %d er for lang (maks %u)"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Kunne ikke lænke %s til %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaksfejl %s:%u: Blokken starter uden navn."
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Nåede DeLink-begrænsningen på %sB.\n"
-#: apt-pkg/contrib/configuration.cc:625
-#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaksfejl %s:%u: Forkert udformet mærke"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arkivet havde intet package-felt"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien"
+msgid " %s has no override entry\n"
+msgstr " %s har ingen tvangs-post\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, 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"
+msgid " %s maintainer is %s not %s\n"
+msgstr " pakkeansvarlig for %s er %s, ikke %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger"
+msgid " %s has no source override entry\n"
+msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaksfejl %s:%u: Inkluderet herfra"
+msgid " %s has no binary override entry either\n"
+msgstr ""
+" %s har ingen linje med tilsidesættelse af standard for binøre filer\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv '%s'"
-
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen"
+msgid "Internal error, could not locate member %s"
+msgstr "Intern fejl, kunne ikke finde elementet %s"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Kunne ikke læse %s"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Kunne ikke allokere hukommelse"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Fejl!"
+msgid "Unable to open %s"
+msgstr "Kunne ikke åbne %s"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Færdig"
+msgid "Malformed override %s line %lu #1"
+msgstr "Ugyldig gennemtvangs %s-linje %lu #1"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Kommandolinjetilvalget '%c' [fra %s] kendes ikke."
+msgid "Malformed override %s line %lu #2"
+msgstr "Ugyldig gennemtvangs %s-linje %lu #2"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Kommandolinjetilvalget %s blev ikke forstået"
+msgid "Malformed override %s line %lu #3"
+msgstr "Ugyldig gennemtvangs %s-linje %lu #3"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Kommandolinjetilvalget %s er ikke boolsk"
+msgid "Failed to read the override file %s"
+msgstr "Kunne ikke læse gennemtvangsfilen %s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Tilvalget %s kræver et parameter."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Ukendt komprimeringsalgoritme '%s'"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>."
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimerede uddata %s kræver et komprimeringssæt"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Tilvalget %s kræver et heltalligt parameter, ikke '%s'"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Kunne ikke oprette IPC-videreførsel til underproces"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Tilvalget '%s' er for langt"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Kunne ikke oprette FILE*"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "%s blev ikke forstået, prøv med 'true' eller 'false'."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Kunne ikke spalte"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Ugyldig handling %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Komprimer barn"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Kunne ikke finde monteringspunktet %s"
+msgid "Internal error, failed to create %s"
+msgstr "Intern fejl. Kunne ikke oprette %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Kunne ikke skifte til %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Kunne ikke oprette underproces IPC"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Kunne ikke finde cdrommen"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Kunne ikke udføre komprimeringsprogram"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekomprimerings-program"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Kunne ikke åbne låsefilen %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO til underproces/fil mislykkedes"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Benytter ikke låsning for nfs-monteret låsefil %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Kunne ikke læse under beregning af MD5"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not get lock %s"
-msgstr "Kunne ikke opnå låsen %s"
+msgid "Problem unlinking %s"
+msgstr "Problem under aflænkning af %s"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Ventede på %s, men den var der ikke"
+msgid "Failed to rename %s to %s"
+msgstr "Kunne ikke omdøbe %s til %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Underprocessen %s modtog en segmenteringsfejl."
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Underprocessen %s returnerede en fejlkode (%u)"
+msgid "Regex compilation error - %s"
+msgstr "Fejl ved tolkning af regulært udtryk - %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Underprocessen %s afsluttedes uventet"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgende pakker har uopfyldte afhængigheder:"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Could not open file %s"
-msgstr "Kunne ikke åbne filen %s"
+msgid "but %s is installed"
+msgstr "men %s er installeret"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "læs, mangler stadig at læse %lu men der er ikke flere"
+msgid "but %s is to be installed"
+msgstr "men %s forventes installeret"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "skriv, mangler stadig at skrive %lu men kunne ikke"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "men den kan ikke installeres"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem under lukning af fil"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "men det er en virtuel pakke"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Fejl ved frigivelse af filen"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "men den er ikke installeret"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem under synkronisering af fil"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "men den bliver ikke installeret"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Tomt pakke-mellemlager"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " eller"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Pakke-mellemlagerets fil er ødelagt"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Følgende NYE pakker vil blive installeret:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Pakke-mellemlagerets fil er af en inkompatibel version"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Følgende pakker vil blive AFINSTALLERET:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Denne APT understøtter ikke versionssystemet '%s'"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Følgende pakker er blevet holdt tilbage:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Pakke-mellemlageret er lavet til en anden arkitektur"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Følgende pakker vil blive opgraderet:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Afhængigheder"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Følgende pakker vil blive NEDGRADERET:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Præ-afhængigheder"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Følgende tilbageholdte pakker vil blive ændret:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Foreslåede"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (grundet %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Anbefalede"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Konflikter"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu opgraderes, %lu nyinstalleres, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Erstatter"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu geninstalleres, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Overflødiggør"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderes, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr "Ødelægger"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu afinstalleres og %lu opgraderes ikke.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "vigtig"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "krævet"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Retter afhængigheder..."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " mislykkedes."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "frivillig"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Kunne ikke rette afhængigheder"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "ekstra"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Kunne ikke minimere opgraderingssættet"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Opbygger afhængighedstræ"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Færdig"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandidatversioner"
+#: cmdline/apt-get.cc:682
+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-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Afhængighedsgenerering"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Uopfyldte afhængigheder. Prøv med -f."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr "Læser tilstandsoplysninger"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!"
-#: apt-pkg/depcache.cc:219
-#, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Kunne ikke åbne StateFile %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Autentifikationsadvarsel tilsidesat.\n"
-#: apt-pkg/depcache.cc:225
-#, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Kunne ikke skrive den midlertidige StateFile %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Installér disse pakker uden verifikation (y/N)? "
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Kunne ikke tolke pakkefilen %s (1)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Nogle pakker kunne ikke autentificeres"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Kunne ikke tolke pakkefilen %s (2)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Der er problemer og -y blev brugt uden --force-yes"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Ugyldig linje %lu i kildelisten %s (URI)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Ugyldig linje %lu i kildelisten %s (dist)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakker skal afinstalleres, men Remove er deaktiveret."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern fejl. Sortering blev ikke fuldført"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Kunne ikke låse nedhentningsmappen"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Listen med kilder kunne ikke læses."
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Åbner %s"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linjen %u er for lang i kildelisten %s."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%sB/%sB skal hentes fra arkiverne.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Ugyldig linje %u i kildelisten %s (type)"
+msgid "Need to get %sB of archives.\n"
+msgstr "%sB skal hentes fra arkiverne.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Efter udpakning vil %sB yderligere diskplads være brugt.\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Efter udpakning vil %sB diskplads blive frigjort.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typen '%s' er ukendt på linje %u i kildelisten %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Kunne ikke bestemme ledig plads i %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Ugyldig linje %u i kildelisten %s (producent-id)"
+msgid "You don't have enough free space in %s."
+msgstr "Du har ikke nok ledig plads i %s."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, gør som jeg siger!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Kørsel af denne installation kræver midlertidig afinstallation af den "
-"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig "
-"idé, men hvis du virkelig vil gøre det, kan du aktivere valget 'APT::Force-"
-"LoopBreak'."
+"Du er ved at gøre noget, der kan være skadeligt\n"
+"For at fortsætte, skal du skrive '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indeksfiler af typen '%s' understøttes ikke"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Afbryder."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Vil du fortsætte [J/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den."
+msgid "Failed to fetch %s %s\n"
+msgstr "Kunne ikke hente %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Nedhentningen af filer mislykkedes"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes "
-"tilbageholdte pakker."
+"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' "
+"eller prøv med --fix-missing."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing og medieskift understøttes endnu ikke"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Listemappen %spartial mangler."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Kunne ikke rette manglende pakker."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Arkivmappen %spartial mangler."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Afbryder installationen."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Henter fil %li ud af %li (%s tilbage)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Bemærk, at %s vælges fremfor %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Henter fil %li ud af %li"
+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"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Metodedriveren %s blev ikke fundet."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pakken %s er ikke installeret, så den afinstalleres ikke\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoden %s startede ikke korrekt"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pakken %s er en virtuel pakke, der kan leveres af:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Indsæt disken med navnet: '%s' i drevet '%s' og tryk retur."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installeret]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Du bør eksplicit vælge en at installere."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Pakkesystemet '%s' understøttes ikke"
+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"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Kunne ikke bestemme en passende pakkesystemtype"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Dog kan følgende pakker erstatte den:"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Unable to stat %s."
-msgstr "Kunne ikke finde %s."
+msgid "Package %s has no installation candidate"
+msgstr "Pakken %s har ingen installationskandidat"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Du skal have nogle 'source'-URI'er i din sources.list"
+#: cmdline/apt-get.cc:1156
+#, 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"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Listen med kilder kunne ikke læses."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Du kan muligvis rette problemet ved at køre 'apt-get update'"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ugyldig indgang i indstillingsfilen. Pakkehovedet mangler"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Kunne ikke forstå pin-type %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Mellemlageret benytter en inkompatibel versionsstyring"
-
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Der skete en fejl under behandlingen af %s (NewPackage)"
-
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Der skete en fejl under behandlingen af %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc1)"
+msgid "%s is already the newest version.\n"
+msgstr "%s er i forvejen den nyeste version.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Der skete en fejl under behandlingen af %s (UsePackage2)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Udgaven '%s' for '%s' blev ikke fundet"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Der skete en fejl under behandlingen af %s (NewFileVer1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versionen '%s' for '%s' blev ikke fundet"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Der skete en fejl under behandlingen af %s (NewVersion1)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Valgte version %s (%s) af %s\n"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Der skete en fejl under behandlingen af %s (UsePackage3)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "'update'-kommandoen benytter ingen parametre"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Der skete en fejl under behandlingen af %s (NewVersion2)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Kunne ikke låse listemappen"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere."
+"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte "
+"AutoRemover"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Følgende pakker blev installeret automatisk, og behøves ikke længere:"
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "Brug 'apt-get autoremove' til at fjerne dem."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere."
+"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n"
+"burde kunne ske. Indsend venligst en fejlrapport om apt."
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Der skete en fejl under behandlingen af %s (FindPkg)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Der skete en fejl under behandlingen af %s (CollectfileProvides)"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern fejl. AutoRemover ødelagde noget"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Intern fejl, AllUpgrade ødelagde noget"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Kunne ikke finde kildepakkelisten %s"
-
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Indlæser pakkelisterne"
-
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Samler filudbud"
+msgid "Couldn't find task %s"
+msgstr "Kunne ikke finde opgaven %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "Kunne ikke skrive til %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO-fejl ved gemning af kilde-mellemlageret"
+msgid "Couldn't find package %s"
+msgstr "Kunne ikke finde pakken %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "omdøbning mislykkedes, %s (%s -> %s)."
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Bemærk, vælger %s som regulært udtryk '%s'\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum stemmer ikke"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s sat til manuelt installeret.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum stemmer ikke"
+#: cmdline/apt-get.cc:1735
+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-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n"
+"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv "
+"en løsning)."
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1750
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)"
+"Some 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 ""
-"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)"
+"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-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er "
-"nødt til manuelt at reparere denne pakke."
+"Siden du kan bad om en enkelt handling, kan pakken højst sandsynligt slet\n"
+"ikke installeres og du bør indsende en fejlrapport for denne pakke."
-#: apt-pkg/acquire-item.cc:1304
-#, 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."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Ødelagte pakker"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Størrelsen stemmer ikke"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Følgende yderligere pakker vil blive installeret:"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Leverandørblok %s inderholder intet fingeraftryk"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Foreslåede pakker:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Bruger cdrom-monteringspunktet %s\n"
-"Monterer cdrom\n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Anbefalede pakker:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificerer.. "
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Beregner opgraderingen... "
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Gemt mærkat: %s \n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Mislykkedes"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Bruger cdrom-monteringspunktet %s\n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Færdig"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Afmonterer cdrom\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Intern fejl. Problemløseren ødelagde noget"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Venter på disken...\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Du skal angive mindst én pakke at hente kildeteksten til"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Monterer cdrom...\n"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Kunne ikke finde kildetekstpakken for %s"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Skanner disken for indeksfiler..\n"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Overspringer allerede hentet fil '%s'\n"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid ""
-#| "Found %i package indexes, %i source indexes, %i translation indexes and %"
-#| "i signatures\n"
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Fandt %i pakkeindekser, %i kildeindekser, %i oversættelsesindekser og %i "
-"signaturer\n"
-
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Found label '%s'\n"
-msgstr "Fandt mærkatet '%s'\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Det er ikke et gyldigt navn, prøv igen.\n"
+msgid "You don't have enough free space in %s"
+msgstr "Du har ikke nok ledig plads i %s"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Denne disk hedder: \n"
-" %s \n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopierer pakkelisterne..."
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Skriver ny kildeliste\n"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "%sB skal hentes fra kildetekst-arkiverne.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Denne disk har følgende kildeliste-indgange:\n"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Henter kildetekst %s\n"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "Afmonterer cdrom...\n"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Nogle arkiver kunne ikke hentes."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Skrev %i poster.\n"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Skrev %i poster med %i manglende filer.\n"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Udpakningskommandoen '%s' fejlede.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Skrev %i poster med %i ikke-trufne filer\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Tjek om pakken 'dpkg-dev' er installeret.\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n"
+msgid "Build command '%s' failed.\n"
+msgstr "Opbygningskommandoen '%s' fejlede.\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-#| msgid "Lists directory %spartial is missing."
-msgid "Directory '%s' missing"
-msgstr "Listemappen %spartial mangler."
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Barneprocessen fejlede"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Klargør %s"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unpacking %s"
-msgstr "Pakker %s ud"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Gør klar til at sætte %s op"
+msgid "%s has no build depends.\n"
+msgstr "%s har ingen opbygningsafhængigheder.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Configuring %s"
-msgstr "Sætter %s op"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Fejl under behandling af mappen %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Installed %s"
-msgstr "Installerede %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s-afhængigheden for %s kan ikke opfyldes, da ingen af de tilgængelige "
+"udgaver af pakken %s kan tilfredsstille versions-kravene"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Gør klar til afinstallation af %s"
+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"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Removing %s"
-msgstr "Fjerner %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Removed %s"
-msgstr "Fjernede %s"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes."
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Gør klar til at fjerne %s helt"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Kunne ikke behandler opbygningsafhængighederne"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Fjernede %s helt"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Understøttede moduler:"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
+"Brug: apt-get [tilvalg] kommando\n"
+" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n"
+" apt-get [tilvalg] source pakke1 [pakke2 ...]\n"
+"\n"
+"apt-get er en simpel kommandolinjegrænseflade til at hente og\n"
+"installere pakker. De hyppigst brugte kommandoer er update og\n"
+"install.\n"
+"\n"
+"Kommandoer:\n"
+" update - Hent nye lister over pakker\n"
+" upgrade - Udfør en opgradering\n"
+" install - Installér nye pakker (pakke er libc6, ikke libc6.deb)\n"
+" remove - Afinstallér pakker\n"
+" purge - Fjern og udrens pakker\n"
+" source - Hent kildetekstarkiver\n"
+" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n"
+" dist-upgrade - Distributionsopgradering, se apt-get(8)\n"
+" dselect-upgrade - Følg valgene fra dselect\n"
+" clean - Slet hentede arkivfiler\n"
+" autoclean - Slet gamle hentede arkivfiler\n"
+" check - Tjek at der ikke er uopfyldte afhængigheder\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst.\n"
+" -q Uddata, der kan logges - ingen fremgangsindikator\n"
+" -qq Ingen uddata, kun fejl\n"
+" -d Hent kun - installér eller udpak IKKE arkiverne\n"
+" -s Gør intet. Simulér handlingen\n"
+" -y Antag 'ja'-svar til alle spørgsmål uden at spørge\n"
+" -f Forsøg at fortsætte selvom integritetstjek fejler\n"
+" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n"
+" -u Vis også en liste over opgraderede pakker\n"
+" -b Byg kildetekstpakken efter at have hentet den\n"
+" -V Vis detaljerede versionsnumre\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Angiv et opsætningsvalg. F.eks. -o dir::cache=/tmp\n"
+"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n"
+"for flere oplysninger og tilvalg.\n"
+" Denne APT har \"Super Cow Powers\".\n"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Kunne ikke påføre filen %s en lap"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Kunne ikke oprette IPC-videreførsel til underproces"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Havde "
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Forbindelsen lukkedes for hurtigt"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Henter:"
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Kunne ikke oprette videreførsler"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ignorerer "
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Kunne ikke udføre gzip "
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Fejl "
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Ødelagt arkiv"
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hentede %sB på %s (%sB/s)\n"
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Tar-tjeksum fejlede, arkivet er ødelagt"
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [Arbejder]"
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Ukendt TAR-hovedtype %u, element %s"
+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"
-#: apt-inst/contrib/arfile.cc:70
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Ukendt pakkeindgang!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Brug: apt-sortpkgs [tilvalg] fil1 [fil2 ...]\n"
+"\n"
+"apt-sortpkgs er et simpelt værktøj til at sortere pakkefiler. Tilvalget -s\n"
+"bruges til at angive filens type.\n"
+"\n"
+"Tilvalg:\n"
+" -h Denne hjælpetekst\n"
+" -s Benyt kildefils-sortering\n"
+" -c=? Læs denne opsætningsfil\n"
+" -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Ugyldig standardindstilling!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Tryk retur for at fortsætte."
+
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Der opstod fejl under udpakningen. Jeg vil opsætte de"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "pakker, der blev installeret. Det kan give gentagne fejl"
+
+#: dselect/install:102
+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:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Sammenfletter tilgængelighedsoplysninger"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Kunne ikke oprette videreførsler"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Kunne ikke udføre gzip "
+
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Ødelagt arkiv"
+
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Tar-tjeksum fejlede, arkivet er ødelagt"
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Ukendt TAR-hovedtype %u, element %s"
+
+#: apt-inst/contrib/arfile.cc:70
msgid "Invalid archive signature"
msgstr "Ugyldig arkivsignatur"
msgid "The diversion path is too long"
msgstr "Omrokeringsstien er for lang"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Kunne ikke omdøbe %s til %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "File %s/%s overskriver filen i pakken %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Kunne ikke læse %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Mapperne info og temp skal ligge i samme filsystem"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Indlæser pakkelisterne"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler '%s'-elementet"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, 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'-"
msgid "Unparsable control file"
msgstr "Ikke-tolkbar kontrolfil"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Kunne ikke lokalisere pakken %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Kunne ikke læse cdrom-databasen %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Totale pakkenavne : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke "
+"bruges til at tilføje nye cd'er"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normale pakker: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Forkert cd"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Rene virtuelle pakker: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Enkelte virtuelle pakker: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk blev ikke fundet."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Blandede virtuelle pakker: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fil blev ikke fundet"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Manglende: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Kunne ikke finde"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Totale forskellige versioner: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Kunne ikke angive ændringstidspunkt"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "Sammenlagt forskellige beskrivelser: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ugyldig URI, lokale URI'er må ikke starte med //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Sammenlagt afhængigheder: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Logget på"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Sammenlagt version/fil-relationer: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Kunne ikke bestemme serverens navn"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "Sammenlagt version/fil-relationer: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Kunne ikke bestemme det lokale navn"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Sammenlagt 'Tilbyder'-markeringer: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Serveren nægtede os forbindelse og sagde: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Totalle søgemønsterstrenge: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total afhængighedsversions-plads: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total 'Slack'-plads: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::"
+"ProxyLogin er tom."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total plads, der kan gøres rede for: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Logpå-skriptets kommando '%s' mislykkedes. Serveren sagde: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakkefilen %s er ude af trit."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE mislykkedes. Serveren sagde: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Du skal angive nøjagtig ét mønster"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Tidsudløb på forbindelsen"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Fandt ingen pakker"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Serveren lukkede forbindelsen"
-# Overskriften til apt-cache policy,
-# forkorter "Package" væk. CH
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pakkefiler:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Læsefejl"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Mellemlageret blev overfyldt af et svar."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokolfejl"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "'Pinned' pakker:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Skrivefejl"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ikke fundet)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Kunne ikke oprette sokkel"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installeret: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ingen)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Kunne ikke forbinde passiv sokkel."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidat: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo kunne ikke få en lyttesokkel"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pakke-pin: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Kunne ikke tilknytte en sokkel"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versionstabel:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Kunne ikke lytte på soklen"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Kunne ikke finde soklens navn"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Kunne ikke sende PORT-kommando"
+
+#: methods/ftp.cc:789
#, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s oversat %s %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Ukendt adressefamilie %u (AF_*)"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Brug: apt-cache [tilvalg] kommando\n"
-" apt-cache [tilvalg] add fil1 [fil2 ...]\n"
-" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n"
-" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n"
-"\n"
-"apt-cache er et lavniveau-værktøj, der bruge håndtere APTs\n"
-"binære mellemlager-filer og hente oplysninger fra dem.\n"
-"\n"
-"Kommandoer:\n"
-" add - Tilføj en pakkefil til kilde-mellemlageret\n"
-" gencaches - Opbyg både pakke- og kilde-mellemlageret\n"
-" showpkg - Vis generelle oplysninger om en enkelt pakke\n"
-" showsrc - Vis kildetekstposter\n"
-" stats - Vis nogle grundlæggende statistikker\n"
-" dump - Vis hele filen i kort form\n"
-" dumpavail - Udlæs en 'available'-fil til standard-ud\n"
-" unmet - Vis uopfyldte afhængigheder\n"
-" search - Gennemsøg pakkelisten med et regulært udtryk\n"
-" show - Vis en læsbar post for pakken\n"
-" depends - Vis de rå afhængighedsoplysninger for en pakke\n"
-" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n"
-" pkgnames - Vis navnene på alle pakker\n"
-" dotty - Generér pakkegrafer til GraphVis\n"
-" xvcg - Generér pakkegrafer til xvcg\n"
-" policy - Vis policy-indstillinger\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst.\n"
-" -p=? Pakke-mellemlageret.\n"
-" -s=? Kilde-mellemlageret.\n"
-" -q Deaktivér fremgangsindikatoren.\n"
-" -i Vis kun vigtige afhængigheder for 'unmet'-kommandoen.\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
-"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT mislykkedes. Serveren sagde: %s"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Angiv et navn for denne disk, som f.eks. 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Tidsudløb på datasokkel-forbindelse"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Indsæt en disk i drevet og tryk retur"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Kunne ikke acceptere forbindelse"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem ved \"hashing\" af fil"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Parametre ikke angivet i par"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Kunne ikke hente fil. Serveren sagde '%s'"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Brug: apt-config [tilvalg] kommando\n"
-"\n"
-"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n"
-"\n"
-"Kommandoer:\n"
-" shell - Skal-tilstand\n"
-" dump - Vis opsætningen\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst.\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Tidsudløb ved datasokkel"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s er ikke en gyldig DEB-pakke."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Dataoverførsel mislykkedes, serveren sagde '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Brug: apt-extracttemplates fil1 [fil2 ...]\n"
-"\n"
-"apt-extracttemplates er et værktøj til at uddrage opsætnings- og skabelon-"
-"oplysninger fra Debianpakker\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst\n"
-" -t Angiv temp-mappe\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Forespørgsel"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Kan ikke finde debconfs version. Er debconf installeret?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Kunne ikke udføre "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Pakkeudvidelseslisten er for lang"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Forbinder til %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Fejl under behandling af mappen %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Kildeudvidelseslisten er for lang"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Fejl under skrivning af hovedet til indholdsfil"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Kan ikke oprette forbindelse til %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Fejl under behandling af indhold %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Brug: apt-ftparchive [tilvalg] kommando\n"
-"Kommandoer: packges binærsti [tvangsfil [sti]]\n"
-" sources kildesti [tvangsfil [sti]]\n"
-" contents sti\n"
-" release sti\n"
-" generate config [grupper]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive laver indeksfiler til Debianarkiver. Det understøtter \n"
-"mange former for generering, lige fra fuldautomatiske til funktionelle\n"
-"erstatninger for dpkg-scanpackages og dpkg-scansources\n"
-"\n"
-"apt-ftparchive genererer Package-filer ud fra træer af .deb'er.\n"
-"Package-filen indeholder alle styrefelterne fra hver pakke såvel\n"
-"som MD5-mønstre og filstørrelser. En tvangsfil understøttes til at\n"
-"gennemtvinge indholdet af Priority og Section.\n"
-"\n"
-"På samme måde genererer apt-ftparchive Sources-filer ud fra træer\n"
-"med .dsc'er. Tvangstilvalget --source-override kan bruges til at\n"
-"angive en src-tvangsfil.\n"
-"\n"
-"Kommandoerne 'packages' og 'sources' skal køres i roden af træet.\n"
-"binærsti skal pege på basen af rekursive søgninger og tvangsfilen\n"
-"skal indeholde tvangsflagene. Sti foranstilles eventuelle\n"
-"filnavnfelter. Et eksempel på brug fra Debianarkivet:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst\n"
-" --md5 Styr generering af MD5\n"
-" -s=? Kilde-tvangsfil\n"
-" -q Stille\n"
-" -d=? Vælg den valgfrie mellemlager-database\n"
-" --no-delink Aktivér \"delinking\"-fejlsporingstilstand\n"
-" --contents Bestem generering af indholdsfil\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Sæt en opsætnings-indstilling"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Kunne ikke forbinde til %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Ingen valg passede"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Forbinder til %s"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:167
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Visse filer mangler i pakkefilgruppen '%s'"
+msgid "Could not resolve '%s'"
+msgstr "Kunne ikke omsætte navnet '%s'"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:173
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB var ødelagt, filen omdøbt til %s.old"
+msgid "Temporary failure resolving '%s'"
+msgstr "Midlertidig fejl ved omsætning af navnet '%s'"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:176
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB er gammel, forsøger at opgradere %s"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Der skete noget underligt under navneomsætning af '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Kunne ikke forbinde til %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Kunne ikke tilgå nøgleringent '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "F: Argumentlisten fra Acquire::gpgv::Options er for lang. Afslutter."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Databaseformatet er ugyldigt. Hvis du har opgraderet fra en tidligere "
-"version af apt, så fjern og genskab databasen."
+"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Stødte på mindst én ugyldig signatur."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Kunne ikke åbne DB-filen %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Kunne ikke køre '%s' for at verificere signaturen (er gnupg installeret?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arkivet har ingen kontrolindgang"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Ukendt fejl ved kørsel af gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Kunne skaffe en markør"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Følgende signaturer var ugyldige:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er "
+"tilgængelig:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "A: Kunne ikke læse mappen %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Kunne ikke åbne datarør for %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Kunne ikke finde finde %s\n"
+msgid "Read error from %s process"
+msgstr "Læsefejl fra %s-process"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Afventer hoveder"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "A: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Fandt en enkelt linje i hovedet på over %u tegn"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Fejlene vedrører filen "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Ugyldig linje i hovedet"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Kunne ikke omsætte navnet %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "http-serveren sendte et ugyldigt svarhovede"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Trævandring mislykkedes"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "http-serveren sendte et ugyldigt Content-Length-hovede"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "http-serveren sendte et ugyldigt Content-Range-hovede"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr ""
+"Denne http-servere har fejlagtig understøttelse af intervaller ('ranges')"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Ukendt datoformat"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Valg mislykkedes"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Tidsudløb på forbindelsen"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Fejl ved skrivning af uddatafil"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Fejl ved skrivning til fil"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Fejl ved skrivning til filen"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Fejl ved læsning fra server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Ugyldige hoved-data"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Forbindelsen mislykkedes"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Intern fejl"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kan ikke udføre mmap for en tom fil"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Kunne ikke åbne %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Kunne ikke udføre mmap for %lu byte"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Det valgte %s blev ikke fundet"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Kunne ikke 'readlink' %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Ukendt type-forkortelse: '%c'"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Kunne ikke frigøre %s"
+msgid "Opening configuration file %s"
+msgstr "Åbner konfigurationsfilen %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Kunne ikke lænke %s til %s"
+msgid "Line %d too long (max %u)"
+msgstr "Linjen %d er for lang (maks %u)"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Nåede DeLink-begrænsningen på %sB.\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaksfejl %s:%u: Blokken starter uden navn."
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arkivet havde intet package-felt"
+#: apt-pkg/contrib/configuration.cc:630
+#, c-format
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaksfejl %s:%u: Forkert udformet mærke"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s har ingen tvangs-post\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " pakkeansvarlig for %s er %s, ikke %s\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr ""
-" %s har ingen linje med tilsidesættelse af standard for binøre filer\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaksfejl %s:%u: Inkluderet herfra"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Intern fejl, kunne ikke finde elementet %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv '%s'"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Kunne ikke allokere hukommelse"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Unable to open %s"
-msgstr "Kunne ikke åbne %s"
+msgid "%c%s... Error!"
+msgstr "%c%s... Fejl!"
+
+#: apt-pkg/contrib/progress.cc:155
+#, c-format
+msgid "%c%s... Done"
+msgstr "%c%s... Færdig"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Ugyldig gennemtvangs %s-linje %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Kommandolinjetilvalget '%c' [fra %s] kendes ikke."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Ugyldig gennemtvangs %s-linje %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Kommandolinjetilvalget %s blev ikke forstået"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Ugyldig gennemtvangs %s-linje %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Kommandolinjetilvalget %s er ikke boolsk"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Kunne ikke læse gennemtvangsfilen %s"
+msgid "Option %s requires an argument."
+msgstr "Tilvalget %s kræver et parameter."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Ukendt komprimeringsalgoritme '%s'"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimerede uddata %s kræver et komprimeringssæt"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Tilvalget %s kræver et heltalligt parameter, ikke '%s'"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Kunne ikke oprette FILE*"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Tilvalget '%s' er for langt"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Kunne ikke spalte"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "%s blev ikke forstået, prøv med 'true' eller 'false'."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Komprimer barn"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Ugyldig handling %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Intern fejl. Kunne ikke oprette %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Kunne ikke finde monteringspunktet %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Kunne ikke oprette underproces IPC"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Kunne ikke skifte til %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Kunne ikke udføre komprimeringsprogram"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Kunne ikke finde cdrommen"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekomprimerings-program"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO til underproces/fil mislykkedes"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Kunne ikke åbne låsefilen %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Kunne ikke læse under beregning af MD5"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Benytter ikke låsning for nfs-monteret låsefil %s"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem under aflænkning af %s"
+msgid "Could not get lock %s"
+msgstr "Kunne ikke opnå låsen %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Ventede på %s, men den var der ikke"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fejl ved tolkning af regulært udtryk - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Underprocessen %s modtog en segmenteringsfejl."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgende pakker har uopfyldte afhængigheder:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Underprocessen %s returnerede en fejlkode (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installeret"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Underprocessen %s afsluttedes uventet"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s forventes installeret"
+msgid "Could not open file %s"
+msgstr "Kunne ikke åbne filen %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "men den kan ikke installeres"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "læs, mangler stadig at læse %lu men der er ikke flere"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "men det er en virtuel pakke"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "skriv, mangler stadig at skrive %lu men kunne ikke"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "men den er ikke installeret"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem under lukning af fil"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "men den bliver ikke installeret"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Fejl ved frigivelse af filen"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " eller"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem under synkronisering af fil"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Følgende NYE pakker vil blive installeret:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Tomt pakke-mellemlager"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Følgende pakker vil blive AFINSTALLERET:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Pakke-mellemlagerets fil er ødelagt"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Følgende pakker er blevet holdt tilbage:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Pakke-mellemlagerets fil er af en inkompatibel version"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Følgende pakker vil blive opgraderet:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Denne APT understøtter ikke versionssystemet '%s'"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Følgende pakker vil blive NEDGRADERET:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Pakke-mellemlageret er lavet til en anden arkitektur"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Følgende tilbageholdte pakker vil blive ændret:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Afhængigheder"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (grundet %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Præ-afhængigheder"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Foreslåede"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu opgraderes, %lu nyinstalleres, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Anbefalede"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu geninstalleres, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Konflikter"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderes, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Erstatter"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu afinstalleres og %lu opgraderes ikke.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Overflødiggør"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "Ødelægger"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Retter afhængigheder..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "vigtig"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " mislykkedes."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "krævet"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Kunne ikke rette afhængigheder"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Kunne ikke minimere opgraderingssættet"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "frivillig"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Færdig"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "ekstra"
-#: cmdline/apt-get.cc:679
-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-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Opbygger afhængighedstræ"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Uopfyldte afhængigheder. Prøv med -f."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandidatversioner"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Afhængighedsgenerering"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Autentifikationsadvarsel tilsidesat.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "Læser tilstandsoplysninger"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Installér disse pakker uden verifikation (y/N)? "
+#: apt-pkg/depcache.cc:219
+#, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Kunne ikke åbne StateFile %s"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Nogle pakker kunne ikke autentificeres"
+#: apt-pkg/depcache.cc:225
+#, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Kunne ikke skrive den midlertidige StateFile %s"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Der er problemer og -y blev brugt uden --force-yes"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Kunne ikke tolke pakkefilen %s (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Kunne ikke tolke pakkefilen %s (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakker skal afinstalleres, men Remove er deaktiveret."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Ugyldig linje %lu i kildelisten %s (URI)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern fejl. Sortering blev ikke fuldført"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Ugyldig linje %lu i kildelisten %s (dist)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Kunne ikke låse nedhentningsmappen"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Mystisk.. Størrelserne passede ikke, skriv til apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%sB/%sB skal hentes fra arkiverne.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%sB skal hentes fra arkiverne.\n"
+msgid "Opening %s"
+msgstr "Åbner %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Efter udpakning vil %sB yderligere diskplads være brugt.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Linjen %u er for lang i kildelisten %s."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Efter udpakning vil %sB diskplads blive frigjort.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Ugyldig linje %u i kildelisten %s (type)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kunne ikke bestemme ledig plads i %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typen '%s' er ukendt på linje %u i kildelisten %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Du har ikke nok ledig plads i %s."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Ugyldig linje %u i kildelisten %s (producent-id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"Kørsel af denne installation kræver midlertidig afinstallation af den "
+"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig "
+"idé, men hvis du virkelig vil gøre det, kan du aktivere valget 'APT::Force-"
+"LoopBreak'."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, gør som jeg siger!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Indeksfiler af typen '%s' understøttes ikke"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Du er ved at gøre noget, der kan være skadeligt\n"
-"For at fortsætte, skal du skrive '%s'\n"
-" ?] "
+"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Afbryder."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes "
+"tilbageholdte pakker."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Vil du fortsætte [J/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Kunne ikke hente %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Nedhentningen af filer mislykkedes"
+msgid "Lists directory %spartial is missing."
+msgstr "Listemappen %spartial mangler."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Arkivmappen %spartial mangler."
-#: cmdline/apt-get.cc:1001
-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."
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Henter fil %li ud af %li (%s tilbage)"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing og medieskift understøttes endnu ikke"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Henter fil %li ud af %li"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Kunne ikke rette manglende pakker."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Metodedriveren %s blev ikke fundet."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Afbryder installationen."
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Metoden %s startede ikke korrekt"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Bemærk, at %s vælges fremfor %s\n"
+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."
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/init.cc:124
#, 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"
+msgid "Packaging system '%s' is not supported"
+msgstr "Pakkesystemet '%s' understøttes ikke"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Kunne ikke bestemme en passende pakkesystemtype"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakken %s er ikke installeret, så den afinstalleres ikke\n"
+msgid "Unable to stat %s."
+msgstr "Kunne ikke finde %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Du skal have nogle 'source'-URI'er i din sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Du kan muligvis rette problemet ved at køre 'apt-get update'"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ugyldig indgang i indstillingsfilen. Pakkehovedet mangler"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Pakken %s er en virtuel pakke, der kan leveres af:\n"
+msgid "Did not understand pin type %s"
+msgstr "Kunne ikke forstå pin-type %s"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installeret]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Du bør eksplicit vælge en at installere."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Mellemlageret benytter en inkompatibel versionsstyring"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Der skete en fejl under behandlingen af %s (NewPackage)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Dog kan følgende pakker erstatte den:"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Der skete en fejl under behandlingen af %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc1)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Pakken %s har ingen installationskandidat"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Der skete en fejl under behandlingen af %s (UsePackage2)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:182
#, 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"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Der skete en fejl under behandlingen af %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s er i forvejen den nyeste version.\n"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Der skete en fejl under behandlingen af %s (NewVersion1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Udgaven '%s' for '%s' blev ikke fundet"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Der skete en fejl under behandlingen af %s (UsePackage3)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versionen '%s' for '%s' blev ikke fundet"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Der skete en fejl under behandlingen af %s (NewVersion2)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Valgte version %s (%s) af %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "'update'-kommandoen benytter ingen parametre"
-
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Kunne ikke låse listemappen"
-
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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."
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte "
-"AutoRemover"
+"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere."
-#: cmdline/apt-get.cc:1465
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Følgende pakker blev installeret automatisk, og behøves ikke længere:"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr "Brug 'apt-get autoremove' til at fjerne dem."
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n"
-"burde kunne ske. Indsend venligst en fejlrapport om apt."
-
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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:1479
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern fejl. AutoRemover ødelagde noget"
+"Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere."
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern fejl, AllUpgrade ødelagde noget"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Der skete en fejl under behandlingen af %s (FindPkg)"
-#: cmdline/apt-get.cc:1545
+#: apt-pkg/pkgcachegen.cc:301
#, c-format
-msgid "Couldn't find task %s"
-msgstr "Kunne ikke finde opgaven %s"
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Der skete en fejl under behandlingen af %s (CollectfileProvides)"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:307
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Kunne ikke finde pakken %s"
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Bemærk, vælger %s som regulært udtryk '%s'\n"
+msgid "Couldn't stat source package list %s"
+msgstr "Kunne ikke finde kildepakkelisten %s"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Samler filudbud"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO-fejl ved gemning af kilde-mellemlageret"
-#: cmdline/apt-get.cc:1714
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "%s set to manual installed.\n"
-msgstr "%s sat til manuelt installeret.\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "omdøbning mislykkedes, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1727
-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-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum stemmer ikke"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum stemmer ikke"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv "
-"en løsning)."
+"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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."
+"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)"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Siden du kan bad om en enkelt handling, kan pakken højst sandsynligt slet\n"
-"ikke installeres og du bør indsende en fejlrapport for denne pakke."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Ødelagte pakker"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Følgende yderligere pakker vil blive installeret:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Foreslåede pakker:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Anbefalede pakker:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Beregner opgraderingen... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Færdig"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Intern fejl. Problemløseren ødelagde noget"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Du skal angive mindst én pakke at hente kildeteksten til"
+"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er "
+"nødt til manuelt at reparere denne pakke."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Kunne ikke finde kildetekstpakken for %s"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "Pakkeindeksfilerne er i stykker. Intet 'Filename:'-felt for pakken %s."
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Overspringer allerede hentet fil '%s'\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Størrelsen stemmer ikke"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Du har ikke nok ledig plads i %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Leverandørblok %s inderholder intet fingeraftryk"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Bruger cdrom-monteringspunktet %s\n"
+"Monterer cdrom\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "%sB skal hentes fra kildetekst-arkiverne.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificerer.. "
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Henter kildetekst %s\n"
+msgid "Stored label: %s\n"
+msgstr "Gemt mærkat: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Nogle arkiver kunne ikke hentes."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "Afmonterer cdrom...\n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Bruger cdrom-monteringspunktet %s\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Udpakningskommandoen '%s' fejlede.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Afmonterer cdrom\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Tjek om pakken 'dpkg-dev' er installeret.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Venter på disken...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Opbygningskommandoen '%s' fejlede.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Monterer cdrom...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Barneprocessen fejlede"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Skanner disken for indeksfiler..\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Fandt %i pakkeindekser, %i kildeindekser, %i oversættelsesindekser og %i "
+"signaturer\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s"
+msgid "Found label '%s'\n"
+msgstr "Fandt mærkatet '%s'\n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s har ingen opbygningsafhængigheder.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Det er ikke et gyldigt navn, prøv igen.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet"
+"Denne disk hedder: \n"
+" %s \n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopierer pakkelisterne..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Skriver ny kildeliste\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Denne disk har følgende kildeliste-indgange:\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s-afhængigheden for %s kan ikke opfyldes, da ingen af de tilgængelige "
-"udgaver af pakken %s kan tilfredsstille versions-kravene"
+msgid "Wrote %i records.\n"
+msgstr "Skrev %i poster.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, 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"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Skrev %i poster med %i manglende filer.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Skrev %i poster med %i ikke-trufne filer\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Kunne ikke behandler opbygningsafhængighederne"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Listemappen %spartial mangler."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Understøttede moduler:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "Klargør %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " purge - Remove and purge packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Brug: apt-get [tilvalg] kommando\n"
-" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n"
-" apt-get [tilvalg] source pakke1 [pakke2 ...]\n"
-"\n"
-"apt-get er en simpel kommandolinjegrænseflade til at hente og\n"
-"installere pakker. De hyppigst brugte kommandoer er update og\n"
-"install.\n"
-"\n"
-"Kommandoer:\n"
-" update - Hent nye lister over pakker\n"
-" upgrade - Udfør en opgradering\n"
-" install - Installér nye pakker (pakke er libc6, ikke libc6.deb)\n"
-" remove - Afinstallér pakker\n"
-" purge - Fjern og udrens pakker\n"
-" source - Hent kildetekstarkiver\n"
-" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n"
-" dist-upgrade - Distributionsopgradering, se apt-get(8)\n"
-" dselect-upgrade - Følg valgene fra dselect\n"
-" clean - Slet hentede arkivfiler\n"
-" autoclean - Slet gamle hentede arkivfiler\n"
-" check - Tjek at der ikke er uopfyldte afhængigheder\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst.\n"
-" -q Uddata, der kan logges - ingen fremgangsindikator\n"
-" -qq Ingen uddata, kun fejl\n"
-" -d Hent kun - installér eller udpak IKKE arkiverne\n"
-" -s Gør intet. Simulér handlingen\n"
-" -y Antag 'ja'-svar til alle spørgsmål uden at spørge\n"
-" -f Forsøg at fortsætte selvom integritetstjek fejler\n"
-" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n"
-" -u Vis også en liste over opgraderede pakker\n"
-" -b Byg kildetekstpakken efter at have hentet den\n"
-" -V Vis detaljerede versionsnumre\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Angiv et opsætningsvalg. F.eks. -o dir::cache=/tmp\n"
-"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n"
-"for flere oplysninger og tilvalg.\n"
-" Denne APT har \"Super Cow Powers\".\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Pakker %s ud"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Havde "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Gør klar til at sætte %s op"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Henter:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Sætter %s op"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ignorerer "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Fejl under behandling af mappen %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Fejl "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Installerede %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hentede %sB på %s (%sB/s)\n"
+msgid "Preparing for removal of %s"
+msgstr "Gør klar til afinstallation af %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [Arbejder]"
+msgid "Removing %s"
+msgstr "Fjerner %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, 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"
+msgid "Removed %s"
+msgstr "Fjernede %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Ukendt pakkeindgang!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Gør klar til at fjerne %s helt"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Fjernede %s helt"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Brug: apt-sortpkgs [tilvalg] fil1 [fil2 ...]\n"
-"\n"
-"apt-sortpkgs er et simpelt værktøj til at sortere pakkefiler. Tilvalget -s\n"
-"bruges til at angive filens type.\n"
-"\n"
-"Tilvalg:\n"
-" -h Denne hjælpetekst\n"
-" -s Benyt kildefils-sortering\n"
-" -c=? Læs denne opsætningsfil\n"
-" -o=? Angiv en opsætningsindstilling. F.eks. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Ugyldig standardindstilling!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Kunne ikke påføre filen %s en lap"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Tryk retur for at fortsætte."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Forbindelsen lukkedes for hurtigt"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Der opstod fejl under udpakningen. Jeg vil opsætte de"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linjen %d er for lang (maks %u)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "pakker, der blev installeret. Det kan give gentagne fejl"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Gemt mærkat: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Sammenfletter tilgængelighedsoplysninger"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Fandt %i pakkeindekser, %i kildeindekser, %i oversættelsesindekser og %i "
+#~ "signaturer\n"
#, fuzzy
-#~| msgid "Select failed"
#~ msgid "openpty failed\n"
#~ msgstr "Valg mislykkedes"
# Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others.
# Michael Piefel <piefel@informatik.hu-berlin.de>, 2001, 2002, 2003, 2004, 2006.
# Rüdiger Kuhlmann <Uebersetzung@ruediger-kuhlmann.de>, 2002.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.6.46.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-24 11:45+0200\n"
"Last-Translator: Michael Piefel <piefel@debian.org>\n"
"Language-Team: <de@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Kann CD-ROM-Datenbank %s nicht lesen"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Bitte verwenden Sie apt-cdrom, um diese CD von APT erkennbar zu machen. apt-"
-"get update kann nicht dazu verwendet werden, neue CDs hinzuzufügen"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Falsche CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Paket %s Version %s hat eine nichterfüllte Abhängigkeit:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie noch "
-"verwendet."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk nicht gefunden."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Datei nicht gefunden"
-
-# looks like someone hardcoded English grammar
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Kann nicht zugreifen."
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Kann Änderungszeitpunkt nicht setzen"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ungültige URI, lokale URIs dürfen nicht mit // anfangen"
+msgid "Unable to locate package %s"
+msgstr "Kann Paket %s nicht finden"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Logge ein"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Gesamtzahl an Paketnamen: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Kann Namen des Kommunikationspartners nicht bestimmen"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " davon gewöhnliche Pakete: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Kann lokalen Namen nicht bestimmen"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " davon rein virtuelle Pakete: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Der Server hat die Verbindung abgelehnt: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " davon einzelne virtuelle Pakete: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Befehl USER fehlgeschlagen: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " davon gemischte virtuelle Pakete: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Befehl PASS fehlgeschlagen: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " davon fehlend: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript, Acquire::ftp::"
-"ProxyLogin ist leer."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Gesamtzahl an unterschiedlichen Versionen: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Befehl „%s“ des Einlogg-Skriptes ist fehlgeschlagen: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Gesamtzahl an unterschiedlichen Versionen: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Befehl TYPE fehlgeschlagen: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Gesamtzahl an Abhängigkeiten: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Zeitüberschreitung der Verbindung"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Der Server hat die Verbindung geschlossen"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Lesefehler"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Gesamtzahl an Bereitstellungen: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Eine Antwort hat einen Puffer zum Überlaufen gebracht."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Gesamtzahl an Mustern: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokollkorrumption"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Gesamtmenge an Abhängigkeits/Versionsspeicher: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Schreibfehler"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Gesamtmenge an Slack: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Konnte keinen Verbindungsendpunkt erzeugen"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Gesamtmenge an Speicher: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Konnte Verbindungsendpunkt wegen Zeitüberschreitung nicht verbinden"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Paketdatei %s ist nicht synchronisiert."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Fehlgeschlagen"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Sie müssen genau ein Muster angeben"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Konnte passiven Verbindungsendpunkt nicht verbinden."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Keine Pakete gefunden"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr ""
-"Die Funktion getaddrinfo konnte keinen passiven Verbindungsendpunkt finden"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Paketdateien:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Konnte einen Verbindungsendpunkt nicht verbinden"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cache ist nicht sychron, kann eine Paketdatei nicht querverweisen"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Konnte auf dem Verbindungsendpunkt nicht lauschen"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Konnte den Namen das Verbindungsendpunktes nicht bestimmen"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Festgehaltene Pakete („Pin“):"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Konnte PORT-Befehl nicht senden"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nicht gefunden)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Unbekannte Adressfamilie %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installiert:"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Befehl EPRT fehlgeschlagen: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(keine)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Mögliche Pakete:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Kann Verbindung nicht annehmen"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Paketstecknadel: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versions-Tabelle:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Kann Datei nicht holen, Server antwortete „%s“"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Datenverbindung erlitt Zeitüberschreitung"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s für %s %s kompiliert am %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Datenübertragung fehlgeschlagen, Server antwortete „%s“"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Abfrage"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Kann nicht aufrufen: "
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Aufruf: apt-cache [Optionen] Befehl\n"
+" apt-cache [Optionen] add Datei1 [Datei2 ...]\n"
+" apt-cache [Optionen] showpkg Paket1 [Paket2 ...]\n"
+" apt-cache [Optionen] showsrc Paket1 [Paket2 ...]\n"
+"\n"
+"apt-cache ist ein Low-Level-Werkzeug, um die binären Cache-Dateien von\n"
+"APT zu manipulieren und Informationen daraus zu erfragen.\n"
+"\n"
+"Befehle:\n"
+" add – Paket-Datei dem Quellcache hinzufügen\n"
+" gencaches – Paket- und Quellcache neu erzeugen\n"
+" showpkg – grundsätzliche Informationen für ein einzelnes Paket zeigen\n"
+" showsrc – Aufzeichnungen zu Quellen zeigen\n"
+" stats – einige grundlegenden Statistiken zeigen\n"
+" dump – gesamte Datei in Kurzform zeigen\n"
+" dumpavail – gesamte Datei verfügbarer Pakete ausgeben\n"
+" unmet – unerfüllte Abhängigkeiten zeigen\n"
+" search – in der Paketliste mittels regulären Ausdrucks suchen\n"
+" show – einen lesbaren Datensatz für das Paket zeigen\n"
+" depends – normale Abhängigkeitsinformationen für ein Paket zeigen\n"
+" rdepends – umgekehrte Abhängigkeitsinformationen für ein Paket zeigen\n"
+" pkgnames – alle Paketnamen auflisten\n"
+" dotty – einen Paketgraph zur Verwendung mit GraphViz erzeugen\n"
+" xvcg – einen Paketgraph zur Verwendung mit xvcg erzeugen\n"
+" policy – „policy“-Einstellungen zeigen\n"
+"\n"
+"Optionen:\n"
+" -h dieser Hilfe-Text.\n"
+" -p=? der Paketcache.\n"
+" -s=? der Quellcache.\n"
+" -q Fortschrittsanzeige abschalten\n"
+" -i nur wichtige Abhängigkeiten für den „unmet“-Befehl zeigen\n"
+" -c=? diese Konfigurationsdatei lesen\n"
+" -o=? eine beliebige Konfigurations-Option setzen, z. B. -o dir::cache=/"
+"tmp\n"
+"Siehe auch apt-cache(8) und apt.conf(5) für weitere Informationen.\n"
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Verbinde mit %s (%s)"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Bitte geben Sie einen Namen für die CD an, wie zum Beispiel „Debian 2.2r1 "
+"Disk 1“"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr ""
+"Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Kann keinen Verbindungsendpunkt für %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr ""
+"Wiederholen Sie dieses Prozedere für die restlichen CDs in Ihres Satzes."
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Kann keine Verbindung mit %s:%s aufbauen (%s)."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumente nicht paarweise"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Konnte wegen Zeitüberschreitung keine Verbindung mit %s:%s aufbauen (%s)"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Konnte nicht mit %s:%s verbinden (%s)."
+"Aufruf: apt-config [optionen] befehl\n"
+"\n"
+"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu "
+"lesen.\n"
+"\n"
+"Befehle:\n"
+" shell – Shell-Modus\n"
+" dump – Die Konfiguration ausgeben\n"
+"\n"
+"Optionen:\n"
+" -h Dieser Hilfetext\n"
+" -c=? Diese Konfigurationsdatei lesen\n"
+" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
+"tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Verbinde mit %s"
+msgid "%s not a valid DEB package."
+msgstr "%s ist kein gültiges DEB-Paket."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Konnte „%s“ nicht auflösen"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Aufruf: apt-extracttemplates datei1 [datei2 ...]\n"
+"\n"
+"apt-extracttemplates ist ein Werkzeug zum Extrahieren von Konfigurations- "
+"und\n"
+"Template-Informationen aus Debian-Paketen.\n"
+"\n"
+"Optionen:\n"
+" -h Dieser Hilfetext\n"
+" -t Das temporäre Verzeichnis setzen\n"
+" -c=? Diese Konfigurationsdatei lesen\n"
+" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
+"tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Temporärer Fehlschlag beim Auflösen von „%s“"
+msgid "Unable to write to %s"
+msgstr "Kann nicht nach %s schreiben"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Beim Auflösen von „%s:%s“ ist etwas Schlimmes passiert (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Kann debconf-Version nicht ermitteln. Ist debconf installiert?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Kann nicht mit %s:%s verbinden:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Paketerweiterungsliste ist zu lang"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Konnte nicht auf Schlüsselring zugreifen: „%s“"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Argumentliste von Acquire::gpgv::Options zu lang. Breche ab."
+msgid "Error processing directory %s"
+msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Interner Fehler: Gültige Signatur, aber konnte den Fingerabdruck des "
-"Schlüssels nicht ermitteln?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Quellerweiterungsliste ist zu lang"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Mindestens eine ungültige Signatur wurde entdeckt."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Fehler beim Schreiben des Headers in die Inhaltsdatei"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Konnte „%s“ zum Überprüfen der Signatur nicht ausführen (ist gnupg "
-"installiert?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Unbekannter Fehler beim Ausführen von gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Die folgenden Signaturen waren ungültig:\n"
+msgid "Error processing contents %s"
+msgstr "Fehler beim Verarbeiten der Inhaltsdatei %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr "
-"öffentlicher\n"
-"Schlüssel nicht verfügbar ist:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Kann auf %s nicht zugreifen."
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Aufruf: apt-ftparchive [optionen] befehl\n"
+"Befehle: packages binarypath [overridedatei [pfadpräfix]]\n"
+" sources srcpath [overridedatei [pfadpräfix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [gruppen]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generiert Indexdateien für Debian-Archive. Es unterstützt "
+"viele\n"
+"verschiedene Arten der Generierung, von vollautomatisch bis hin zu den\n"
+"funktionalen Äquivalenten von dpkg-scanpackages und dpkg-scansources.\n"
+"\n"
+"apt-ftparchive generiert Package-Dateien aus einem Baum von .debs. Die "
+"Package-\n"
+"Datei enthält den Inhalt aller Kontrollfelder aus jedem Paket sowie einen "
+"MD5-\n"
+"Hashwert und die Dateigröße. Eine Override-Datei wird unterstützt, um Werte "
+"für\n"
+"Priorität und Sektion zu erzwingen.\n"
+"\n"
+"Auf ganz ähnliche Weise erzeugt apt-ftparchive Sources-Dateien aus einem "
+"Baum\n"
+"von .dscs. Die Option --source-override kann benutzt werden, um eine "
+"Override-\n"
+"Datei für Quellen anzugeben.\n"
+"\n"
+"Die Befehle „packages“ und „source“ sollten in der Wurzel des Baumes "
+"aufgerufen\n"
+"werden. BinaryPath sollte auf die Basis der rekursiven Suche zeigen und\n"
+"overridefile sollte die Override-Flags enthalten. Pfadpräfix wird, so\n"
+"vorhanden, jedem Dateinamen vorangestellt. Beispielaufruf im Debian-Archiv:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Optionen:\n"
+" -h dieser Hilfe-Text\n"
+" --md5 MD5-Hashes erzeugen\n"
+" -s=? Override-Datei für Quellen\n"
+" -q ruhig\n"
+" -d=? optionale Cache-Datenbank auswählen\n"
+" --no-delink Debug-Modus für Delinking setzen\n"
+" --contents Inhaltsdatei erzeugen\n"
+" -c=? diese Konfigurationsdatei lesen\n"
+" -o=? eine beliebige Konfigurations-Option setzen"
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Konnte keine Pipe für %s öffnen"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Keine Auswahl passt"
-#: methods/gzip.cc:109
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Read error from %s process"
-msgstr "Lesefehler von Prozess %s"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Warte auf Kopfzeilen (header)"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Einige Dateien fehlen in der Paketdateigruppe „%s“"
-#: methods/http.cc:523
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Schlechte Kopfzeile"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Der http-Server sandte eine ungültige Antwort-Kopfzeile"
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB wurde beschädigt, Datei umbenannt in %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Der http-Server sandte eine ungültige „Content-Length“-Kopfzeile"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB ist alt, versuche %s zu erneuern"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Der http-Server sandte eine ungültige „Content-Range“-Kopfzeile"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB-Format ist ungültig. Wenn Sie ein Update von einer älteren Version von "
+"apt gemacht haben, entfernen Sie bitte die Datenbank und erstellen sie neu."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Der http-Server unterstützt Dateiteilübertragung nur fehlerhaft."
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Kann DB-Datei %s nicht öffnen: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Unbekanntes Datumsformat"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Kann auf %s nicht zugreifen."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Auswahl fehlgeschlagen"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archiv hat keinen Steuerungs-Datensatz"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Verbindung erlitt Zeitüberschreitung"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Kann keinen Cursor bekommen"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Fehler beim Schreiben einer Ausgabedatei"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Kann Verzeichnis %s nicht lesen\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Fehler beim Schreiben einer Datei"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Kann nicht zugreifen auf %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Fehler beim Schreiben der Datei"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-"Fehler beim Lesen vom Server: Das entfernte Ende hat die Verbindung "
-"geschlossen"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Fehler beim Lesen vom Server"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Fehler gehören zu Datei "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Fehlerhafte Kopfzeilendaten"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Konnte %s nicht auflösen"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Verbindung fehlgeschlagen"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Baumabschreiten fehlgeschlagen"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Interner Fehler"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Konnte %s nicht öffnen"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kann eine leere Datei nicht mit mmap abbilden"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Konnte kein mmap von %lu Bytes durchführen"
+msgid "Failed to readlink %s"
+msgstr "Kann kein readlink auf %s durchführen"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Auswahl %s nicht gefunden"
+msgid "Failed to unlink %s"
+msgstr "Konnte %s nicht entfernen (unlink)"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Nicht erkannte Typabkürzung: „%c“"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Konnte keine Verknüpfung von %s zu %s anlegen"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Öffne Konfigurationsdatei %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink-Limit von %sB erreicht.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Zeile %d zu lang (maximal %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archiv hatte kein Paket-Feld"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaxfehler %s:%u: Block fängt ohne Namen an."
+msgid " %s has no override entry\n"
+msgstr " %s hat keinen Eintrag in der Override-Liste.\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaxfehler %s:%u: Missgestaltetes Tag"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s-Maintainer ist %s und nicht %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll nach Wert"
+msgid " %s has no source override entry\n"
+msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden"
+msgid " %s has no binary override entry either\n"
+msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (include)"
+msgid "Internal error, could not locate member %s"
+msgstr "Interner Fehler, konnte Bestandteil %s nicht finden"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaxfehler %s:%u: Einbindung von here"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc – Speicheranforderung fehlgeschlagen"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive „%s“"
+msgid "Unable to open %s"
+msgstr "Kann %s nicht öffnen"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll am Dateiende"
+msgid "Malformed override %s line %lu #1"
+msgstr "Missgestaltetes Override %s Zeile %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Kann %s nicht lesen"
+msgid "Malformed override %s line %lu #2"
+msgstr "Missgestaltetes Override %s Zeile %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Fehler!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Missgestaltetes Override %s Zeile %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Fertig"
+msgid "Failed to read the override file %s"
+msgstr "Konnte die Override-Datei %s nicht lesen."
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Kommandozeilenoption „%c“ [aus %s] ist nicht bekannt."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Unbekannter Komprimierungsalgorithmus „%s“"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Kommandozeilenoption %s wird nicht verstanden"
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimierte Ausgabe %s braucht einen Komprimierungs-Satz"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Kommandozeilenoption %s ist nicht Boole'sch"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Option %s erfordert ein Argument."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Konnte FILE* nicht erzeugen"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Option %s: Konfigurationswertspezifikation muss einen =<wert> haben."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Fork Fehlgeschlagen"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht „%s“"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Kindprozess Komprimieren"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Option „%s“ ist zu lang"
+msgid "Internal error, failed to create %s"
+msgstr "Interner Fehler, konnte %s nicht erzeugen"
-# Check for boolean; -1 is unspecified, 0 is yes 1 is no
-#: apt-pkg/contrib/cmndline.cc:298
-#, 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“."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Ungültige Operation %s."
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Konnte Komprimierer nicht ausführen"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Kann auf den Einhängepunkt %s nicht zugreifen."
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "Dekomprimierer"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Kann nicht nach %s wechseln"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "E/A zu Kindprozess/Datei fehlgeschlagen"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Konnte auf CD-ROM nicht zugreifen"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Kann nicht lesen während der MD5-Berechnung"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Benutze kein Locking für Nur-Lese-Lockdatei %s"
+msgid "Problem unlinking %s"
+msgstr "Problem beim Unlinking von %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Konnte Lockdatei %s nicht öffnen"
+msgid "Failed to rename %s to %s"
+msgstr "Konnte %s nicht in %s umbenennen"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Benutze kein Locking für NFS-eingebundene Lockdatei %s"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Konnte Lock %s nicht bekommen"
+msgid "Regex compilation error - %s"
+msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Auf %s gewartet, aber es war nicht da"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Die folgenden Pakete haben nichterfüllte Abhängigkeiten:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten."
+msgid "but %s is installed"
+msgstr "aber %s ist installiert"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Unterprozess %s ist mit einem Fehlercode zurückgekehrt (%u)"
+msgid "but %s is to be installed"
+msgstr "aber %s soll installiert werden"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Unterprozess %s hat sich unerwartet beendet"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ist aber nicht installierbar"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Konnte Datei %s nicht öffnen"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ist aber ein virtuelles Paket"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "Lesen, habe noch %lu zu lesen aber nichts mehr da"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ist aber nicht installiert"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "soll aber nicht installiert werden"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Beim Schließen der Datei trat ein Problem auf"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " oder "
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Beim Unlinking der Datei trat ein Problem auf"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Die folgenden NEUEN Pakete werden installiert:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Beim Synchronisieren einer Datei trat ein Problem auf"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Die folgenden Pakete werden ENTFERNT:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Leerer Paketcache"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Die folgenden Pakete sind zurückgehalten worden:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Die Paketcachedatei ist korrumpiert"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Die folgenden Pakete werden aktualisiert:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Die Paketcachedatei liegt in einer inkompatiblen Version vor"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Die folgenden Pakete werden DEAKTUALISIERT:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Die folgenden gehaltenen Pakete werden verändert:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Dieses APT unterstützt das Versionssystem „%s“ nicht"
+msgid "%s (due to %s) "
+msgstr "%s (wegen %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Der Paketcache wurde für eine andere Architektur aufgebaut"
+#: cmdline/apt-get.cc:550
+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, wenn Sie nicht genau wissen, was Sie tun!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Hängt ab"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualisiert, %lu neu installiert, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Hängt ab (vorher)"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu erneut installiert, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Schlägt vor"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu deaktualisiert, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Empfiehlt"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Kollidiert"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nicht vollständig installiert oder entfernt.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Ersetzt"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Abhängigkeit werden korrigiert..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Veraltet"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " fehlgeschlagen."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Kann Abhängigkeiten nicht korrigieren"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "wichtig"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Kann die Menge zu erneuernder Pakete nicht minimieren"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "erforderlich"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Fertig"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "optional"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nichterfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Abhängigkeitsbaum wird aufgebaut"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Authentifizierungswarnung überstimmt.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Mögliche Versionen"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Diese Pakete ohne Überprüfung installieren [j/N]? "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Abhängigkeits-Generierung"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Einige Pakete konnten nicht authentifiziert werden"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Führe Information zur Verfügbarkeit zusammen"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Konnte %s nicht öffnen"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Interner Fehler, InstallPackages mit kaputten Pakete aufgerufen!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Konnte Datei %s nicht schreiben"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Kann Paketdatei %s nicht parsen (1)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Interner Fehler, Anordnung beendete nicht"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Kann Paketdatei %s nicht parsen (2)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Kann kein Lock für das Downloadverzeichnis erhalten."
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Missgestaltete Zeile %lu in Quellliste %s („URI“)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Die Liste der Quellen konnte nicht gelesen werden."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Missgestaltete Zeile %lu in Quellliste %s („dist“)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Wie merkwürdig... Die Größen haben nicht übereingestimmt, schreiben Sie an "
+"apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Missgestaltete Zeile %lu in Quellliste %s („URI parse“)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Es müssen noch %sB von %sB Archiven geholt werden.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Missgestaltete Zeile %lu in Quellliste %s („absolute dist“)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Es müssen %sB Archive geholt werden.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Missgestaltete Zeile %lu in Quellliste %s („dist parse“)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Nach dem Auspacken werden %sB Plattenplatz zusätzlich benutzt.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "%s wird geöffnet"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Nach dem Auspacken werden %sB Plattenplatz freigegeben worden sein.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Zeile %u zu lang in der Quellliste %s."
+msgid "Couldn't determine free space in %s"
+msgstr "Konnte freien Platz in %s nicht bestimmen"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Missgestaltete Zeile %u in Quellliste %s („type“)"
+msgid "You don't have enough free space in %s."
+msgstr "Sie haben nicht genug Platz in %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typ „%s“ ist unbekannt in Zeile %u der Quellliste %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "„Nur triviale“ angegeben, aber das ist keine triviale Operation."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Missgestaltete Zeile %u in Quellliste %s („vendor id“)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, tu was ich sage!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket "
-"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das "
-"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte "
-"die Option APT::Force-LoopBreak."
+"Sie sind im Begriff, etwas potenziell Schädliches zu tun.\n"
+"Zum Fortfahren geben Sie bitte „%s“ ein.\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indexdateityp „%s“ wird nicht unterstützt"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abbruch."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Möchten Sie fortfahren [J/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Das Paket %s muss reinstalliert werden, ich kann aber kein Archiv dafür "
-"finden."
+msgid "Failed to fetch %s %s\n"
+msgstr "Konnte %s nicht holen %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Einige Dateien konnten nicht heruntergeladen werden"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Herunterladen abgeschlossen und im Nur-Herunterladen-Modus"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies "
-"könnte durch gehaltene Pakete hervorgerufen worden sein."
+"Konnte einige Archive nicht herunterladen, vielleicht „apt-get update“ oder "
+"mit „--fix-missing“ probieren?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene kaputte Pakete."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Listenverzeichnis %spartial fehlt."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Konnte fehlende Pakete nicht korrigieren."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Archivverzeichnis %spartial fehlt."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Installation abgebrochen."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Hole Datei %li von %li (noch %s)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Achtung, wähle %s an Stelle von %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Hole Datei %li von %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"Überspringe %s, es ist schon installiert und „upgrade“ ist nicht gesetzt.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Der Treiber für Methode %s konnte nicht gefunden werden."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Methode %s hat nicht korrekt gestartet"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Paket %s ist ein virtuelles Paket, das bereitgestellt wird von:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installiert]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Sie sollten eines explizit zum Installieren auswählen."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Bitte legen Sie das Medium mit dem Namen „%s“ in Laufwerk „%s“ und drücken "
-"Sie die Eingabetaste."
+"Paket %s ist nicht verfügbar, wird aber von einem anderen\n"
+"Paket referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet\n"
+"ist oder nur aus einer anderen Quelle verfügbar ist.\n"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Paketierungssystem „%s“ wird nicht unterstützt"
-
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Kann keinen passenden Paketierungssystem-Typ bestimmen"
-
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Kann nicht auf %s zugreifen."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-"Sie müssen einige „source“-URIs für Quellen in die sources.list-Datei "
-"schreiben."
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Die Liste der Quellen konnte nicht gelesen werden."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"Die Paketliste oder die Statusdatei konnte nicht geparst oder geöffnet "
-"werden."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Probieren Sie „apt-get update“, um diese Probleme zu korrigieren."
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ungültiger Eintrag in Einstellungs-Datei, kein „Package“-Header"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Konnte Stecknadeltyp („pin type“) %s nicht verstehen"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Keine Priorität (oder Null) für Pin angegeben"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Dieser Paketcache wurde für ein inkompatibles Versionssystem aufgebaut"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Doch die folgenden Pakete ersetzen es:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Paket %s hat keinen Installationskandidaten"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr ""
+"Re-Installation von %s ist nicht möglich,\n"
+"es kann nicht heruntergeladen werden.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s ist schon die neueste Version.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release „%s“ für „%s“ konnte nicht gefunden werden"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Version „%s“ für „%s“ konnte nicht gefunden werden"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Gewählte Version %s (%s) für %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Der Befehl „update“ nimmt keine Argumente"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Kann kein Lock auf das Listenverzeichnis bekommen"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Toll, Sie haben die Anzahl an Paketen überschritten, die APT handhaben kann."
+"Einige Indexdateien konnten nicht heruntergeladen werden, sie wurden "
+"ignoriert oder alte an ihrer Stelle benutzt."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben "
-"kann."
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr ""
-"Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben "
-"kann."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Die folgenden NEUEN Pakete werden installiert:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Toll, Sie haben die Anzahl an Abhängigkeiten überschritten, die APT "
-"handhaben kann."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Fehler trat beim Bearbeiten von %s auf (FindPkg)"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Fehler trat beim Bearbeiten von %s auf (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
msgstr ""
-"Paket %s %s wurde nicht gefunden beim Verarbeiten der Dateiabhängigkeiten"
+"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Kann nicht auf die Liste %s der Quellpakete zugreifen."
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Paketlisten werden gelesen"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Sammle Datei-Empfehlungen ein"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Konnte Paket %s nicht finden"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "Kann nicht nach %s schreiben"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "E/A-Fehler beim Sichern des Quellcaches"
+msgid "Couldn't find package %s"
+msgstr "Konnte Paket %s nicht finden"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5-Summe stimmt nicht"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Achtung, wähle %s für reg. Ausdruck „%s“\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5-Summe stimmt nicht"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "aber %s soll installiert werden"
-#: apt-pkg/acquire-item.cc:1091
-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"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
-"dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)."
+"Nichterfüllte Abhängigkeiten. Versuchen Sie „apt-get -f install“ ohne "
+"jeglich Pakete (oder geben Sie eine Lösung an)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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 ""
-"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
-"dieses Paket von Hand korrigieren müssen."
+"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
+"Sie eine unmögliche Situation angefordert haben oder dass, wenn Sie die\n"
+"Unstable-Distribution verwenden, einige erforderliche Pakete noch nicht\n"
+"kreiert oder aus Incoming herausbewegt wurden."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Die Paketindexdateien sind korrumpiert: Kein Filename:-Feld für Paket %s."
+"Da Sie nur eine einzige Operation angefordert haben, ist es sehr "
+"wahrscheinlich,\n"
+"dass das Paket einfach nicht installierbar ist und eine Fehlermeldung über\n"
+"dieses Paket erfolgen sollte."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Größe stimmt nicht"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Kaputte Pakete"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Herstellerblock %s enthält keinen Fingerabdruck"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Benutze CD-ROM-Einhängpunkt %s\n"
-"Hänge CD-ROM ein\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Vorgeschlagene Pakete:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identifiziere... "
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Empfohlene Pakete:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Gespeicherte Kennzeichnung: %s \n"
-
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Benutze CD-ROM-Einhängpunkt %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Hänge CD-ROM aus\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Warte auf CD...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Hänge CD-ROM ein...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Suche auf CD nach Index-Dateien...\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Berechne Upgrade..."
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Fand %i Paketindexe, %i Quellenindexe und %i Signaturen\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Fehlgeschlagen"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Gespeicherte Kennzeichnung: %s \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Fertig"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"Diese CD heißt: \n"
-"„%s“\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopiere Paketlisten..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Schreibe neue Quellliste\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Quelllisteneinträge für diese CD sind:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Hänge CD-ROM aus..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Es wurden %i Datensätze geschrieben.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n"
+"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden "
+"sollen"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n"
+msgid "Unable to find a source package for %s"
+msgstr "Kann Quellpaket für %s nicht finden"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien "
-"geschrieben.\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Listenverzeichnis %spartial fehlt."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Überspringe schon heruntergeladene Datei „%s“\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "%s wird vorbereitet"
+msgid "You don't have enough free space in %s"
+msgstr "Sie haben nicht genug freien Platz in %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "%s wird entpackt"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Es müssen noch %sB/%sB der Quellarchive geholt werden.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Konfiguration von %s wird vorbereitet"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Es müssen %sB der Quellarchive geholt werden.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "Konfiguriere %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
+msgid "Fetch source %s\n"
+msgstr "Hole Quelle %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s installiert"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Konnte einige Archive nicht holen."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Entfernen von %s wird vorbereitet"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "%s wird entfernt"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Entpack-Befehl „%s“ fehlgeschlagen.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "%s entfernt"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Überprüfen Sie, ob das Paket „dpkg-dev“ installiert ist.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Komplettes Entfernen von %s wird vorbereitet"
+msgid "Build command '%s' failed.\n"
+msgstr "Build-Befehl „%s“ fehlgeschlagen.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s komplett entfernt"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Kindprozess fehlgeschlagen"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Es muss zumindest ein Paket angegeben werden, dessen Build-Dependencies\n"
+"überprüft werden sollen."
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Konnte Datei %s nicht öffnen"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Verbindung zu früh beendet"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Konnte Weiterleitungen nicht erzeugen"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Konnte gzip nicht ausführen"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Korrumpiertes Archiv"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv korrumpiert"
-
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Unbekannter Tar-Kopf-Typ %u, Bestandteil %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Ungültige Archiv-Signatur"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Fehler beim Lesen der Archivdateienkopfzeilen"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Ungültige Archivdateikopfzeile"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Archiv ist zu kurz"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Konnte Archivköpfe nicht lesen."
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "„DropNode“ auf noch verlinktem Knoten aufgerufen"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Konnte Hash-Element nicht finden!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Konnte Umleitung nicht reservieren"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Interner Fehler in „AddDiversion“"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Information zu Build-Dependencies für %s konnte nicht gefunden werden."
-#: apt-inst/filelist.cc:477
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Versuche, Umleitung zu überschreiben: %s -> %s und %s/%s"
+msgid "%s has no build depends.\n"
+msgstr "%s hat keine Build-Dependencies.\n"
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Doppelte Hinzufügung der Umleitung %s -> %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"%s Abhängigkeit für %s kann nicht befriedigt werden, da Paket %s nicht "
+"gefunden werden kann."
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Doppelte Konfigurationsdatei %s/%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s Abhängigkeit für %s kann nicht befriedigt werden, da keine verfügbare "
+"Version von Paket %s die Versionsanforderungen erfüllen kann."
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Failed to write file %s"
-msgstr "Konnte Datei %s nicht schreiben"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist "
+"zu neu."
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Failed to close file %s"
-msgstr "Konnte Datei %s nicht schließen"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "The path %s is too long"
-msgstr "Der Pfad %s ist zu lang"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Build-Abhängigkeiten für %s konnten nicht erfüllt werden."
-#: apt-inst/extract.cc:124
-#, c-format
-msgid "Unpacking %s more than once"
-msgstr "Packe %s mehr als einmal aus"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Verarbeitung der Build-Abhängigkeiten fehlgeschlagen"
-#: apt-inst/extract.cc:134
-#, c-format
-msgid "The directory %s is diverted"
-msgstr "Das Verzeichnis %s ist umgeleitet"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Unterstützte Module:"
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Das Paket versucht, auf das Umleitungsziel %s/%s zu schreiben"
-
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Der Umleitungspfad ist zu lang"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Aufruf: apt-get [Optionen] Befehl\n"
+" apt-get [Optionen] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [Optionen] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get ist ein einfaches Kommandozeilenwerkzeug zum Herunterladen\n"
+"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n"
+"sind update und install.\n"
+"\n"
+"Befehle:\n"
+" update – neue Liste von Paketen einlesen\n"
+" upgrade – eine Paketaktualisierung durchführen\n"
+" install – neue Pakete installieren (pkg ist libc6 und nicht libc6."
+"deb)\n"
+" remove – Pakete entfernen\n"
+" source – Quellarchive herunterladen\n"
+" build-dep – die Build-Abhängigkeiten für Quellpakete konfigurieren\n"
+" dist-upgrade – „Distribution upgrade“, siehe apt-get(8)\n"
+" dselect-upgrade – der Auswahl aus „dselect“ folgen\n"
+" clean – heruntergeladene Archive löschen\n"
+" autoclean – veraltete heruntergeladene Archive löschen\n"
+" check – überprüfen, dass es keine nicht erfüllten Abhängigkeiten "
+"gibt\n"
+"\n"
+"Optionen:\n"
+" -h dieser Hilfetext\n"
+" -q protokollierbare (logbare) Ausgabe – keine Fortschrittsanzeige\n"
+" -qq keine Ausgabe außer bei Fehlern\n"
+" -d nur herunterladen – Archive NICHT installieren oder entpacken\n"
+" -s nichts tun; nur eine Simulation der Vorgänge durchführen\n"
+" -y für alle Antworten „Ja“ annehmen und nicht nachfragen\n"
+" -f versuchen fortzufahren, wenn die Integritätsüberprüfung fehlschlägt\n"
+" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n"
+" -u auch eine Liste der aktualisierten Pakete mit anzeigen\n"
+" -b ein Quellpaket nach dem Herunterladen übersetzen\n"
+" -V ausführliche Versionsnummern anzeigen\n"
+" -c=? Diese Konfigurationsdatei benutzen\n"
+" -o=? Beliebige Konfigurationsoptionen setzen, z. B. -o dir::cache=/tmp\n"
+"Siehe auch die Handbuch-Seiten apt-get(8), sources.list(5) und apt.conf(5) "
+"für\n"
+"weitergehende Informationen und Optionen.\n"
+" Dieses APT hat Super-Kuh-Kräfte.\n"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Konnte %s nicht in %s umbenennen"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "OK "
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Hole:"
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Konnte Knoten nicht in seinem Hash finden"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Der Pfad ist zu lang"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Fehl "
-#: apt-inst/extract.cc:414
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Überschreibe Paket-Treffer ohne Version für %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Es wurden %sB in %s geholt (%sB/s)\n"
-#: apt-inst/extract.cc:431
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Datei %s/%s überschreibt die Datei in Paket %s"
+msgid " [Working]"
+msgstr " [Arbeite]"
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to stat %s"
-msgstr "Kann nicht auf %s zugreifen"
+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“ und drücken Sie die Eingabetaste.\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
-#, c-format
-msgid "Failed to remove %s"
-msgstr "Konnte %s nicht entfernen"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Unbekannter Paketeintrag!"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Konnte %s nicht erzeugen"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Aufruf: apt-sortpkgs [optionen] datei1 [datei2 ...]\n"
+"\n"
+"apt-sortpkgs ist ein einfaches Werkzeug, um Paketdateien zu sortieren. Die\n"
+"Option -d wird benutzt, um anzuzeigen, um was für eine Datei es sich "
+"handelt.\n"
+"\n"
+"Optionen:\n"
+" -h Dieser Hilfetext\n"
+" -s Quelldateisortierung benutzen\n"
+" -c=? Diese Konfigurationsdatei lesen\n"
+" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Kann nicht auf %sinfo zugreifen"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Fehlerhafte Voreinstellung"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr ""
-"Die „info“- und „temp“-Verzeichnisse müssen im selben Dateisystem liegen"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Zum Fortfahren Enter drücken."
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Kann nicht ins Administrationsverzeichnis %sinfo wechseln"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr ""
+"Einige Fehler traten während des Entpackens auf. Ich werde die installierten"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Interner Fehler beim Holen des Paket-Namens"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr ""
+"Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern "
+"durch"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Paketlisten werden gelesen"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler über "
+"dieser"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Fehler beim Öffnen der Listendatei „%sinfo/%s“. Wenn Sie diese Datei nicht "
-"wiederherstellen können, dann leeren Sie sie und installieren Sie sofort "
-"dieselbe Version des Paketes erneut!"
+"Meldung sind wichtig. Bitte beseitigen Sie sie und [I]nstallieren erneut."
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Fehler beim Lesen der Listendatei „%sinfo/%s“."
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Führe Information zur Verfügbarkeit zusammen"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Interner Fehler beim Holen eines Knotens"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Konnte Weiterleitungen nicht erzeugen"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Fehler beim Öffnen der Umleitungsdatei %sdiversions"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Konnte gzip nicht ausführen"
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Die Umleitungsdatei ist korrumpiert"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Korrumpiertes Archiv"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, c-format
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv korrumpiert"
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Unbekannter Tar-Kopf-Typ %u, Bestandteil %s"
+
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Ungültige Archiv-Signatur"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Fehler beim Lesen der Archivdateienkopfzeilen"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Ungültige Archivdateikopfzeile"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Archiv ist zu kurz"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Konnte Archivköpfe nicht lesen."
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "„DropNode“ auf noch verlinktem Knoten aufgerufen"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Konnte Hash-Element nicht finden!"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Konnte Umleitung nicht reservieren"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Interner Fehler in „AddDiversion“"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Versuche, Umleitung zu überschreiben: %s -> %s und %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Doppelte Hinzufügung der Umleitung %s -> %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Doppelte Konfigurationsdatei %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Konnte Datei %s nicht schreiben"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Konnte Datei %s nicht schließen"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Der Pfad %s ist zu lang"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Packe %s mehr als einmal aus"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "Das Verzeichnis %s ist umgeleitet"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Das Paket versucht, auf das Umleitungsziel %s/%s zu schreiben"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Der Umleitungspfad ist zu lang"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Konnte Knoten nicht in seinem Hash finden"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Der Pfad ist zu lang"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Überschreibe Paket-Treffer ohne Version für %s"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Datei %s/%s überschreibt die Datei in Paket %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Kann %s nicht lesen"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Kann nicht auf %s zugreifen"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Konnte %s nicht entfernen"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Konnte %s nicht erzeugen"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Kann nicht auf %sinfo zugreifen"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr ""
+"Die „info“- und „temp“-Verzeichnisse müssen im selben Dateisystem liegen"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Paketlisten werden gelesen"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Kann nicht ins Administrationsverzeichnis %sinfo wechseln"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Interner Fehler beim Holen des Paket-Namens"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Paketlisten werden gelesen"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Fehler beim Öffnen der Listendatei „%sinfo/%s“. Wenn Sie diese Datei nicht "
+"wiederherstellen können, dann leeren Sie sie und installieren Sie sofort "
+"dieselbe Version des Paketes erneut!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Fehler beim Lesen der Listendatei „%sinfo/%s“."
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Interner Fehler beim Holen eines Knotens"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Fehler beim Öffnen der Umleitungsdatei %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Die Umleitungsdatei ist korrumpiert"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
msgid "Invalid line in the diversion file: %s"
msgstr "Ungültige Zeile in der Umleitungsdatei: %s"
msgid "Unparsable control file"
msgstr "Unparsbare Kontroll-Datei"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Paket %s Version %s hat eine nichterfüllte Abhängigkeit:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Kann CD-ROM-Datenbank %s nicht lesen"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Kann Paket %s nicht finden"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Bitte verwenden Sie apt-cdrom, um diese CD von APT erkennbar zu machen. apt-"
+"get update kann nicht dazu verwendet werden, neue CDs hinzuzufügen"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Gesamtzahl an Paketnamen: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Falsche CD"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " davon gewöhnliche Pakete: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie noch "
+"verwendet."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " davon rein virtuelle Pakete: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk nicht gefunden."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " davon einzelne virtuelle Pakete: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Datei nicht gefunden"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " davon gemischte virtuelle Pakete: "
+# looks like someone hardcoded English grammar
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Kann nicht zugreifen."
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " davon fehlend: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Kann Änderungszeitpunkt nicht setzen"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Gesamtzahl an unterschiedlichen Versionen: "
-
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Gesamtzahl an unterschiedlichen Versionen: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Gesamtzahl an Abhängigkeiten: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ungültige URI, lokale URIs dürfen nicht mit // anfangen"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Logge ein"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Gesamtzahl an Version/Datei-Beziehungen: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Kann Namen des Kommunikationspartners nicht bestimmen"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Gesamtzahl an Bereitstellungen: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Kann lokalen Namen nicht bestimmen"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Gesamtzahl an Mustern: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Der Server hat die Verbindung abgelehnt: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Gesamtmenge an Abhängigkeits/Versionsspeicher: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Befehl USER fehlgeschlagen: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Gesamtmenge an Slack: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Befehl PASS fehlgeschlagen: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Gesamtmenge an Speicher: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript, Acquire::ftp::"
+"ProxyLogin ist leer."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Paketdatei %s ist nicht synchronisiert."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Befehl „%s“ des Einlogg-Skriptes ist fehlgeschlagen: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Sie müssen genau ein Muster angeben"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "Befehl TYPE fehlgeschlagen: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Keine Pakete gefunden"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Zeitüberschreitung der Verbindung"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Paketdateien:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Der Server hat die Verbindung geschlossen"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cache ist nicht sychron, kann eine Paketdatei nicht querverweisen"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Lesefehler"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Eine Antwort hat einen Puffer zum Überlaufen gebracht."
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Festgehaltene Pakete („Pin“):"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokollkorrumption"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nicht gefunden)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Schreibfehler"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installiert:"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Konnte keinen Verbindungsendpunkt erzeugen"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(keine)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Konnte Verbindungsendpunkt wegen Zeitüberschreitung nicht verbinden"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Mögliche Pakete:"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Konnte passiven Verbindungsendpunkt nicht verbinden."
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Paketstecknadel: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr ""
+"Die Funktion getaddrinfo konnte keinen passiven Verbindungsendpunkt finden"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versions-Tabelle:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Konnte einen Verbindungsendpunkt nicht verbinden"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Konnte auf dem Verbindungsendpunkt nicht lauschen"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s für %s %s kompiliert am %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Konnte den Namen das Verbindungsendpunktes nicht bestimmen"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Aufruf: apt-cache [Optionen] Befehl\n"
-" apt-cache [Optionen] add Datei1 [Datei2 ...]\n"
-" apt-cache [Optionen] showpkg Paket1 [Paket2 ...]\n"
-" apt-cache [Optionen] showsrc Paket1 [Paket2 ...]\n"
-"\n"
-"apt-cache ist ein Low-Level-Werkzeug, um die binären Cache-Dateien von\n"
-"APT zu manipulieren und Informationen daraus zu erfragen.\n"
-"\n"
-"Befehle:\n"
-" add – Paket-Datei dem Quellcache hinzufügen\n"
-" gencaches – Paket- und Quellcache neu erzeugen\n"
-" showpkg – grundsätzliche Informationen für ein einzelnes Paket zeigen\n"
-" showsrc – Aufzeichnungen zu Quellen zeigen\n"
-" stats – einige grundlegenden Statistiken zeigen\n"
-" dump – gesamte Datei in Kurzform zeigen\n"
-" dumpavail – gesamte Datei verfügbarer Pakete ausgeben\n"
-" unmet – unerfüllte Abhängigkeiten zeigen\n"
-" search – in der Paketliste mittels regulären Ausdrucks suchen\n"
-" show – einen lesbaren Datensatz für das Paket zeigen\n"
-" depends – normale Abhängigkeitsinformationen für ein Paket zeigen\n"
-" rdepends – umgekehrte Abhängigkeitsinformationen für ein Paket zeigen\n"
-" pkgnames – alle Paketnamen auflisten\n"
-" dotty – einen Paketgraph zur Verwendung mit GraphViz erzeugen\n"
-" xvcg – einen Paketgraph zur Verwendung mit xvcg erzeugen\n"
-" policy – „policy“-Einstellungen zeigen\n"
-"\n"
-"Optionen:\n"
-" -h dieser Hilfe-Text.\n"
-" -p=? der Paketcache.\n"
-" -s=? der Quellcache.\n"
-" -q Fortschrittsanzeige abschalten\n"
-" -i nur wichtige Abhängigkeiten für den „unmet“-Befehl zeigen\n"
-" -c=? diese Konfigurationsdatei lesen\n"
-" -o=? eine beliebige Konfigurations-Option setzen, z. B. -o dir::cache=/"
-"tmp\n"
-"Siehe auch apt-cache(8) und apt.conf(5) für weitere Informationen.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Konnte PORT-Befehl nicht senden"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Bitte geben Sie einen Namen für die CD an, wie zum Beispiel „Debian 2.2r1 "
-"Disk 1“"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Unbekannte Adressfamilie %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr ""
-"Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Befehl EPRT fehlgeschlagen: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr ""
-"Wiederholen Sie dieses Prozedere für die restlichen CDs in Ihres Satzes."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumente nicht paarweise"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Kann Verbindung nicht annehmen"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Aufruf: apt-config [optionen] befehl\n"
-"\n"
-"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu "
-"lesen.\n"
-"\n"
-"Befehle:\n"
-" shell – Shell-Modus\n"
-" dump – Die Konfiguration ausgeben\n"
-"\n"
-"Optionen:\n"
-" -h Dieser Hilfetext\n"
-" -c=? Diese Konfigurationsdatei lesen\n"
-" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
-"tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ist kein gültiges DEB-Paket."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Kann Datei nicht holen, Server antwortete „%s“"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Aufruf: apt-extracttemplates datei1 [datei2 ...]\n"
-"\n"
-"apt-extracttemplates ist ein Werkzeug zum Extrahieren von Konfigurations- "
-"und\n"
-"Template-Informationen aus Debian-Paketen.\n"
-"\n"
-"Optionen:\n"
-" -h Dieser Hilfetext\n"
-" -t Das temporäre Verzeichnis setzen\n"
-" -c=? Diese Konfigurationsdatei lesen\n"
-" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/"
-"tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Datenverbindung erlitt Zeitüberschreitung"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Kann debconf-Version nicht ermitteln. Ist debconf installiert?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Datenübertragung fehlgeschlagen, Server antwortete „%s“"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Paketerweiterungsliste ist zu lang"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Abfrage"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Kann nicht aufrufen: "
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
+msgid "Connecting to %s (%s)"
+msgstr "Verbinde mit %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Quellerweiterungsliste ist zu lang"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Fehler beim Schreiben des Headers in die Inhaltsdatei"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Kann keinen Verbindungsendpunkt für %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "Fehler beim Verarbeiten der Inhaltsdatei %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Kann keine Verbindung mit %s:%s aufbauen (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
msgstr ""
-"Aufruf: apt-ftparchive [optionen] befehl\n"
-"Befehle: packages binarypath [overridedatei [pfadpräfix]]\n"
-" sources srcpath [overridedatei [pfadpräfix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [gruppen]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generiert Indexdateien für Debian-Archive. Es unterstützt "
-"viele\n"
-"verschiedene Arten der Generierung, von vollautomatisch bis hin zu den\n"
-"funktionalen Äquivalenten von dpkg-scanpackages und dpkg-scansources.\n"
-"\n"
-"apt-ftparchive generiert Package-Dateien aus einem Baum von .debs. Die "
-"Package-\n"
-"Datei enthält den Inhalt aller Kontrollfelder aus jedem Paket sowie einen "
-"MD5-\n"
-"Hashwert und die Dateigröße. Eine Override-Datei wird unterstützt, um Werte "
-"für\n"
-"Priorität und Sektion zu erzwingen.\n"
-"\n"
-"Auf ganz ähnliche Weise erzeugt apt-ftparchive Sources-Dateien aus einem "
-"Baum\n"
-"von .dscs. Die Option --source-override kann benutzt werden, um eine "
-"Override-\n"
-"Datei für Quellen anzugeben.\n"
-"\n"
-"Die Befehle „packages“ und „source“ sollten in der Wurzel des Baumes "
-"aufgerufen\n"
-"werden. BinaryPath sollte auf die Basis der rekursiven Suche zeigen und\n"
-"overridefile sollte die Override-Flags enthalten. Pfadpräfix wird, so\n"
-"vorhanden, jedem Dateinamen vorangestellt. Beispielaufruf im Debian-Archiv:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Optionen:\n"
-" -h dieser Hilfe-Text\n"
-" --md5 MD5-Hashes erzeugen\n"
-" -s=? Override-Datei für Quellen\n"
-" -q ruhig\n"
-" -d=? optionale Cache-Datenbank auswählen\n"
-" --no-delink Debug-Modus für Delinking setzen\n"
-" --contents Inhaltsdatei erzeugen\n"
-" -c=? diese Konfigurationsdatei lesen\n"
-" -o=? eine beliebige Konfigurations-Option setzen"
+"Konnte wegen Zeitüberschreitung keine Verbindung mit %s:%s aufbauen (%s)"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Keine Auswahl passt"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Konnte nicht mit %s:%s verbinden (%s)."
-#: ftparchive/apt-ftparchive.cc:832
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Einige Dateien fehlen in der Paketdateigruppe „%s“"
+msgid "Connecting to %s"
+msgstr "Verbinde mit %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Konnte „%s“ nicht auflösen"
+
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Temporärer Fehlschlag beim Auflösen von „%s“"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Beim Auflösen von „%s:%s“ ist etwas Schlimmes passiert (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB wurde beschädigt, Datei umbenannt in %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Kann nicht mit %s:%s verbinden:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB ist alt, versuche %s zu erneuern"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Konnte nicht auf Schlüsselring zugreifen: „%s“"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Argumentliste von Acquire::gpgv::Options zu lang. Breche ab."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"DB-Format ist ungültig. Wenn Sie ein Update von einer älteren Version von "
-"apt gemacht haben, entfernen Sie bitte die Datenbank und erstellen sie neu."
+"Interner Fehler: Gültige Signatur, aber konnte den Fingerabdruck des "
+"Schlüssels nicht ermitteln?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Mindestens eine ungültige Signatur wurde entdeckt."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Kann DB-Datei %s nicht öffnen: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Konnte „%s“ zum Überprüfen der Signatur nicht ausführen (ist gnupg "
+"installiert?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archiv hat keinen Steuerungs-Datensatz"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Unbekannter Fehler beim Ausführen von gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Kann keinen Cursor bekommen"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Die folgenden Signaturen waren ungültig:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr "
+"öffentlicher\n"
+"Schlüssel nicht verfügbar ist:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Kann Verzeichnis %s nicht lesen\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Konnte keine Pipe für %s öffnen"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Kann nicht zugreifen auf %s\n"
+msgid "Read error from %s process"
+msgstr "Lesefehler von Prozess %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Warte auf Kopfzeilen (header)"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Fehler gehören zu Datei "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Schlechte Kopfzeile"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Konnte %s nicht auflösen"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Der http-Server sandte eine ungültige Antwort-Kopfzeile"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Baumabschreiten fehlgeschlagen"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Der http-Server sandte eine ungültige „Content-Length“-Kopfzeile"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Konnte %s nicht öffnen"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Der http-Server sandte eine ungültige „Content-Range“-Kopfzeile"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Der http-Server unterstützt Dateiteilübertragung nur fehlerhaft."
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Unbekanntes Datumsformat"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Auswahl fehlgeschlagen"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Verbindung erlitt Zeitüberschreitung"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Fehler beim Schreiben einer Ausgabedatei"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Fehler beim Schreiben einer Datei"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Fehler beim Schreiben der Datei"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Fehler beim Lesen vom Server: Das entfernte Ende hat die Verbindung "
+"geschlossen"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Fehler beim Lesen vom Server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Fehlerhafte Kopfzeilendaten"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Verbindung fehlgeschlagen"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Interner Fehler"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kann eine leere Datei nicht mit mmap abbilden"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Kann kein readlink auf %s durchführen"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Konnte kein mmap von %lu Bytes durchführen"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Konnte %s nicht entfernen (unlink)"
+msgid "Selection %s not found"
+msgstr "Auswahl %s nicht gefunden"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Konnte keine Verknüpfung von %s zu %s anlegen"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Nicht erkannte Typabkürzung: „%c“"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink-Limit von %sB erreicht.\n"
+msgid "Opening configuration file %s"
+msgstr "Öffne Konfigurationsdatei %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archiv hatte kein Paket-Feld"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Zeile %d zu lang (maximal %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s hat keinen Eintrag in der Override-Liste.\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaxfehler %s:%u: Block fängt ohne Namen an."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s-Maintainer ist %s und nicht %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaxfehler %s:%u: Missgestaltetes Tag"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll nach Wert"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Interner Fehler, konnte Bestandteil %s nicht finden"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (include)"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc – Speicheranforderung fehlgeschlagen"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaxfehler %s:%u: Einbindung von here"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Kann %s nicht öffnen"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive „%s“"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Missgestaltetes Override %s Zeile %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll am Dateiende"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Missgestaltetes Override %s Zeile %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Fehler!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Missgestaltetes Override %s Zeile %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Fertig"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Konnte die Override-Datei %s nicht lesen."
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Kommandozeilenoption „%c“ [aus %s] ist nicht bekannt."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Unbekannter Komprimierungsalgorithmus „%s“"
+msgid "Command line option %s is not understood"
+msgstr "Kommandozeilenoption %s wird nicht verstanden"
+
+#: apt-pkg/contrib/cmndline.cc:124
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr "Kommandozeilenoption %s ist nicht Boole'sch"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimierte Ausgabe %s braucht einen Komprimierungs-Satz"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Konnte FILE* nicht erzeugen"
+msgid "Option %s requires an argument."
+msgstr "Option %s erfordert ein Argument."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Fork Fehlgeschlagen"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Option %s: Konfigurationswertspezifikation muss einen =<wert> haben."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Kindprozess Komprimieren"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht „%s“"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Interner Fehler, konnte %s nicht erzeugen"
+msgid "Option '%s' is too long"
+msgstr "Option „%s“ ist zu lang"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen"
+# Check for boolean; -1 is unspecified, 0 is yes 1 is no
+#: apt-pkg/contrib/cmndline.cc:298
+#, 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“."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Konnte Komprimierer nicht ausführen"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Ungültige Operation %s."
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "Dekomprimierer"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Kann auf den Einhängepunkt %s nicht zugreifen."
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "E/A zu Kindprozess/Datei fehlgeschlagen"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Kann nicht nach %s wechseln"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Kann nicht lesen während der MD5-Berechnung"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Konnte auf CD-ROM nicht zugreifen"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem beim Unlinking von %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Benutze kein Locking für Nur-Lese-Lockdatei %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Konnte Lockdatei %s nicht öffnen"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Benutze kein Locking für NFS-eingebundene Lockdatei %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Die folgenden Pakete haben nichterfüllte Abhängigkeiten:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Konnte Lock %s nicht bekommen"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "aber %s ist installiert"
+msgid "Waited for %s but it wasn't there"
+msgstr "Auf %s gewartet, aber es war nicht da"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "aber %s soll installiert werden"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ist aber nicht installierbar"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Unterprozess %s ist mit einem Fehlercode zurückgekehrt (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ist aber ein virtuelles Paket"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Unterprozess %s hat sich unerwartet beendet"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ist aber nicht installiert"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Konnte Datei %s nicht öffnen"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "soll aber nicht installiert werden"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "Lesen, habe noch %lu zu lesen aber nichts mehr da"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " oder "
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Die folgenden NEUEN Pakete werden installiert:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Beim Schließen der Datei trat ein Problem auf"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Die folgenden Pakete werden ENTFERNT:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Beim Unlinking der Datei trat ein Problem auf"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Die folgenden Pakete sind zurückgehalten worden:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Beim Synchronisieren einer Datei trat ein Problem auf"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Die folgenden Pakete werden aktualisiert:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Leerer Paketcache"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Die folgenden Pakete werden DEAKTUALISIERT:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Die Paketcachedatei ist korrumpiert"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Die folgenden gehaltenen Pakete werden verändert:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Die Paketcachedatei liegt in einer inkompatiblen Version vor"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (wegen %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Dieses APT unterstützt das Versionssystem „%s“ nicht"
-#: cmdline/apt-get.cc:547
-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, wenn Sie nicht genau wissen, was Sie tun!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Der Paketcache wurde für eine andere Architektur aufgebaut"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualisiert, %lu neu installiert, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Hängt ab"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu erneut installiert, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Hängt ab (vorher)"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu deaktualisiert, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Schlägt vor"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Empfiehlt"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nicht vollständig installiert oder entfernt.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Kollidiert"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Abhängigkeit werden korrigiert..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Ersetzt"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " fehlgeschlagen."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Veraltet"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Kann Abhängigkeiten nicht korrigieren"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Kann die Menge zu erneuernder Pakete nicht minimieren"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "wichtig"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Fertig"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "erforderlich"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nichterfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "optional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Authentifizierungswarnung überstimmt.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Abhängigkeitsbaum wird aufgebaut"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Diese Pakete ohne Überprüfung installieren [j/N]? "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Mögliche Versionen"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Einige Pakete konnten nicht authentifiziert werden"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Abhängigkeits-Generierung"
+
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Führe Information zur Verfügbarkeit zusammen"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Konnte %s nicht öffnen"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Interner Fehler, InstallPackages mit kaputten Pakete aufgerufen!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Konnte Datei %s nicht schreiben"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Kann Paketdatei %s nicht parsen (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Interner Fehler, Anordnung beendete nicht"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Kann Paketdatei %s nicht parsen (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Kann kein Lock für das Downloadverzeichnis erhalten."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Missgestaltete Zeile %lu in Quellliste %s („URI“)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Wie merkwürdig... Die Größen haben nicht übereingestimmt, schreiben Sie an "
-"apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Missgestaltete Zeile %lu in Quellliste %s („dist“)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Es müssen noch %sB von %sB Archiven geholt werden.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Missgestaltete Zeile %lu in Quellliste %s („URI parse“)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Es müssen %sB Archive geholt werden.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Missgestaltete Zeile %lu in Quellliste %s („absolute dist“)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Nach dem Auspacken werden %sB Plattenplatz zusätzlich benutzt.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Missgestaltete Zeile %lu in Quellliste %s („dist parse“)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Nach dem Auspacken werden %sB Plattenplatz freigegeben worden sein.\n"
+msgid "Opening %s"
+msgstr "%s wird geöffnet"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Konnte freien Platz in %s nicht bestimmen"
+msgid "Line %u too long in source list %s."
+msgstr "Zeile %u zu lang in der Quellliste %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Sie haben nicht genug Platz in %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Missgestaltete Zeile %u in Quellliste %s („type“)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "„Nur triviale“ angegeben, aber das ist keine triviale Operation."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typ „%s“ ist unbekannt in Zeile %u der Quellliste %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, tu was ich sage!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Missgestaltete Zeile %u in Quellliste %s („vendor id“)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Sie sind im Begriff, etwas potenziell Schädliches zu tun.\n"
-"Zum Fortfahren geben Sie bitte „%s“ ein.\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abbruch."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Möchten Sie fortfahren [J/n]? "
+"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket "
+"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das "
+"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte "
+"die Option APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Konnte %s nicht holen %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Einige Dateien konnten nicht heruntergeladen werden"
+msgid "Index file type '%s' is not supported"
+msgstr "Indexdateityp „%s“ wird nicht unterstützt"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Herunterladen abgeschlossen und im Nur-Herunterladen-Modus"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Das Paket %s muss reinstalliert werden, ich kann aber kein Archiv dafür "
+"finden."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Konnte einige Archive nicht herunterladen, vielleicht „apt-get update“ oder "
-"mit „--fix-missing“ probieren?"
+"Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies "
+"könnte durch gehaltene Pakete hervorgerufen worden sein."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene kaputte Pakete."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Konnte fehlende Pakete nicht korrigieren."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Listenverzeichnis %spartial fehlt."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Installation abgebrochen."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Archivverzeichnis %spartial fehlt."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Achtung, wähle %s an Stelle von %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Hole Datei %li von %li (noch %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Überspringe %s, es ist schon installiert und „upgrade“ ist nicht gesetzt.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Hole Datei %li von %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt\n"
+msgid "The method driver %s could not be found."
+msgstr "Der Treiber für Methode %s konnte nicht gefunden werden."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Paket %s ist ein virtuelles Paket, das bereitgestellt wird von:\n"
+msgid "Method %s did not start correctly"
+msgstr "Methode %s hat nicht korrekt gestartet"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installiert]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Bitte legen Sie das Medium mit dem Namen „%s“ in Laufwerk „%s“ und drücken "
+"Sie die Eingabetaste."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Sie sollten eines explizit zum Installieren auswählen."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Paketierungssystem „%s“ wird nicht unterstützt"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Kann keinen passenden Paketierungssystem-Typ bestimmen"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Kann nicht auf %s zugreifen."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-"Paket %s ist nicht verfügbar, wird aber von einem anderen\n"
-"Paket referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet\n"
-"ist oder nur aus einer anderen Quelle verfügbar ist.\n"
+"Sie müssen einige „source“-URIs für Quellen in die sources.list-Datei "
+"schreiben."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Doch die folgenden Pakete ersetzen es:"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+"Die Paketliste oder die Statusdatei konnte nicht geparst oder geöffnet "
+"werden."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Probieren Sie „apt-get update“, um diese Probleme zu korrigieren."
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ungültiger Eintrag in Einstellungs-Datei, kein „Package“-Header"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Paket %s hat keinen Installationskandidaten"
+msgid "Did not understand pin type %s"
+msgstr "Konnte Stecknadeltyp („pin type“) %s nicht verstehen"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Keine Priorität (oder Null) für Pin angegeben"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Dieser Paketcache wurde für ein inkompatibles Versionssystem aufgebaut"
+
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"Re-Installation von %s ist nicht möglich,\n"
-"es kann nicht heruntergeladen werden.\n"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewPackage)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ist schon die neueste Version.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage2)"
+
+#: apt-pkg/pkgcachegen.cc:182
+#, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release „%s“ für „%s“ konnte nicht gefunden werden"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Version „%s“ für „%s“ konnte nicht gefunden werden"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Gewählte Version %s (%s) für %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Der Befehl „update“ nimmt keine Argumente"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Kann kein Lock auf das Listenverzeichnis bekommen"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Einige Indexdateien konnten nicht heruntergeladen werden, sie wurden "
-"ignoriert oder alte an ihrer Stelle benutzt."
+"Toll, Sie haben die Anzahl an Paketen überschritten, die APT handhaben kann."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben "
+"kann."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Die folgenden NEUEN Pakete werden installiert:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"Toll, Sie haben die Anzahl an Versionen überschritten, die APT handhaben "
+"kann."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Toll, Sie haben die Anzahl an Abhängigkeiten überschritten, die APT "
+"handhaben kann."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Fehler trat beim Bearbeiten von %s auf (FindPkg)"
+
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Fehler trat beim Bearbeiten von %s auf (CollectFileProvides)"
+
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:"
+"Paket %s %s wurde nicht gefunden beim Verarbeiten der Dateiabhängigkeiten"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Kann nicht auf die Liste %s der Quellpakete zugreifen."
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Sammle Datei-Empfehlungen ein"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Konnte Paket %s nicht finden"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "E/A-Fehler beim Sichern des Quellcaches"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Konnte Paket %s nicht finden"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Achtung, wähle %s für reg. Ausdruck „%s“\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5-Summe stimmt nicht"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "aber %s soll installiert werden"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5-Summe stimmt nicht"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Probieren Sie „apt-get -f install“, um diese zu korrigieren:"
+#: apt-pkg/acquire-item.cc:1100
+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"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Nichterfüllte Abhängigkeiten. Versuchen Sie „apt-get -f install“ ohne "
-"jeglich Pakete (oder geben Sie eine Lösung an)."
+"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
+"dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n"
-"Sie eine unmögliche Situation angefordert haben oder dass, wenn Sie die\n"
-"Unstable-Distribution verwenden, einige erforderliche Pakete noch nicht\n"
-"kreiert oder aus Incoming herausbewegt wurden."
+"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie "
+"dieses Paket von Hand korrigieren müssen."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Da Sie nur eine einzige Operation angefordert haben, ist es sehr "
-"wahrscheinlich,\n"
-"dass das Paket einfach nicht installierbar ist und eine Fehlermeldung über\n"
-"dieses Paket erfolgen sollte."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Kaputte Pakete"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Die folgenden zusätzlichen Pakete werden installiert:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Vorgeschlagene Pakete:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Empfohlene Pakete:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Berechne Upgrade..."
+"Die Paketindexdateien sind korrumpiert: Kein Filename:-Feld für Paket %s."
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Fertig"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Größe stimmt nicht"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Herstellerblock %s enthält keinen Fingerabdruck"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden "
-"sollen"
+"Benutze CD-ROM-Einhängpunkt %s\n"
+"Hänge CD-ROM ein\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Kann Quellpaket für %s nicht finden"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identifiziere... "
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Überspringe schon heruntergeladene Datei „%s“\n"
+msgid "Stored label: %s\n"
+msgstr "Gespeicherte Kennzeichnung: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Sie haben nicht genug freien Platz in %s"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Hänge CD-ROM aus..."
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Es müssen noch %sB/%sB der Quellarchive geholt werden.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Benutze CD-ROM-Einhängpunkt %s\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Es müssen %sB der Quellarchive geholt werden.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Hänge CD-ROM aus\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Hole Quelle %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Warte auf CD...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Konnte einige Archive nicht holen."
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Hänge CD-ROM ein...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Suche auf CD nach Index-Dateien...\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Entpack-Befehl „%s“ fehlgeschlagen.\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Fand %i Paketindexe, %i Quellenindexe und %i Signaturen\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Überprüfen Sie, ob das Paket „dpkg-dev“ installiert ist.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Gespeicherte Kennzeichnung: %s \n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Build-Befehl „%s“ fehlgeschlagen.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Diese CD heißt: \n"
+"„%s“\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Kindprozess fehlgeschlagen"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopiere Paketlisten..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Es muss zumindest ein Paket angegeben werden, dessen Build-Dependencies\n"
-"überprüft werden sollen."
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Schreibe neue Quellliste\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Information zu Build-Dependencies für %s konnte nicht gefunden werden."
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Quelllisteneinträge für diese CD sind:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s hat keine Build-Dependencies.\n"
+msgid "Wrote %i records.\n"
+msgstr "Es wurden %i Datensätze geschrieben.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"%s Abhängigkeit für %s kann nicht befriedigt werden, da Paket %s nicht "
-"gefunden werden kann."
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s Abhängigkeit für %s kann nicht befriedigt werden, da keine verfügbare "
-"Version von Paket %s die Versionsanforderungen erfüllen kann."
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist "
-"zu neu."
+"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien "
+"geschrieben.\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Listenverzeichnis %spartial fehlt."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Build-Abhängigkeiten für %s konnten nicht erfüllt werden."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Verarbeitung der Build-Abhängigkeiten fehlgeschlagen"
+msgid "Preparing %s"
+msgstr "%s wird vorbereitet"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Unterstützte Module:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "%s wird entpackt"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Aufruf: apt-get [Optionen] Befehl\n"
-" apt-get [Optionen] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [Optionen] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get ist ein einfaches Kommandozeilenwerkzeug zum Herunterladen\n"
-"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n"
-"sind update und install.\n"
-"\n"
-"Befehle:\n"
-" update – neue Liste von Paketen einlesen\n"
-" upgrade – eine Paketaktualisierung durchführen\n"
-" install – neue Pakete installieren (pkg ist libc6 und nicht libc6."
-"deb)\n"
-" remove – Pakete entfernen\n"
-" source – Quellarchive herunterladen\n"
-" build-dep – die Build-Abhängigkeiten für Quellpakete konfigurieren\n"
-" dist-upgrade – „Distribution upgrade“, siehe apt-get(8)\n"
-" dselect-upgrade – der Auswahl aus „dselect“ folgen\n"
-" clean – heruntergeladene Archive löschen\n"
-" autoclean – veraltete heruntergeladene Archive löschen\n"
-" check – überprüfen, dass es keine nicht erfüllten Abhängigkeiten "
-"gibt\n"
-"\n"
-"Optionen:\n"
-" -h dieser Hilfetext\n"
-" -q protokollierbare (logbare) Ausgabe – keine Fortschrittsanzeige\n"
-" -qq keine Ausgabe außer bei Fehlern\n"
-" -d nur herunterladen – Archive NICHT installieren oder entpacken\n"
-" -s nichts tun; nur eine Simulation der Vorgänge durchführen\n"
-" -y für alle Antworten „Ja“ annehmen und nicht nachfragen\n"
-" -f versuchen fortzufahren, wenn die Integritätsüberprüfung fehlschlägt\n"
-" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n"
-" -u auch eine Liste der aktualisierten Pakete mit anzeigen\n"
-" -b ein Quellpaket nach dem Herunterladen übersetzen\n"
-" -V ausführliche Versionsnummern anzeigen\n"
-" -c=? Diese Konfigurationsdatei benutzen\n"
-" -o=? Beliebige Konfigurationsoptionen setzen, z. B. -o dir::cache=/tmp\n"
-"Siehe auch die Handbuch-Seiten apt-get(8), sources.list(5) und apt.conf(5) "
-"für\n"
-"weitergehende Informationen und Optionen.\n"
-" Dieses APT hat Super-Kuh-Kräfte.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Konfiguration von %s wird vorbereitet"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "OK "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Konfiguriere %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Hole:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Fehler beim Verarbeiten von Verzeichnis %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s installiert"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Fehl "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Entfernen von %s wird vorbereitet"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Es wurden %sB in %s geholt (%sB/s)\n"
+msgid "Removing %s"
+msgstr "%s wird entfernt"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Arbeite]"
+msgid "Removed %s"
+msgstr "%s entfernt"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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“ und drücken Sie die Eingabetaste.\n"
+msgid "Preparing to completely remove %s"
+msgstr "Komplettes Entfernen von %s wird vorbereitet"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Unbekannter Paketeintrag!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s komplett entfernt"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Aufruf: apt-sortpkgs [optionen] datei1 [datei2 ...]\n"
-"\n"
-"apt-sortpkgs ist ein einfaches Werkzeug, um Paketdateien zu sortieren. Die\n"
-"Option -d wird benutzt, um anzuzeigen, um was für eine Datei es sich "
-"handelt.\n"
-"\n"
-"Optionen:\n"
-" -h Dieser Hilfetext\n"
-" -s Quelldateisortierung benutzen\n"
-" -c=? Diese Konfigurationsdatei lesen\n"
-" -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Fehlerhafte Voreinstellung"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Konnte Datei %s nicht öffnen"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Zum Fortfahren Enter drücken."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Verbindung zu früh beendet"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr ""
-"Einige Fehler traten während des Entpackens auf. Ich werde die installierten"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Zeile %d zu lang (maximal %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern "
-"durch"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler über "
-"dieser"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"Meldung sind wichtig. Bitte beseitigen Sie sie und [I]nstallieren erneut."
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Gespeicherte Kennzeichnung: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Führe Information zur Verfügbarkeit zusammen"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Fand %i Paketindexe, %i Quellenindexe und %i Signaturen\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt_po.pot\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"X-Poedit-Country: Bhutan\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་"
-"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།"
+msgid "Unable to locate package %s"
+msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "ནང་བསྐྱོད་འབད་དོ།"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "à½\91ོà¼\8bà½\96à½\89à½\98à¼\8bà½\82ིà¼\8bà½\98ིà½\84à¼\8bའà½\91ིà¼\8bà½\82à½\8fà½\93à¼\8bའà½\96ེà½\96སà¼\8bà½\96à½\9fོà¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr "སྤྱིརà¼\8bà½\96à½\8fà½\84à¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུ།"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "à½\89ེà¼\8bà½\82à½\93སà¼\8bà½\98ིà½\84à¼\8bའà½\91ིà¼\8bà½\82à½\8fà½\93à¼\8bའà½\96ེེà½\96སà¼\8bà½\96à½\9fོà¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8d"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr "à½\96རà¼\8bà½\85ུà¼\8bཡལà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82à½\99à½\84à¼\8bà½\98à¼\8bà½\9aུ:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr "བརླག་སྟོར་ཞུགས་པ:"
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::"
-"ProxyLoginའདི་སྟོངམ་ཨིན་པས།"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "à½\93à½\84à¼\8bà½\96སà¾\90ྱོà½\91à¼\8bཡིà½\82à¼\8bà½\9aུà½\82སà¼\8b à½\96རྡà¼\8bà½\96à½\80ོà½\91à¼\8b'%s'à¼\8bའà½\91ིà¼\8bའà½\90ོསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8b སརà¼\8bà½\96རà¼\8bà½\82ྱིསà¼\8bསླà½\96à¼\8bà½\98ས:%s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "à½\81ྱà½\91à¼\8bརà¾\9fà½\82སà¼\8bà½\85à½\93à¼\8bà½\82ྱིà¼\8bà½\90ོà½\93à¼\8bརིà½\98à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\96སྡོà½\98ས:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "རྟེན་འབྲེལ་བསྡོམས:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "à½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bà½\84ལà¼\8bà½\98à½\9aà½\98ས"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "à½\90ེà½\93à¼\8bརིà½\98à¼\8b/ཡིà½\82à¼\8bསྣོà½\91à¼\8b à½\98à½\90ུà½\93à¼\8bའà½\96ྲེལà¼\8bà½\82ྱིà¼\8bà½\96སྡོà½\98ས:"
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "འà½\9bོལà¼\8bà½\96à¼\8bལྷà½\96à¼\8d"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "ཡོà½\84སà¼\8bà½\96སྡོà½\98སà¼\8bà½\80ྱིསà¼\8bསà¼\8bà½\81ྲà¼\8bà½\96à½\9fོà¼\8bà½\96à¼\8bà½\9aུà¼\8bà½\96ྱིà½\93à½\98à¼\8bཨིà½\93:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "ལà½\93à¼\8bà½\82ྱིསà¼\8b à½\82à½\93à½\91à¼\8bà½\81ོà½\84སà¼\8bà½\82ུརà¼\8bལསà¼\8b ལུà½\91à¼\8bསོà½\84à¼\8bསà¾\9fེà¼\8bཡོà½\91à½\94à¼\8bཨིà½\93à¼\8d"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "སྤུà½\84སà¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bཡིà½\82à¼\8bརà¾\92ྱུà½\93à¼\8bà½\82ྱིà¼\8bà½\96སྡོà½\98ས:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "à½\82à½\93à½\91à¼\8bསྤེལà¼\8bལà½\98à¼\8bལུà½\82སà¼\8b à½\84à½\93à¼\8bà½\85à½\93à¼\8d"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "རà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\90ོà½\93à¼\8bརིà½\98à¼\8bà½\96རà¼\8bསà¾\9fོà½\84à¼\8bà½\82ྱིà¼\8bà½\96སྡོà½\98ས:"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "འà½\9bོལà¼\8bà½\96à¼\8bའà½\96ྲིà¼\8d"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "à½\96རà¼\8bསà¾\9fོà½\84à¼\8bལྷུà½\82à¼\8bལྷུà½\82à¼\8bà½\82ིà¼\8bà½\96སྡོà½\98ས:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "སོà¼\8bà½\80ེà½\8aིà¼\8bà½\85ིà½\82à¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8bà½\94རà¼\8bཡོà½\91à½\94à¼\8bཨིà½\93à¼\8d"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "à½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bརྩིསà¼\8bà½\90ོà¼\8bà½\96à½\8fོà½\93à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\96རà¼\8bསà¾\9fོà½\84:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "འà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "à½\81ྱོà½\91à¼\8bà½\80ྱིསà¼\8bà½\8fà½\82à¼\8bà½\8fà½\82à¼\8bསྦེà¼\8bà½\91à½\94ེà¼\8bà½\82à½\9eིà¼\8bà½\82à½\85ིà½\82à¼\8bà½\96ྱིà½\93à¼\8bà½\91à½\82ོ"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "à½\96ྱà¼\8bཡུལà¼\8bà½\82ྱིà¼\8bསོà¼\8bà½\80ེà½\8aིà¼\8bà½\98à½\90ུà½\91à¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུà¼\8bà½\98à¼\8bà½\90ོà½\96།"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr ""
+"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(མ་ཐོབ།)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "à½\98à¼\8bཤེསà¼\8bà½\94འིà¼\8bà½\81à¼\8bà½\96ྱà½\84à¼\8bà½\82ིà¼\8bརིà½\82སà¼\8bà½\9aà½\93à¼\8b%u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr "à½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bཡོà½\91à½\94à¼\8d"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ཅི་མེད།)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr "མི་ངོ:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "à½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bའà½\91ིà¼\8bà½\91à½\84à¼\8bལེà½\93à¼\8bའà½\96à½\91à¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8d"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82ྱིà¼\8bà½\81à½\96à¼\8bà½\82à½\9fེར:"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས"
+msgid " %4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "འདྲི་དཔྱད།"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "%s (%s)་ལུ་མཐུད་དོ།"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"ལག་ལེན།: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n"
+"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་"
+"ལུ་ཨིན།\n"
+"cache files, and query information from them\n"
+"\n"
+"བརྡ་བཀོད:\n"
+" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n"
+" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n"
+" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n"
+" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n"
+" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n"
+" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n"
+" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n"
+" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n"
+" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n"
+" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n"
+" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n"
+" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n"
+" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n"
+" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n"
+" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n"
+" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n"
+"\n"
+"གདམ་ཁ་ཚུ་:\n"
+" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n"
+" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n"
+" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n"
+" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n"
+" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n"
+" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n"
+" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::"
+"cache=/tmp\n"
+" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n"
+"\n"
+"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n"
+"\n"
+"བརྡ་བཀོད་ཚུ:\n"
+" shell - ཤལ་གྱི་ཐབས་ལམ།\n"
+" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n"
+"\n"
+"གདམ་ཁ་ཚུ:\n"
+" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
+" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
+" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "%s་ལུ་མཐུད་དོ།"
+msgid "%s not a valid DEB package."
+msgstr "%s འདི་ནུས་ཅན་གྱི་ ཌི་ཨི་བི་ཅིག་མེན་པས།"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"ལག་ལེན་: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates འདི་ཌེ་བི་ཡཱན་ ཐུམ་སྒྲིལ་ཚུ་ནང་ལས་\n"
+"རིམ་སྒྲིག་དང་ ཊེམ་པེལེཊི་ བརྡ་དོན་ཕྱིར་དོན་འབད་ནིའི་ལག་ཆས་ཅིགཨིན།\n"
+"གདམ་ཁ་ཚུ།\n"
+" -h འདི་གིས་ཚིག་ཡིག་འདི་གྲོགས་རམ་འབདཝ་ཨིན།\n"
+" -t འདི་གིས་temp་སྣོད་ཐོ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན།\n"
+" -c=? འདི་གིས་ རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
+" -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་"
+"བཟུམ།\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།"
+msgid "Unable to write to %s"
+msgstr " %sལུ་འབྲི་མ་ཚུགས།"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "debconf ་་འཐོན་རིམ་འདི་ལེན་མ་ཚུགས། debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "ཐུམ་སྒྲིལ་རྒྱ་བསྐྱེད་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "'%s'ལྡེ་འཁོར་འདི་འཛུལ་སྤྱོད་འབད་མ་ཚུགས།"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Acquire::gpgv::Options་ནང་ལས་ཀྱི་སྒྲུབ་རྟགས་ཀྱི་ཐོ་ཡིག་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག ཕྱིར་"
-"འཐོན་དོ།"
+msgid "Error processing directory %s"
+msgstr "སྣོད་ཐོ་%s་ལས་སྦྱོར་འབདཝ་ད་འཛོལ་བ་འཐོན་ཡི།"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་"
-"མ་ཚུགས?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "འབྱུང་ཁུངས་རྒྱ་བསྐྱེད་ཀྱི་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིང་པས།"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "à½\89ུà½\84à¼\8bà½\98à½\90འà¼\8bརà½\84à¼\8bà½\93ུསà¼\8bà½\98ེà½\91à¼\8bà½\80ྱིà¼\8bà½\98ིà½\84à¼\8bརà¾\9fà½\82སà¼\8bà½\85ིà½\82à¼\8bà½\82à½\91ོà½\84à¼\8bà½\90ུà½\82à¼\8bà½\96ྱུà½\84à¼\8bསà¾\9fེà¼\8bཡོà½\91à½\94à¼\8bཨིà½\93à¼\8d"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "à½\93à½\84à¼\8bà½\91ོà½\93à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bལུà¼\8bà½\98à½\82ོà¼\8bཡིà½\82à¼\8bའà½\9bོལà¼\8bà½\96à¼\8bའà½\96ྲིà¼\8bà½\93ིའིà¼\8bà½\98à½\82ོà¼\8bཡིà½\82"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gnupg་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་"
-"ན།?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n"
+msgid "Error processing contents %s"
+msgstr "%sའཛོལ་བ་ལས་སྦྱོར་འབད་ནིའི་ནང་དོན།"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "%s་ལས་སྦྱོར་ནང་ལས་འཛོལ་བ་ཚུ་ལྷག"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"ལག་ལེན:apt-ftparchive [options] command\n"
+"བརྡ་བཀོད་ཚུ:packages binarypath [overridefile [pathprefix]]\n"
+"sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive་འདི་གིས་ ཌི་བི་ཡཱན་ཡིག་མཛོད་ཚུ་གི་དོན་ལུ་ ཚིག་ཡིག་གི་ཡིག་སྣོད་ཚུ་བཟོ་བཏོན་འབདཝ་"
+"ཨིན། dpkg-scanpackages དང་ dpkg-scansources་གི་དོན་ལུ་ལས་འགན་ཚབ་མ་ཚུ་ལུ་ཆ་ཚང་སྦེ་ "
+"རང་བཞིན་གྱི་སྦེ་བཟོ་བཟོཝ་་ནང་ལས་བཟོ་བཏོན་གྱི་བཟོ་རྣམ་ཚུ་ལྷམ་པ་མ་འདྲཝ་སྦེ་ཡོད་མི་ལུ་རྒྱབ་སྐྱོར་འབདཝ་"
+"ཨིན།\n"
+"\n"
+"apt-ftparchive་ འདི་གིས་.debs་གི་རྩ་འབྲེལ་ཅིག་ནང་ལས་ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད་ཚུ་བཟོ་བཏོན་འབདཝ་ཨིན། "
+"ཐུམ་སྒྲིལ་\n"
+" ཡིག་སྣོད་འདི་གི་ནང་ན་ ཐུམ་སྒྲིལ་རེ་རེ་བཞིན་ནང་གི་ཚད་འཛིན་ས་སྒོ་ཚུ་ཆ་མཉམ་གི་ནང་དོན་དང་ ཨེམ་ཌི་༥་དྲྭ་"
+"རྟགས། (#)་དང་ཡིག་སྣོད་ཀྱི་ཚད་ཚུ་ཡང་ཡོདཔ་ཨིན། ཟུར་བཞག་ཡིག་སྣོད་འདི་\n"
+"གཙོ་རིམ་དང་དབྱེ་ཚན་གྱི་གནས་གོང་དེ་བང་བཙོང་འབད་ནི་ལུ་རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན།\n"
+"\n"
+"འདི་དང་ཆ་འདྲཝ་སྦེ་ apt-ftparchive་ འདི་གིས་.dscs་གི་རྩ་འབྲེལ་ཅིག་ནང་ལས་འབྱུང་ཁུངས་ཡིག་སྣོད་ཚུ་"
+"བཟོ་བཏོན་འབདཝ་ཨིན།\n"
+" --source-ཟུར་བཞག་གི་གདམ་ཁ་འདི་ ཨེསི་ཨར་སི་ ཟུར་བཞག་ཡིག་སྣོད་ཅིག་གསལ་བཀོད་འབད་ནི་ལུ་ལག་ལེན་"
+"འཐབ་བཐུབ་ཨིན།\n"
+"\n"
+"'ཐུམ་སྒྲིལ་ཚུ་'་དང་'འབྱུང་ཁུངས་་' བརྡ་བཀོད་ཚུ་རྩ་འབྲེལ་འདི་གི་་རྩ་བ་ནང་ལུ་སྦེ་གཡོག་བཀོལ་དགོཔ་ཨིན། ཟུང་"
+"ལྡན་འགྲུལ་ལམ་འདི་གིས་ལོག་རིམ་འཚོལ་ཞིབ་འདི་གི་གཞི་རྟེན་ལུ་དཔག་དགོཔ་ཨིནམ་དང་\n"
+"ཟུར་བཞག་ཡིག་སྣོད་འདི་ལུ་ཟུར་བཞག་གི་ཟུར་རྟགས་འོང་དགོཔ་ཨིན། འགྲུལ་ལམ་སྔོན་ཚིག་འདི་\n"
+"ཡོད་པ་ཅིན་ཡིག་སྣོད་མིང་གི་ས་སྒོ་ཚུ་ལུ་འཇུག་སྣོན་འབད་དེ་ཡོདཔ་ཨིན། དཔེར་ན་ ཌི་བི་ཡཱན་ཡིག་མཛོད་ལས་ལག་"
+"ལེན་བཟུམ:\n"
+"apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"གདམ་ཁ་ཚུ:\n"
+" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
+" --md5 ཨེམ་ཌི་༥་ བཟོ་བཏོན་འདི་ཚད་འཛིན་འབདཝ་ཨིན།\n"
+" -s=? འབྱུང་ཁུངས་ཟུར་བཞག་གི་ཡིག་སྣོད།\n"
+" -q ཁུ་སིམ་སིམ།\n"
+" -d=? གདམ་ཁ་ཅན་གྱི་འདྲ་མཛོད་གནད་སྡུད་གཞི་རྟེན་འདི་སེལ་འཐུ་འབད།\n"
+" --no-delink འབྲེལ་ལམ་མེད་སྦེ་བཟོ་་ནིའི་རྐྱེན་སེལ་ཐབས་ལམ་འདི་ལྕོགས་ཅན་བཟོ།\n"
+" --contents ནང་དོན་གི་ཡིག་སྣོད་བཟོ་བཏོན་འདི་ཚད་འཛིན་འབད།\n"
+" -c=? འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷག\n"
+" -o=? མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབད།"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "à½\98à½\82ོà¼\8bཡིà½\82à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bà½\96སà¾\92à¾\84à½\82à¼\8bà½\91ོà¼\8d"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "སེལà¼\8bའà½\90ུà¼\8bà½\9aུà¼\8bà½\98à½\90ུà½\93à¼\8bསà¾\92ྲིà½\82à¼\8bà½\98ིà½\93à¼\8bའà½\91ུà½\82"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "%u་ཡིག་འབྲུ་ཚུ་གི་ལྟག་ལས་མགོ་ཡིག་རྐྱང་པ་ཅིག་ཐོབ་ཡོད།"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཐུམ་སྒྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "ཌི་བི་ངན་ཅན་བྱུང་ནུག་ %s.རྒསཔ་ལུ་ཡིག་སྣོད་འདི་བསྐྱར་མིང་བཏགས་ཡི།"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "ཌི་བི་འདི་རྙིངམ་ཨིན་པས་ %s་ཡར་བསྐྱེད་འབད་ནིའི་དོན་ལུ་དཔའ་བཅམ་དོ།"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"ཌི་བི་རྩ་སྒྲིག་འདི་ ནུས་མེད་ཨིན་པས། ཁྱོད་ཀྱི་ apt་ གྱི་འཐོན་རིམ་རྙིངམ་ཅིག་ནང་ལས་ ཡར་བསྐྱེད་འབད་ཡོད་"
+"པ་ཅིན་ རྩ་བསྐྲད་གཏང་ཞིནམ་ལས་ གནད་སྡུད་གཞི་རྟེན་འདི་ ལོག་དེ་གསར་བསྐྲུན་འབད། "
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "%s: %s་ཌི་བི་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "སེལà¼\8bའà½\90ུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bའà½\91ིà¼\8bལུà¼\8bà½\9aà½\91à¼\8bའà½\9bིà½\93à¼\8bà½\91ྲà½\93à¼\8bà½\90ོà¼\8bà½\98ིà½\93à¼\8bའà½\91ུà½\82"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "à½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bà½\84ལà¼\8bà½\98à½\9aà½\98སà¼\8bའà½\96à½\91à¼\8bཡོà½\91།"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "འོà½\91à¼\8bརà¾\9fà½\82སà¼\8bལེà½\93à¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "ཌབ་ལུ:%sསྣོད་ཐོ་འདི་ལྷག་མ་ཚུགས།\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "ཌབ་ལུ་ %s སིཊེཊི་འབད་མ་ཚུགས།\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bལུà¼\8bའà½\96ྲིà½\9dà¼\8bà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8d"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "ཨི:"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "སརà¼\8bà½\96རà¼\8bà½\93à½\84à¼\8bལསà¼\8bལྷà½\82à¼\8bà½\94འིà¼\8bà½\96སà¾\92à½\84à¼\8bའà½\9bོལà¼\8bà½\96à¼\8d à½\90à½\82à¼\8bརིà½\84à¼\8bà½\98à½\87ུà½\82à¼\8bà½\82ིà¼\8bà½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bà½\91ེà¼\8bà½\81à¼\8bà½\96སྡà½\98སà¼\8d"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "à½\8cà½\96à¼\8bལུ:"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "སརà¼\8bà½\96རà¼\8bà½\93à½\84à¼\8bལསà¼\8bལྷà½\82à¼\8bà½\94འིà¼\8bà½\96སà¾\92à½\84à¼\8bའà½\9bོལà¼\8bà½\96།"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "ཨི:འà½\9bོལà¼\8bà½\96à¼\8bà½\9aུà¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bལུà¼\8bའà½\87ུà½\82à¼\8bསྤྱོà½\91à¼\8bའà½\96à½\91།"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "%s་མོས་མཐུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "à½\96à½\90ུà½\91à¼\8bལà½\98à¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91།"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "རྩà¼\8bའà½\96ྲེལà¼\8bà½\95ྱིརà¼\8bà½\96à½\82ྲོà½\91à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à½\94།"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "ནང་འཁོད་འཛོལ་བ།"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།"
+msgid "Failed to readlink %s"
+msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།"
+msgid "Failed to unlink %s"
+msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** %s་ལས་%sལུ་འབྲེལ་འཐུད་འབད་ནི་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།"
+msgid " DeLink limit of %sB hit.\n"
+msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམས།\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-#| msgid "Line %d too long (max %d)"
-msgid "Line %d too long (max %u)"
-msgstr "གྲལ་ཐིག་%d་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག(%d་མཐོ་ཤོས)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "ཡིག་མཛོད་ལུ་ཐུམ་སྒྲིལ་ཅི་ཡང་འཐུས་ཤོར་མ་བྱུང་།"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན"
+msgid " %s has no override entry\n"
+msgstr " %sལུ་ཟུར་བཞག་ཐོ་བཀོད་མེད།\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s ་རྒྱུན་སྐྱོང་པ་འདི་ %s ཨིན་ %s མེན།\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།"
+msgid " %s has no source override entry\n"
+msgstr " %s ལུ་འབྱུང་ཁུངས་མེདཔ་གཏང་ནིའི་ཐོ་བཀོད་འདི་མེད།\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།"
+msgid " %s has no binary override entry either\n"
+msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གཏང་ནིའི་་ཐོ་བཀོད་གང་རུང་ཡང་མིན་འདུག།\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "à½\9aིà½\82à¼\8bསྦྱོརà¼\8bའà½\9bོལà¼\8bà½\96à¼\8b%s:%u:འà½\91ུà¼\8bའà½\9bོà½\98སà¼\8bའà½\96à½\91à¼\8bའà½\96à½\91à½\9dà¼\8bལེà¼\8bཤཱà¼\8bà½\82ྲà½\84སà¼\8bསུà¼\8bà½\96à½\99ུà½\82སà½\94à¼\8bཨིà½\93།"
+msgid "Internal error, could not locate member %s"
+msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8bà½\82ིསà¼\8bའà½\90ུསà¼\8bà½\98ིà¼\8b%sའà½\91ིà¼\8bà½\82à¼\8bཡོà½\91à¼\8bའà½\9aོལà¼\8bà½\98à¼\8bའà½\90ོà½\96།"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "དྲན་ཚད་སྤྲོད་ནིའི་དོན་ལུ་ རི་ཨེ་ལོཀ་ འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།"
+msgid "Unable to open %s"
+msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "à½\9aིà½\82à¼\8bསྦྱོརà¼\8bའà½\9bོལà¼\8bà½\96à¼\8b%s:%u: ཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\80ྱིà¼\8bà½\98à½\87ུà½\82à¼\8bལུà¼\8bà½\98à½\81ོà¼\8bà½\98ེà½\91à¼\8bà½\90ེà½\96སà¼\8d"
+msgid "Malformed override %s line %lu #1"
+msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\9fུརà¼\8bà½\96à½\9eà½\82à¼\8b%s à½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།"
+msgid "Malformed override %s line %lu #2"
+msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་ཐིག%lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... འཛོལ་བ་!"
+msgid "Malformed override %s line %lu #3"
+msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་ཐིག%lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... འབད་ཚར་ཡོད།"
+msgid "Failed to read the override file %s"
+msgstr "ཟུར་བཞག་ཡིག་སྣོད་%sའདི་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པས།"
+msgid "Unknown compression algorithm '%s'"
+msgstr " མ་ཤེས་ཨེབ་བཙུགས་ཨཱལ་གོ་རི་དམ'%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "à½\96à¼\8bརྡà¼\8bà½\96à½\80ོà½\91à¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8bà½\82ིà¼\8bà½\82à½\91à½\98à¼\8bà½\81à¼\8b%sà¼\8bའà½\91ིà¼\8bཧà¼\8bà½\98à¼\8bà½\82ོà¼\8bà½\96སà¼\8d"
+msgid "Compressed output %s needs a compression set"
+msgstr "ཨེà½\96à¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bཨའུà½\8aིà¼\8bà½\94ུà½\8aིà¼\8b%sལུà¼\8bཨེà½\96à¼\8bà½\96à½\99ུà½\82སà¼\8bà½\86à¼\8bà½\9aà½\93à¼\8bà½\85ིà½\82à¼\8bà½\91à½\82ོà½\94à¼\8bའà½\91ུà½\82"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་བུ་ལིན་མེན་པས།"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "ཡིག་སྣོད་*་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "ཁ་སྤེལ་འབད་ནི་ལུ་འཐུ་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "ཆ་ལག་ཨེབ་བཙུགས་འབད།"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "à½\82à½\91à½\98à¼\8bà½\81à¼\8b'%s'འà½\91ིà¼\8bà½\82à½\93à½\98à¼\8bà½\98ེà½\91à¼\8bསà¼\8bà½\98ེà½\91à¼\8bརིà½\84à½\98à¼\8bའà½\91ུà½\82"
+msgid "Internal error, failed to create %s"
+msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8b %sà¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "ཨེབ་བཤོལ་འཕྲུལ་ཆས།"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་IO/ཡིག་སྣོད་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "སིà¼\8bà½\8cིà¼\8bརོà½\98à¼\8bའà½\91ིà¼\8bà½\84ོà¼\8bà½\96ཤུསà¼\8bའà½\96à½\91་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "ཨེà½\98à¼\8bà½\8cིà¼\8b༥à¼\8bà½\82ློà½\82à¼\8bརིà½\82à¼\8bརà¾\90ྱà½\96à¼\8bà½\94འིà¼\8bསà¾\90à½\96སà¼\8bལྷà½\82་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།"
+msgid "Problem unlinking %s"
+msgstr "%s་འབྲེལ་འཐུད་མེདཔ་བཟོ་ནི་ལུ་དཀའ་ངལ།"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
+msgid "Failed to rename %s to %s"
+msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "ཝའི།"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།"
+msgid "Regex compilation error - %s"
+msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "ཡà½\93à¼\8bལà½\82à¼\8bལསà¼\8bསྦྱོརà¼\8b%sà¼\8bལུà¼\8bà½\86à¼\8bà½\96à½\82ོསà¼\8bà½\80ྱིà¼\8bསà¾\90ྱོà½\93à¼\8bà½\85ིà½\82à¼\8bà½\90ོà½\96à¼\8bཡོà½\91à½\94à¼\8bཨིà½\93།"
+msgid "but %s is installed"
+msgstr "འà½\91ིà¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8b%sà¼\8bའà½\91ིà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bཡོà½\91།"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "ཡà½\93à¼\8bལà½\82à¼\8bལསà¼\8bསྦྱོརà¼\8b%sà¼\8bà½\82ིསà¼\8bའà½\9bོལà¼\8bà½\96འིà¼\8bཨà½\84à¼\8bརà¾\9fà½\82སà¼\8b(%u)à½\85ིà½\82à¼\8bསླརà¼\8bལོà½\82à¼\8bའà½\96à½\91à¼\8bཡོà½\91à½\94་ཨིན།"
+msgid "but %s is to be installed"
+msgstr "འà½\91ིà¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8b%sའà½\91ིà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bà½\93ི་ཨིན།"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bà½\81à¼\8bà½\96སྡà½\98སà¼\8bà½\94འིà¼\8bà½\96སà¾\92à½\84à¼\8bà½\91à½\80འà¼\8bà½\84ལ།"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr "ཡà½\84à¼\8bà½\93།"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bའà½\96ྲེལལà½\98à¼\8bà½\98ེà½\91à½\94à¼\8bà½\96à½\9fོà¼\8bà½\96འིà¼\8bà½\96སà¾\92à½\84à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིསà¼\8bà½\82སརà½\94à¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\81à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\98à½\89à½\98à¼\8bà½\96ྱུà½\84à¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bརྩ à½\96སà¾\90ྲà½\91à¼\8bà½\82à½\8fà½\84à¼\8bའོà½\84à¼\8b:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bསà¾\9fོà½\84à½\98à¼\8d"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bལོà½\82à¼\8bསà¾\9fེà¼\8bརà½\84à¼\8bà½\96à½\9eà½\82à¼\8bà½\93ུà½\82:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bà½\84à½\93à¼\8bà½\85à½\93à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིསà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8b à½\98ིà¼\8bà½\98à½\90ུà½\93à¼\8bà½\94འིà¼\8bའà½\90ོà½\93à¼\8bརིà½\98à¼\8bà½\85ིà½\82à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\98རà¼\8bà½\95à½\96à¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།"
+msgid "%s (due to %s) "
+msgstr "%s( %s་གིས་སྦེ)"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n"
+"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "རྟེནམ་ཨིན།"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "མི་མཐུནམ་ཨིན།"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "à½\9aà½\96à¼\8bà½\96à½\99ུà½\82སà½\94à¼\8bཨིà½\93།"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "རà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\93ོརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bà½\91ོ།"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "à½\95à½\93à¼\8bà½\98ེà½\91à½\94à¼\8bà½\96à½\9fོà½\9dà¼\8bཨིà½\93།"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr "འà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91།"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "à½\82ལà¼\8bà½\85à½\93།"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "ཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\86à¼\8bà½\9aà½\93à¼\8bའà½\91ིà¼\8bà½\86ུà½\84à¼\8bà½\80ུà¼\8bà½\96à½\9fོà¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94ས།"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "à½\91à½\82ོསà¼\8bà½\98à½\81ོà¼\8bཡོà½\91à½\94།"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr "འà½\96à½\91à¼\8bà½\9aརà¼\8bཡི།"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "à½\9aà½\91à¼\8bལྡà½\93།"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "འà¼\8bà½\93ིà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\93ོརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bà½\81ྱོà½\91à¼\8bà½\80ྱིà¼\8b`apt-get -f install'à½\91ེà¼\8bà½\82ཡོà½\82à¼\8bà½\96à½\80ོལà¼\8bà½\91à½\82ོà½\94à¼\8bའོà½\84à¼\8b།"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "à½\82à½\91à½\98à¼\8bà½\81à¼\8bà½\85à½\93།"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "à½\98à¼\8bà½\9aà½\84à¼\8bà½\94འིà¼\8bརà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\9aུà¼\8d -f ལà½\82à¼\8bལེà½\93à¼\8bའà½\90à½\96à¼\8bསà¾\9fེà¼\8bའà½\96à½\91à¼\8bརྩོལà¼\8bà½\96སà¾\90ྱེà½\91།"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "à½\90ེà½\96ས།"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "à½\89ེà½\93à¼\8bà½\96རྡ:འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\96à½\91ེà½\93à¼\8bà½\96ཤà½\91à¼\8bའà½\96à½\91à¼\8bà½\98ིà¼\8bà½\96à½\8fུà½\96à¼\8bà½\94ས།"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "རà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\82ྱིà¼\8bརྩà¼\8bའà½\96ྲེལà¼\8bà½\96à½\9fོà¼\8bà½\96རྩིà½\82སà¼\8bའà½\96à½\91à¼\8bà½\91ོà¼\8d"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "à½\96à½\91ེà½\93à¼\8bà½\96ཤà½\91à¼\8bà½\89ེà½\93à¼\8bà½\96རྡà¼\8bའà½\91ིà¼\8bà½\9fུརà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8d\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "à½\98ིà¼\8bà½\84ོà¼\8bའà½\90ོà½\93à¼\8bརིà½\98à½\9aུà¼\8d"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "à½\96à½\91ེà½\93à¼\8bསྦྱོརà¼\8bà½\98à¼\8bའà½\96à½\91à¼\8bà½\96རà¼\8bའà¼\8bà½\93ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bཨིà½\93à¼\8bà½\93à¼\8b[y/N]? "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "à½\96རà¾\9fེà½\93à¼\8bà½\94འིà¼\8bà½\96à½\9fོà¼\8bà½\96à½\8fོà½\93།"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bལà¼\8bལུà¼\8bà½\85ིà½\82à¼\8bà½\96à½\91ེà½\93à¼\8bà½\96ཤà½\91à¼\8bའà½\96à½\91à¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-#| msgid "Merging available information"
-msgid "Reading state information"
-msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-#| msgid "Failed to open %s"
-msgid "Failed to open StateFile %s"
-msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་"
+"ཡོད!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-#| msgid "Failed to write file %s"
-msgid "Failed to write temporary StateFile %s"
-msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bའà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8b %lu འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b %s (ཡུà¼\8bཨརà¼\8bཨའིà¼\8b)à½\82ིà¼\8bà½\93à½\84à¼\8bà½\93།"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\9aུà¼\8bà½\80ྱིà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8bà½\91ེà¼\8bལྷà½\82à¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94ས།"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་"
+"བས།"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bའà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%luà¼\8b འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b%s(ཡà½\84à¼\8bà½\91à½\82à¼\8b dist)à½\82ིà¼\8bà½\93à½\84à¼\8bà½\93à¼\8d"
+msgid "Need to get %sB of archives.\n"
+msgstr "ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bà½\80ྱིà¼\8b%sBà¼\8bའà½\91ིà¼\8bལེà½\93à¼\8bà½\91à½\82ོà¼\8bà½\94སà¼\8d\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bའà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%luà¼\8b འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b%s(dist à½\98ིà½\84à¼\8bà½\91à½\94ྱà½\91à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8b)à½\93à½\84à¼\8bà½\93à¼\8d"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "à½\81à¼\8bསà¾\90ོà½\84à¼\8bà½\82ིà¼\8b%sBà¼\8bའà½\91ིà¼\8bà½\96ཤུà½\96à¼\8bà½\94འིà¼\8bཤུལà¼\8bལསà¼\8bà½\8cིà½\80སིà¼\8bà½\82ིà¼\8bà½\96རà¼\8bསà¾\9fོà½\84à¼\8bà½\91ེà¼\8bལà½\82à¼\8bལེà½\93à¼\8bའà½\90à½\96à¼\8bའོà½\84à¼\8bà¼\8d\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "%s་ཁ་ཕྱེ་དོ།"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག"
+msgid "Couldn't determine free space in %s"
+msgstr "%s་ནང་བར་སྟོང་"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།"
+msgid "You don't have enough free space in %s."
+msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག"
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(སིལ་ཚོང་པ་ ཨའི་ཌི)གི་ནང་ན།"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་"
-"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ "
-"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་"
-"ལྡན་བཟོ།"
+"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n"
+"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "བར་བཤོལ་འབད།"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?"
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་"
-"མ་ཐོབ།"
+msgid "Failed to fetch %s %s\n"
+msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"འà½\9bོལà¼\8bà½\96à¼\8b pkgProblemResolver::à½\82ིསà¼\8bà½\96à½\9fོà¼\8bà½\96à½\8fོà½\93à¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\98à½\9aà½\98སà¼\8bà½\91ེà¼\8bà½\9aུà¼\8bà½\98ོསà¼\8bà½\98à½\90ུà½\93à¼\8bà½\96à½\9fོà½\9dà¼\8bཨིà½\93 འà¼\8bà½\93ིà¼\8bà½\90ུà½\98à¼\8b"
-"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།"
+"ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bལà¼\8bལུà¼\8bà½\85ིà½\82à¼\8bལེà½\93à¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94སà¼\8b apt-getà¼\8bà½\91ུསà¼\8bà½\98à½\90ུà½\93à¼\8bà½\96à½\9fོà¼\8bà½\93ིà¼\8bà½\82ཡོà½\82à¼\8bà½\96à½\80ོལà¼\8bà½\93ིà¼\8bཨིà½\93à¼\8bà½\93à¼\8bཡà½\84à¼\8bà½\93à¼\8b--fix-"
+"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་"
+"འབད་བས།\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "à½\90à½\96སà¼\8bལà½\98à¼\8bའà½\91ྲེà½\93à¼\8bà½\96ྱེà½\91à¼\8b%sà¼\8bའà½\91ིà¼\8bà½\98à¼\8bའà½\90ོà½\96à¼\8d"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8b%sà¼\8bའà½\91ིà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bà½\98à¼\8bའà½\96à½\91à¼\8bà½\96སà¼\8b འà½\91ིà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bà½\91ིà¼\8bà½\82ིསà¼\8bརྩà¼\8bà½\96སà¾\90ྲà½\91à¼\8bà½\98à¼\8bà½\82à½\8fà½\84à¼\8bà½\94སà¼\8dà¼\8b\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "à½\90à½\96སà¼\8bལà½\98à¼\8b %s འà½\91ིà¼\8bà½\84ེསà¼\8bà½\96à½\91ེà½\93à¼\8bསྦེà¼\8bའà½\82ོà¼\8bà½\98à¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8d"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "à½\82ྱིསà¼\8bà½\96ྱིà½\93à¼\8bà½\8fེà¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8b%sà¼\8bའà½\91ིà¼\8bà½\96རà¼\8bà½\85ུà¼\8bཡལà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\85ིà½\82à¼\8bཨིà½\93à¼\8d\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [གཞི་བཙུགས་འབད་ཡོད།]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "ཁྱོད་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གཏན་འཁལ་སྦེ་གཅིག་སེལ་འཐུ་འབད་དགོ"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།"
+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"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "འོསà¼\8bའà½\96à½\96à¼\8bà½\91à½\84à¼\8bལྡà½\93à¼\8bà½\94འིà¼\8bསྦུà½\84à¼\8bà½\9aà½\93à¼\8bརིà½\98à¼\8bལུà½\82སà¼\8bà½\80ྱིà¼\8bà½\91à½\96ྱེà¼\8bà½\96à¼\8bà½\85ིà½\82à¼\8bà½\82à½\8fà½\93à¼\8bའà½\96ེà½\96སà¼\8bà½\96à½\9fོà¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94སà¼\8d"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "à½\82à¼\8bà½\91ེà¼\8bསྦེà¼\8bཨིà½\93à¼\8bརུà½\84à¼\8bའོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུà¼\8bà½\82ིསà¼\8b འà½\91ིà¼\8bà½\9aà½\96à¼\8bà½\96à½\99ུà½\82སà½\94à¼\8bཨིà½\93:"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Unable to stat %s."
-msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།"
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།"
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།"
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག"
-
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "%s (ཐུམ་སྒྲིལ་གསརཔ་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+msgid "Package %s has no installation candidate"
+msgstr "ཐུམ་སྒྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༢་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག"
+msgid "%s is already the newest version.\n"
+msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+msgid "Release '%s' for '%s' was not found"
+msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr " %s (འཐོན་རིམ་གསརཔ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+msgid "Version '%s' for '%s' was not found"
+msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "%s (ལག་ལེན་ཐུམ་སྒྲིལ་ ༣་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོབ་ཅིག་བྱུང་ནུག"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "%s (འཐོན་རིམ་གསརཔ་ ༢)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་"
+"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-#| msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག"
-
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག"
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "%s (CollectFileProvides)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82ྱིà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b%sà¼\8bà½\91ེà¼\8bà½\84ོà¼\8bà½\96ཤུསà¼\8bའà½\96à½\91à¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8b à½\91à½\80འà¼\8bà½\84ལà¼\8bà½\98ོསà¼\8bà½\98à½\90ུà½\93à¼\8bའà½\96à½\91à¼\8bà½\98ིà¼\8bà½\85à¼\8bà½\86སà¼\8bà½\9aུà¼\8bà½\98ེà½\91à½\94à¼\8bà½\90ལà¼\8bཡོà½\91།"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr " %sལུ་འབྲི་མ་ཚུགས།"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།"
+msgid "Couldn't find package %s"
+msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།"
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འཐུ་འབད་དོ།\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8b ཨའིà¼\8bà½\8cིà¼\8bà¼\8b ལྡེà¼\8bà½\98ིà½\82à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bà½\98ིà¼\8bà½\91à½\98à½\84à¼\8bà½\82ིà¼\8bལྡེà¼\8bà½\98ིà½\82à¼\8bའà½\91ིà¼\8bའà½\90ོà½\96à¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94ས:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "འà½\91ིà¼\8bà½\9aུà¼\8bà½\93ོརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bà½\93ིའིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bà½\81ྱོà½\91à¼\8bà½\80ྱིà¼\8b`apt-get -f install'à½\91ེà¼\8bà½\82ཡོà½\82à¼\8bà½\96à½\80ོལà¼\8bà½\91à½\82ོà½\94à¼\8bའོà½\84à¼\8b:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ "
-"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)"
+"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།"
+"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)"
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ "
-"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག "
+"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་"
+"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་"
+"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།"
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།"
+"ད་ཚུན་ཁྱོད་ཀྱི་བཀོལ་སྤྱོད་རྐྱང་པ་ཅིག་རྐྱང་པ་ རྐྱངམ་ཅིག་ཞུ་བ་འབད་ཡོདཔ་ལས་ ཧ་ཅང་གི་ཐུམ་སྒྲིལ་འདི་གཞི་"
+"བཙུགས་འབད་མི་བཏུབ་ནི་དེ་སྲིད་ནི་བཟུམ་ཅིག་དང་ཐུམ་སྒྲིལ་དི་གི་ཁ་ཐད་དུ་རྐྱེན་གྱི་སྙན་ཞུ་འདི་བཀང་བཞག་དགོ"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "à½\9aà½\91à¼\8bà½\98à¼\8bà½\98à½\90ུà½\93།"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "à½\86à½\91à¼\8bà½\94à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུ།"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-" %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n"
-"སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ།\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "à½\84ོསà¼\8bའà½\9bིà½\93à¼\8bའà½\96à½\91à¼\8bà½\91ོ.."
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "འོསà¼\8bསྦྱོརà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུ:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... "
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "སིà¼\8bà½\8cིà¼\8b-རོà½\98à¼\8bà½\96རྩེà½\82སà¼\8bà½\96ཤོལà¼\8bའà½\96à½\91à¼\8bà½\91ོà¼\8d\n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "འà½\96à½\91à¼\8bà½\9aརà¼\8bཡིà¼\8d"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "à½\8cིསིà½\80à¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bà½\96སà¾\92ུà½\82à¼\8bà½\91ོ...\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8b à½\91à½\80འà¼\8bà½\84ལà¼\8bà½\98ོསà¼\8bà½\98à½\90ུà½\93à¼\8bའà½\96à½\91à¼\8bà½\98ིà¼\8bà½\85à¼\8bà½\86སà¼\8bà½\9aུà¼\8bà½\98ེà½\91à½\94à¼\8bà½\90ལà¼\8bཡོà½\91à¼\8d"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid "Found %i package indexes, %i source indexes and %i signatures\n"
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-#| msgid "Stored label: %s\n"
-msgid "Found label '%s'\n"
-msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n"
-
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n"
+msgid "Unable to find a source package for %s"
+msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-#| msgid "Unmounting CD-ROM..."
-msgid "Unmounting CD-ROM...\n"
-msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..."
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n"
+msgid "You don't have enough free space in %s"
+msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n"
+msgid "Need to get %sB of source archives.\n"
+msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་"
-"ཡོདཔ་ཨིན།\n"
+msgid "Fetch source %s\n"
+msgstr "%s་འབྱུང་ཁུངས་ལེན།\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-#| msgid "Lists directory %spartial is missing."
-msgid "Directory '%s' missing"
-msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing %s"
-msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Unpacking %s"
-msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།"
+msgid "Unpack command '%s' failed.\n"
+msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Preparing to configure %s"
-msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Configuring %s"
-msgstr "%s་རིམ་སྒྲིག་འབད་དོ།"
+msgid "Build command '%s' failed.\n"
+msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "སྣོད་ཐོ་%s་ལས་སྦྱོར་འབདཝ་ད་འཛོལ་བ་འཐོན་ཡི།"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ"
+
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Installed %s"
-msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།"
+msgid "Unable to get build-dependency information for %s"
+msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།"
+msgid "%s has no build depends.\n"
+msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Removing %s"
-msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Removed %s"
-msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་"
+"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་"
+"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Completely removed %s"
-msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།"
-#: methods/rred.cc:219
-#, fuzzy
-#| msgid "Could not open file %s"
-msgid "Could not patch file"
-msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "ཡà½\93à¼\8bལà½\82à¼\8bལསà¼\8bསྦྱོརà¼\8bལུà¼\8bཨའིà¼\8bà½\94ིà¼\8bསིà¼\8bརà¾\92ྱུà½\91à¼\8bà½\91ུà½\84à¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à½\94à¼\8d"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "རà¾\92ྱà½\96à¼\8bསà¾\90ྱོརà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\9aà½\91à¼\8bà½\82à½\9eིà¼\8bà½\9aུ:"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"ལག་ལེན་:apt-get [options] command\n"
+"apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n"
+"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་"
+"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n"
+" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n"
+"\n"
+"བརྡ་བཀོད་ཚུ་:\n"
+" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n"
+" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n"
+" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་"
+"ཨིན།\n"
+" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n"
+" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n"
+" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་"
+"ཨིན།\n"
+" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n"
+" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n"
+" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n"
+" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n"
+" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n"
+"\n"
+"གདམ་ཁ་ཚུ་:\n"
+" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
+" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n"
+" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n"
+" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n"
+" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n"
+" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n"
+" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n"
+" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n"
+" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n"
+" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n"
+" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n"
+" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n"
+" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n"
+"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt.conf(5)"
+"ལག་ཐོག་\n"
+"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n"
+" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n"
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "རà¾\92ྱུà½\91à¼\8bà½\91ུà½\84à¼\8bà½\9aུà¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91།"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "ཨེà½\96།"
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "à½\87ིà¼\8bà½\9bིà½\94à¼\8bའà½\91ིà¼\8bལà½\82à¼\8bལེà½\93à¼\8bའà½\90à½\96à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "ལེà½\93:"
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "à½\84à½\93à¼\8bà½\85à½\93à¼\8bà½\82ྱིà¼\8bཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8d"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "ཨེལà¼\8bà½\87ིà¼\8bཨེà½\93:"
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "à½\8aརà¼\8bà½\85ེà½\82à¼\8bསà½\98à¼\8bà½\91ེà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8b ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bà½\84à½\93à¼\8bà½\85à½\93à¼\8bà½\96ྱུà½\84à¼\8bà½\93ུà½\82"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "ཨིà¼\8bཨརà¼\8bཨརà¼\8d"
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [ལཱ་འབད་དོ།]"
+
+#: cmdline/acqprogress.cc:271
+#, 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-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "མ་ཤེས་པའི་ཐུམ་སྒྲིལ་གི་དྲན་ཐོ།"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"ལག་ལེན: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs་ འདི་ཐུམ་སྒྲིལ་གི་ཡིག་སྣོད་ཚུ་དབྱེ་སེལ་འབད་ནི་ལུ་ འཇམ་སམ་གྱི་ལག་ཆས་ཅིག་ཨིན། -s "
+"གདམ་ཁ་འདི་ ཡིག་སྣོད་ཀྱི་དབྱེ་ཁག་ག་ཅི་བཟུམ་ཅིག་ཨིན་ན\n"
+"་བརྡ་སྟོན་འབད་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།\n"
+"\n"
+"གདམ་ཁ་ཚུ:\n"
+" -h འ་ནི་འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
+" -s འདི་གིས་འབྱུང་ཁུངས་ ཡིག་སྣོད་གསོག་འཇོག་འབད་དོན་ལུ་ལག་ལེན་འཐབ་ཨིན།\n"
+" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
+" -o=? འདི་གིས་ མཐུན་སྒྲིག་ རིམ་སྒྲིག་གི་གདམ་ཁ་ཚུ་ཁཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/"
+"tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།"
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། "
+"འདི་དེ་བཏུབ་པས་"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ "
+"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "རྒྱུད་དུང་ཚུ་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "ངན་ཅན་གྱི་ཡིག་མཛོད།"
+
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག"
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།"
#: apt-inst/contrib/arfile.cc:70
msgid "Invalid archive signature"
msgid "The diversion path is too long"
msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "info ་དང་ temp་སྣོད་ཐོ་ཚུ་ཡིག་སྣོད་རིམ་ལུགས་གཅིག་གུར་ལུ་བཞག་དགོཔ་ཨིན།"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
#: apt-inst/deb/debfile.cc:50
#, fuzzy, c-format
-#| msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "འ་ནི་འདི་ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ འདི་ལུ་'%s'ཡང་ན་'%s'འཐུས་མི་མིན་འདུག"
msgid "Unparsable control file"
msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།"
+msgid "Unable to read the cdrom database %s"
+msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་"
+"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr "སྤྱིརà¼\8bà½\96à½\8fà½\84à¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུ།"
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "སིà¼\8bà½\91ིà¼\8b-རོà½\98à¼\8bà½\95ྱིà¼\8bའà½\82ྱུར།"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr "à½\96རà¼\8bà½\85ུà¼\8bཡལà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bརà¾\90ྱà½\84à¼\8bà½\94à¼\8bà½\9aུ:"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "à½\8cིà½\80སིà¼\8bà½\91ེà¼\8bའà½\9aོལà¼\8bà½\98à¼\8bà½\90ོà½\96à¼\8d"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr "à½\96རà¼\8bà½\85ུà¼\8bཡལà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bསླà¼\8bà½\96སྲེà¼\8bཡོà½\91à¼\8bà½\98ིà¼\8bà½\9aུ:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\9aོལà¼\8bà½\98à¼\8bà½\90ོà½\96à¼\8d"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr "བརླག་སྟོར་ཞུགས་པ:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "à½\81ྱà½\91à¼\8bརà¾\9fà½\82སà¼\8bà½\85à½\93à¼\8bà½\82ྱིà¼\8bà½\90ོà½\93à¼\8bརིà½\98à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\96སྡོà½\98ས:"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "à½\86ུà¼\8bà½\9aོà½\91à¼\8bལེà½\82སà¼\8bà½\96à½\85ོསà¼\8bà½\82à½\9eིà¼\8bསà¾\92ྲིà½\82à¼\8bའà½\96à½\90à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-#| msgid "Total distinct versions: "
-msgid "Total Distinct Descriptions: "
-msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "རྟེན་འབྲེལ་བསྡོམས:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "ནང་བསྐྱོད་འབད་དོ།"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "à½\90ེà½\93à¼\8bརིà½\98à¼\8b/ཡིà½\82à¼\8bསྣོà½\91à¼\8b à½\98à½\90ུà½\93à¼\8bའà½\96ྲེལà¼\8bà½\82ྱིà¼\8bà½\96སྡོà½\98ས:"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "à½\91ོà¼\8bà½\96à½\89à½\98à¼\8bà½\82ིà¼\8bà½\98ིà½\84à¼\8bའà½\91ིà¼\8bà½\82à½\8fà½\93à¼\8bའà½\96ེà½\96སà¼\8bà½\96à½\9fོà¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8d"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-#| msgid "Total ver/file relations: "
-msgid "Total Desc/File relations: "
-msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་ཁྲ་བཟོ་བ་ཚུ་བྱིནམ་ཨིན:"
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::"
+"ProxyLoginའདི་སྟོངམ་ཨིན་པས།"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8b %sའà½\91ིà¼\8bà½\98à½\89à½\98à¼\8bའà½\96ྱུà½\84à¼\8bà½\82ིà¼\8bà½\95ྱིà¼\8bà½\81རà¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
+msgid "TYPE failed, server said: %s"
+msgstr "ཡིà½\82à¼\8bà½\91à½\94རà¼\8bརà¾\90ྱà½\96à¼\8bà½\98à¼\8bà½\96à½\8fུà½\96à¼\8bསརà¼\8bà½\96རà¼\8bà½\82ྱིསà¼\8bསླà½\96à¼\8bà½\98སà¼\8d %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "à½\81ྱོà½\91à¼\8bà½\80ྱིསà¼\8bà½\8fà½\82à¼\8bà½\8fà½\82à¼\8bསྦེà¼\8bà½\91à½\94ེà¼\8bà½\82à½\9eིà¼\8bà½\82à½\85ིà½\82à¼\8bà½\96ྱིà½\93à¼\8bà½\91à½\82ོ"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "à½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bà½\84ལà¼\8bà½\98à½\9aà½\98ས"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུà¼\8bà½\98à¼\8bà½\90ོà½\96།"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "སརà¼\8bà½\96རà¼\8bà½\82ྱིསà¼\8bà½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bའà½\91ིà¼\8bà½\81à¼\8bà½\96སྡà½\98སà¼\8bà½\8fེà¼\8bཡོà½\91à½\94à¼\8bཨིà½\93།"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82ྱིà¼\8bཡིà½\82à¼\8bསྣོà½\91:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "འà½\9bོལà¼\8bà½\96à¼\8bལྷà½\96à¼\8d"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr ""
-"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "འཛོལ་བ་འབྲི།"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(མ་ཐོབ།)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ཅི་མེད།)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr "མི་ངོ:"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82ྱིà¼\8bà½\81à½\96à¼\8bà½\82à½\9fེར:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "སོà¼\8bà½\80ེà½\8aིà¼\8bà½\85ིà½\82à¼\8bà½\96སྡà½\98སà¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8d"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-#| msgid "%s %s for %s %s compiled on %s %s\n"
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"ལག་ལེན།: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n"
-"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་"
-"ལུ་ཨིན།\n"
-"cache files, and query information from them\n"
-"\n"
-"བརྡ་བཀོད:\n"
-" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n"
-" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n"
-" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n"
-" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n"
-" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n"
-" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n"
-" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n"
-" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n"
-" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n"
-" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n"
-" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n"
-" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n"
-" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n"
-" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n"
-" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n"
-" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n"
-"\n"
-"གདམ་ཁ་ཚུ་:\n"
-" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n"
-" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n"
-" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n"
-" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n"
-" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n"
-" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n"
-" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::"
-"cache=/tmp\n"
-" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "à½\8cིསིà½\80à¼\8bà½\85ིà½\82à¼\8bའà½\91ྲེà½\93à¼\8bའà½\95ྲུལà¼\8bà½\93à½\84à¼\8bà½\96à½\99ུà½\82སà¼\8bà½\96à½\9eིà½\93à½\98à¼\8bལསà¼\8bལོà½\82à¼\8bལྡེà¼\8bའà½\91ིà¼\8bཨེà½\96à¼\8d"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "à½\82à½\93à½\91à¼\8bསྡུà½\91à¼\8bསོà¼\8bà½\80ེà½\8aིà¼\8b à½\98à½\90ུà½\91à¼\8bà½\93ིà¼\8bà½\84ལà¼\8bà½\98à½\9aà½\98སà¼\8bà½\96ྱུà½\84à¼\8bà½\93ུà½\82"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "à½\81ྱོà½\91à¼\8bà½\80ྱིà¼\8bà½\86à¼\8bà½\9aà½\93à¼\8bà½\93à½\84à¼\8bà½\82ིà¼\8bསིà¼\8bà½\8cིà¼\8bལྷà½\82à¼\8bལུསà¼\8bཡོà½\91à¼\8bà½\98ིà¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bའà¼\8bà½\93ིà¼\8bལསà¼\8bསྦྱོརà¼\8bà½\91ེà¼\8bཡà½\84à¼\8bà½\96སà¾\90ྱརà¼\8bའà½\96à½\91།"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "à½\98à½\90ུà½\91à¼\8bལà½\98à¼\8bའà½\91ིà¼\8bà½\91à½\84à¼\8bལེà½\93à¼\8bའà½\96à½\91à¼\8bà½\98à¼\8bà½\9aུà½\82ས།"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "སà¾\92ྲུà½\96སà¼\8bརà¾\9fà½\82སà¼\8bà½\9aུà¼\8bà½\9fུà½\84à¼\8bà½\93à½\84à¼\8bà½\98ིà½\93à¼\8bའà½\91ུà½\82"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bལུà¼\8bà¼\8bà½\91ྲà¾à¼\8bརà¾\9fà½\82སà¼\8bà½\96à½\80ལà¼\8bà½\96འིà¼\8bà½\96སà¾\92à½\84à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n"
-"\n"
-"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n"
-"\n"
-"བརྡ་བཀོད་ཚུ:\n"
-" shell - ཤལ་གྱི་ཐབས་ལམ།\n"
-" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n"
-"\n"
-"གདམ་ཁ་ཚུ:\n"
-" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
-" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
-" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s འདི་ནུས་ཅན་གྱི་ ཌི་ཨི་བི་ཅིག་མེན་པས།"
+msgid "Data transfer failed, server said '%s'"
+msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"ལག་ལེན་: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates འདི་ཌེ་བི་ཡཱན་ ཐུམ་སྒྲིལ་ཚུ་ནང་ལས་\n"
-"རིམ་སྒྲིག་དང་ ཊེམ་པེལེཊི་ བརྡ་དོན་ཕྱིར་དོན་འབད་ནིའི་ལག་ཆས་ཅིགཨིན།\n"
-"གདམ་ཁ་ཚུ།\n"
-" -h འདི་གིས་ཚིག་ཡིག་འདི་གྲོགས་རམ་འབདཝ་ཨིན།\n"
-" -t འདི་གིས་temp་སྣོད་ཐོ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན།\n"
-" -c=? འདི་གིས་ རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
-" -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་"
-"བཟུམ།\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "འདྲི་དཔྱད།"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "debconf ་་འཐོན་རིམ་འདི་ལེན་མ་ཚུགས། debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "ཐུམ་སྒྲིལ་རྒྱ་བསྐྱེད་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "%s (%s)་ལུ་མཐུད་དོ།"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "སྣོད་ཐོ་%s་ལས་སྦྱོར་འབདཝ་ད་འཛོལ་བ་འཐོན་ཡི།"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "འབྱུང་ཁུངས་རྒྱ་བསྐྱེད་ཀྱི་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིང་པས།"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "ནང་དོན་ཡིག་སྣོད་ལུ་མགོ་ཡིག་འཛོལ་བ་འབྲི་ནིའི་མགོ་ཡིག"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "%sའཛོལ་བ་ལས་སྦྱོར་འབད་ནིའི་ནང་དོན།"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"ལག་ལེན:apt-ftparchive [options] command\n"
-"བརྡ་བཀོད་ཚུ:packages binarypath [overridefile [pathprefix]]\n"
-"sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive་འདི་གིས་ ཌི་བི་ཡཱན་ཡིག་མཛོད་ཚུ་གི་དོན་ལུ་ ཚིག་ཡིག་གི་ཡིག་སྣོད་ཚུ་བཟོ་བཏོན་འབདཝ་"
-"ཨིན། dpkg-scanpackages དང་ dpkg-scansources་གི་དོན་ལུ་ལས་འགན་ཚབ་མ་ཚུ་ལུ་ཆ་ཚང་སྦེ་ "
-"རང་བཞིན་གྱི་སྦེ་བཟོ་བཟོཝ་་ནང་ལས་བཟོ་བཏོན་གྱི་བཟོ་རྣམ་ཚུ་ལྷམ་པ་མ་འདྲཝ་སྦེ་ཡོད་མི་ལུ་རྒྱབ་སྐྱོར་འབདཝ་"
-"ཨིན།\n"
-"\n"
-"apt-ftparchive་ འདི་གིས་.debs་གི་རྩ་འབྲེལ་ཅིག་ནང་ལས་ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད་ཚུ་བཟོ་བཏོན་འབདཝ་ཨིན། "
-"ཐུམ་སྒྲིལ་\n"
-" ཡིག་སྣོད་འདི་གི་ནང་ན་ ཐུམ་སྒྲིལ་རེ་རེ་བཞིན་ནང་གི་ཚད་འཛིན་ས་སྒོ་ཚུ་ཆ་མཉམ་གི་ནང་དོན་དང་ ཨེམ་ཌི་༥་དྲྭ་"
-"རྟགས། (#)་དང་ཡིག་སྣོད་ཀྱི་ཚད་ཚུ་ཡང་ཡོདཔ་ཨིན། ཟུར་བཞག་ཡིག་སྣོད་འདི་\n"
-"གཙོ་རིམ་དང་དབྱེ་ཚན་གྱི་གནས་གོང་དེ་བང་བཙོང་འབད་ནི་ལུ་རྒྱབ་སྐྱོར་འབད་ཡོདཔ་ཨིན།\n"
-"\n"
-"འདི་དང་ཆ་འདྲཝ་སྦེ་ apt-ftparchive་ འདི་གིས་.dscs་གི་རྩ་འབྲེལ་ཅིག་ནང་ལས་འབྱུང་ཁུངས་ཡིག་སྣོད་ཚུ་"
-"བཟོ་བཏོན་འབདཝ་ཨིན།\n"
-" --source-ཟུར་བཞག་གི་གདམ་ཁ་འདི་ ཨེསི་ཨར་སི་ ཟུར་བཞག་ཡིག་སྣོད་ཅིག་གསལ་བཀོད་འབད་ནི་ལུ་ལག་ལེན་"
-"འཐབ་བཐུབ་ཨིན།\n"
-"\n"
-"'ཐུམ་སྒྲིལ་ཚུ་'་དང་'འབྱུང་ཁུངས་་' བརྡ་བཀོད་ཚུ་རྩ་འབྲེལ་འདི་གི་་རྩ་བ་ནང་ལུ་སྦེ་གཡོག་བཀོལ་དགོཔ་ཨིན། ཟུང་"
-"ལྡན་འགྲུལ་ལམ་འདི་གིས་ལོག་རིམ་འཚོལ་ཞིབ་འདི་གི་གཞི་རྟེན་ལུ་དཔག་དགོཔ་ཨིནམ་དང་\n"
-"ཟུར་བཞག་ཡིག་སྣོད་འདི་ལུ་ཟུར་བཞག་གི་ཟུར་རྟགས་འོང་དགོཔ་ཨིན། འགྲུལ་ལམ་སྔོན་ཚིག་འདི་\n"
-"ཡོད་པ་ཅིན་ཡིག་སྣོད་མིང་གི་ས་སྒོ་ཚུ་ལུ་འཇུག་སྣོན་འབད་དེ་ཡོདཔ་ཨིན། དཔེར་ན་ ཌི་བི་ཡཱན་ཡིག་མཛོད་ལས་ལག་"
-"ལེན་བཟུམ:\n"
-"apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"གདམ་ཁ་ཚུ:\n"
-" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
-" --md5 ཨེམ་ཌི་༥་ བཟོ་བཏོན་འདི་ཚད་འཛིན་འབདཝ་ཨིན།\n"
-" -s=? འབྱུང་ཁུངས་ཟུར་བཞག་གི་ཡིག་སྣོད།\n"
-" -q ཁུ་སིམ་སིམ།\n"
-" -d=? གདམ་ཁ་ཅན་གྱི་འདྲ་མཛོད་གནད་སྡུད་གཞི་རྟེན་འདི་སེལ་འཐུ་འབད།\n"
-" --no-delink འབྲེལ་ལམ་མེད་སྦེ་བཟོ་་ནིའི་རྐྱེན་སེལ་ཐབས་ལམ་འདི་ལྕོགས་ཅན་བཟོ།\n"
-" --contents ནང་དོན་གི་ཡིག་སྣོད་བཟོ་བཏོན་འདི་ཚད་འཛིན་འབད།\n"
-" -c=? འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷག\n"
-" -o=? མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབད།"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།"
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "%s་ལུ་མཐུད་དོ།"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "སེལ་འཐུ་ཚུ་མཐུན་སྒྲིག་མིན་འདུག"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཐུམ་སྒྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག"
+msgid "Temporary failure resolving '%s'"
+msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "ཌི་བི་ངན་ཅན་བྱུང་ནུག་ %s.རྒསཔ་ལུ་ཡིག་སྣོད་འདི་བསྐྱར་མིང་བཏགས་ཡི།"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "ཌི་བི་འདི་རྙིངམ་ཨིན་པས་ %s་ཡར་བསྐྱེད་འབད་ནིའི་དོན་ལུ་དཔའ་བཅམ་དོ།"
+msgid "Unable to connect to %s %s:"
+msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "'%s'ལྡེ་འཁོར་འདི་འཛུལ་སྤྱོད་འབད་མ་ཚུགས།"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Acquire::gpgv::Options་ནང་ལས་ཀྱི་སྒྲུབ་རྟགས་ཀྱི་ཐོ་ཡིག་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག ཕྱིར་"
+"འཐོན་དོ།"
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"à½\8cིà¼\8bà½\96ིà¼\8bརྩà¼\8bསà¾\92ྲིà½\82à¼\8bའà½\91ིà¼\8b à½\93ུསà¼\8bà½\98ེà½\91à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d à½\81ྱོà½\91à¼\8bà½\80ྱིà¼\8b aptà¼\8b à½\82ྱིà¼\8bའà½\90ོà½\93à¼\8bརིà½\98à¼\8bརà¾\99ིà½\84à½\98à¼\8bà½\85ིà½\82à¼\8bà½\93à½\84à¼\8bལསà¼\8b ཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bའà½\96à½\91à¼\8bཡོà½\91་"
-"à½\94à¼\8bà½\85ིà½\93à¼\8b རྩà¼\8bà½\96སà¾\90ྲà½\91à¼\8bà½\82à½\8fà½\84à¼\8bà½\9eིà½\93à½\98à¼\8bལསà¼\8b à½\82à½\93à½\91à¼\8bསྡུà½\91à¼\8bà½\82à½\9eིà¼\8bརà¾\9fེà½\93à¼\8bའà½\91ིà¼\8b ལོà½\82à¼\8bà½\91ེà¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8d "
+"à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96: à½\98ིà½\84à¼\8bརà¾\9fà½\82སà¼\8bའà½\91ིà¼\8bལེà½\82སà¼\8bཤོà½\98à¼\8bà½\85ིà½\82à¼\8bའà½\91ུà½\82à¼\8b འà½\91ིà¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8bà½\98à½\9bུà½\96à¼\8bརà¾\97ེསà¼\8bལྡེà¼\8bà½\98ིà½\82à¼\8bà½\91ེà¼\8bà½\82à½\8fà½\93à¼\8bའà½\96ེà½\96སà¼\8bà½\96à½\9fོ་"
+"à½\98à¼\8bà½\9aུà½\82ས?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།"
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "%s: %s་ཌི་བི་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gnupg་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་"
+"ན།?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "ཡིག་མཛོད་འདི་ལུ་ཚད་འཛིན་དྲན་ཐོ་མིན་འདུག"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "འོà½\91à¼\8bརà¾\9fà½\82སà¼\8bལེà½\93à¼\8bà½\98à¼\8bà½\9aུà½\82སà¼\8d"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\98ིà½\84à¼\8bརà¾\9fà½\82སà¼\8bà½\9aུà¼\8bà½\93ུསà¼\8bà½\98ེà½\91à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "ཌབ་ལུ:%sསྣོད་ཐོ་འདི་ལྷག་མ་ཚུགས།\n"
+msgid "Couldn't open pipe for %s"
+msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "ཌབ་ལུ་ %s སིཊེཊི་འབད་མ་ཚུགས།\n"
+msgid "Read error from %s process"
+msgstr "%s་ལས་སྦྱོར་ནང་ལས་འཛོལ་བ་ཚུ་ལྷག"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "ཨི:"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "à½\98à½\82ོà¼\8bཡིà½\82à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bà½\96སà¾\92à¾\84à½\82à¼\8bà½\91ོà¼\8d"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "ཌབ་ལུ:"
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "%u་ཡིག་འབྲུ་ཚུ་གི་ལྟག་ལས་མགོ་ཡིག་རྐྱང་པ་ཅིག་ཐོབ་ཡོད།"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "ཨི:འà½\9bོལà¼\8bà½\96à¼\8bà½\9aུà¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bལུà¼\8bའà½\87ུà½\82à¼\8bསྤྱོà½\91à¼\8bའà½\96à½\91།"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "à½\98à½\82ོà¼\8bཡིà½\82à¼\8bà½\82ིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8bà½\96ྱà½\84à¼\8bà½\89ེས།"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "%s་མོས་མཐུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "རྩà¼\8bའà½\96ྲེལà¼\8bà½\95ྱིརà¼\8bà½\96à½\82ྲོà½\91à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à½\94།"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "ཨེà½\86ིà¼\8bà½\8aིà¼\8bà½\8aིà¼\8bà½\94ིà¼\8bསརà¼\8bà½\96རà¼\8bའà½\91ིà¼\8bà½\82ིསà¼\8bà½\93ུསà¼\8bà½\98ེà½\91à¼\8bà½\93à½\84à¼\8bà½\91ོà½\93à¼\8bརིà½\84à¼\8b-à½\9aà½\91à¼\8bà½\80ྱིà¼\8bà½\98à½\82ོà¼\8bཡིà½\82à¼\8bà½\85ིà½\82à¼\8bà½\96à½\8fà½\84à¼\8bཡོà½\91།"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "ནང་འཁོད་འཛོལ་བ།"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+msgid "Selection %s not found"
+msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** %s་ལས་%sལུ་འབྲེལ་འཐུད་འབད་ནི་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམས།\n"
+msgid "Opening configuration file %s"
+msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "ཡིག་མཛོད་ལུ་ཐུམ་སྒྲིལ་ཅི་ཡང་འཐུས་ཤོར་མ་བྱུང་།"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "གྲལ་ཐིག་%d་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག(%d་མཐོ་ཤོས)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %sལུ་ཟུར་བཞག་ཐོ་བཀོད་མེད།\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s ་རྒྱུན་སྐྱོང་པ་འདི་ %s ཨིན་ %s མེན།\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s ལུ་འབྱུང་ཁུངས་མེདཔ་གཏང་ནིའི་ཐོ་བཀོད་འདི་མེད།\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གཏང་ནིའི་་ཐོ་བཀོད་གང་རུང་ཡང་མིན་འདུག།\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8bà½\82ིསà¼\8bའà½\90ུསà¼\8bà½\98ིà¼\8b%sའà½\91ིà¼\8bà½\82à¼\8bཡོà½\91à¼\8bའà½\9aོལà¼\8bà½\98à¼\8bའà½\90ོà½\96།"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "à½\9aིà½\82à¼\8bསྦྱོརà¼\8bའà½\9bོལà¼\8bà½\96à¼\8b%s:%u:འà½\91ུà¼\8bའà½\9bོà½\98སà¼\8bའà½\96à½\91à¼\8bའà½\96à½\91à½\9dà¼\8bལེà¼\8bཤཱà¼\8bà½\82ྲà½\84སà¼\8bསུà¼\8bà½\96à½\99ུà½\82སà½\94à¼\8bཨིà½\93།"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "དྲན་ཚད་སྤྲོད་ནིའི་དོན་ལུ་ རི་ཨེ་ལོཀ་ འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\9fུརà¼\8bà½\96à½\9eà½\82à¼\8b%s à½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "à½\9aིà½\82à¼\8bསྦྱོརà¼\8bའà½\9bོལà¼\8bà½\96à¼\8b%s:%u: ཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\80ྱིà¼\8bà½\98à½\87ུà½\82à¼\8bལུà¼\8bà½\98à½\81ོà¼\8bà½\98ེà½\91à¼\8bà½\90ེà½\96སà¼\8d"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་ཐིག%lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... འཛོལ་བ་!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "བཟོ་ཉེས་གྱུར་བའི་ཟུར་བཞག་%sགྲལ་ཐིག%lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... འབད་ཚར་ཡོད།"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "à½\9fུརà¼\8bà½\96à½\9eà½\82à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8b%sའà½\91ིà¼\8bལྷà½\82à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91།"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "à½\96རྡà¼\8bà½\96à½\80ོà½\91à¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8bà½\82ྱིà¼\8bà½\82à½\91à½\98à¼\8bà½\81à¼\8b'%c'[%sà¼\8bà½\93à½\84à¼\8bལསà¼\8b]འà½\91ིà¼\8bà½\98à¼\8bཤེསà¼\8bà½\94ས།"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr " མ་ཤེས་ཨེབ་བཙུགས་ཨཱལ་གོ་རི་དམ'%s'"
+msgid "Command line option %s is not understood"
+msgstr "བ་རྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་ཧ་མ་གོ་བས།"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "ཨེà½\96à¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bཨའུà½\8aིà¼\8bà½\94ུà½\8aིà¼\8b%sལུà¼\8bཨེà½\96à¼\8bà½\96à½\99ུà½\82སà¼\8bà½\86à¼\8bà½\9aà½\93à¼\8bà½\85ིà½\82à¼\8bà½\91à½\82ོà½\94à¼\8bའà½\91ུà½\82"
+msgid "Command line option %s is not boolean"
+msgstr "à½\96རྡà¼\8bà½\96à½\80ོà½\91à¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8bà½\82ིà¼\8bà½\82à½\91à½\98à¼\8bà½\81à¼\8b%sà¼\8bའà½\91ིà¼\8bà½\96ུà¼\8bལིà½\93à¼\8bà½\98ེà½\93à¼\8bà½\94སà¼\8d"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "ཡིག་སྣོད་*་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "ཁ་སྤེལ་འབད་ནི་ལུ་འཐུ་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "ཆ་ལག་ཨེབ་བཙུགས་འབད།"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "à½\93à½\84à¼\8bའà½\81ོà½\91à¼\8bའà½\9bོལà¼\8bà½\96à¼\8b %sà¼\8bà½\82སརà¼\8bà½\96སà¾\90ྲུà½\93à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
+msgid "Option '%s' is too long"
+msgstr "à½\82à½\91à½\98à¼\8bà½\81à¼\8b'%s'འà½\91ིà¼\8bà½\82à½\93à½\98à¼\8bà½\98ེà½\91à¼\8bསà¼\8bà½\98ེà½\91à¼\8bརིà½\84à½\98à¼\8bའà½\91ུà½\82"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "ཨེབ་བཤོལ་འཕྲུལ་ཆས།"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་IO/ཡིག་སྣོད་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "ཨེà½\98à¼\8bà½\8cིà¼\8b༥à¼\8bà½\82ློà½\82à¼\8bརིà½\82à¼\8bརà¾\90ྱà½\96à¼\8bà½\94འིà¼\8bསà¾\90à½\96སà¼\8bལྷà½\82་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "སིà¼\8bà½\8cིà¼\8bརོà½\98à¼\8bའà½\91ིà¼\8bà½\84ོà¼\8bà½\96ཤུསà¼\8bའà½\96à½\91་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "%s་འབྲེལ་འཐུད་མེདཔ་བཟོ་ནི་ལུ་དཀའ་ངལ།"
+msgid "Not using locking for read only lock file %s"
+msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "ཝའི།"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།"
+msgid "Waited for %s but it wasn't there"
+msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "འà½\91ིà¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8b%sའà½\91ིà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bà½\93ི་ཨིན།"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "ཡà½\93à¼\8bལà½\82à¼\8bལསà¼\8bསྦྱོརà¼\8b%sà¼\8bལུà¼\8bà½\86à¼\8bà½\96à½\82ོསà¼\8bà½\80ྱིà¼\8bསà¾\90ྱོà½\93à¼\8bà½\85ིà½\82à¼\8bà½\90ོà½\96à¼\8bཡོà½\91à½\94་ཨིན།"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr "ཡང་ན།"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིསà¼\8bà½\82སརà½\94à¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\81à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bà½\81à¼\8bà½\96སྡà½\98སà¼\8bà½\94འིà¼\8bà½\96སà¾\92à½\84à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bརྩ à½\96སà¾\90ྲà½\91à¼\8bà½\82à½\8fà½\84à¼\8bའོà½\84à¼\8b:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bའà½\96ྲེལལà½\98à¼\8bà½\98ེà½\91à½\94à¼\8bà½\96à½\9fོà¼\8bà½\96འིà¼\8bà½\96སà¾\92à½\84à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bལོà½\82à¼\8bསà¾\9fེà¼\8bརà½\84à¼\8bà½\96à½\9eà½\82à¼\8bà½\93ུà½\82:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "ཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\98à½\89à½\98à¼\8bà½\96ྱུà½\84à¼\8bའà½\96à½\91à½\9dà¼\8bà½\91à¼\8bà½\91à½\80འà¼\8bà½\84ལà¼\8d"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bསà¾\9fོà½\84à½\98à¼\8d"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\98རà¼\8bà½\95à½\96à¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8bà½\84à½\93à¼\8bà½\85à½\93à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "འོà½\82à¼\8bà½\82ིà¼\8bའà½\86à½\84à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\9aུà¼\8bà½\96སà¾\92ྱུརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bའོà½\84à¼\8b:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིསà¼\8bའà½\91ྲà¼\8bà½\98à½\9bོà½\91à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bའà½\91ིà¼\8b à½\98ིà¼\8bà½\98à½\90ུà½\93à¼\8bà½\94འིà¼\8bའà½\90ོà½\93à¼\8bརིà½\98à¼\8bà½\85ིà½\82à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s( %s་གིས་སྦེ)"
+msgid "This APT does not support the versioning system '%s'"
+msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n"
-"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "རྟེནམ་ཨིན།"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "མི་མཐུནམ་ཨིན།"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "རà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\93ོརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bà½\91ོ།"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "à½\9aà½\96à¼\8bà½\96à½\99ུà½\82སà½\94à¼\8bཨིà½\93།"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr "འà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91།"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "à½\95à½\93à¼\8bà½\98ེà½\91à½\94à¼\8bà½\96à½\9fོà½\9dà¼\8bཨིà½\93།"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "ཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\86à¼\8bà½\9aà½\93à¼\8bའà½\91ིà¼\8bà½\86ུà½\84à¼\8bà½\80ུà¼\8bà½\96à½\9fོà¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94ས།"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "à½\82ལà¼\8bà½\85à½\93།"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr "འà½\96à½\91à¼\8bà½\9aརà¼\8bཡི།"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "à½\91à½\82ོསà¼\8bà½\98à½\81ོà¼\8bཡོà½\91à½\94།"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "འà¼\8bà½\93ིà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\93ོརà¼\8bà½\96à½\85ོསà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bལུà¼\8bà½\81ྱོà½\91à¼\8bà½\80ྱིà¼\8b`apt-get -f install'à½\91ེà¼\8bà½\82ཡོà½\82à¼\8bà½\96à½\80ོལà¼\8bà½\91à½\82ོà½\94à¼\8bའོà½\84à¼\8b།"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "à½\9aà½\91à¼\8bལྡà½\93།"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "à½\98à¼\8bà½\9aà½\84à¼\8bà½\94འིà¼\8bརà¾\9fེà½\93à¼\8bའà½\96ྲེལà¼\8bà½\9aུà¼\8d -f ལà½\82à¼\8bལེà½\93à¼\8bའà½\90à½\96à¼\8bསà¾\9fེà¼\8bའà½\96à½\91à¼\8bརྩོལà¼\8bà½\96སà¾\90ྱེà½\91།"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "à½\82à½\91à½\98à¼\8bà½\81à¼\8bà½\85à½\93།"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "ཐེབས།"
+
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "à½\96à½\91ེà½\93à¼\8bà½\96ཤà½\91à¼\8bà½\89ེà½\93à¼\8bà½\96རྡà¼\8bའà½\91ིà¼\8bà½\9fུརà¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8d\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "à½\98ིà¼\8bà½\84ོà¼\8bའà½\90ོà½\93à¼\8bརིà½\98à½\9aུà¼\8d"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "à½\96à½\91ེà½\93à¼\8bསྦྱོརà¼\8bà½\98à¼\8bའà½\96à½\91à¼\8bà½\96རà¼\8bའà¼\8bà½\93ིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bའà½\91ིà¼\8bà½\9aུà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bཨིà½\93à¼\8bà½\93à¼\8b[y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "à½\96རà¾\9fེà½\93à¼\8bà½\94འིà¼\8bà½\96à½\9fོà¼\8bà½\96à½\8fོà½\93à¼\8d"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་"
-"ཡོད!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ན།"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་"
-"བས།"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bà½\80ྱིà¼\8b%sBà¼\8bའà½\91ིà¼\8bལེà½\93à¼\8bà½\91à½\82ོà¼\8bà½\94སà¼\8d\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bའà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%luà¼\8b འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b%s(ཡà½\84à¼\8bà½\91à½\82à¼\8b dist)à½\82ིà¼\8bà½\93à½\84à¼\8bà½\93à¼\8d"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "à½\81à¼\8bསà¾\90ོà½\84à¼\8bà½\82ིà¼\8b%sBà¼\8bའà½\91ིà¼\8bà½\96ཤུà½\96à¼\8bà½\94འིà¼\8bཤུལà¼\8bལསà¼\8bà½\8cིà½\80སིà¼\8bà½\82ིà¼\8bà½\96རà¼\8bསà¾\9fོà½\84à¼\8bà½\91ེà¼\8bལà½\82à¼\8bལེà½\93à¼\8bའà½\90à½\96à¼\8bའོà½\84à¼\8bà¼\8d\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "à½\96à½\9fོà¼\8bà½\89ེསà¼\8bའà½\82ྱུརà¼\8bà½\96འིà¼\8bà½\82ྲལà¼\8bà½\90ིà½\82à¼\8b%luà¼\8b འà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8b%s(dist à½\98ིà½\84à¼\8bà½\91à½\94ྱà½\91à¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8b)à½\93à½\84à¼\8bà½\93à¼\8d"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n"
+msgid "Opening %s"
+msgstr "%s་ཁ་ཕྱེ་དོ།"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s་ནང་བར་སྟོང་"
+msgid "Line %u too long in source list %s."
+msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(སིལ་ཚོང་པ་ ཨའི་ཌི)གི་ནང་ན།"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n"
-"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "བར་བཤོལ་འབད།"
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?"
+"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་"
+"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ "
+"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་"
+"ལྡན་བཟོ།"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།"
+msgid "Index file type '%s' is not supported"
+msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་"
+"མ་ཐོབ།"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bལà¼\8bལུà¼\8bà½\85ིà½\82à¼\8bལེà½\93à¼\8bà½\98ིà¼\8bà½\9aུà½\82སà¼\8bà½\94སà¼\8b apt-getà¼\8bà½\91ུསà¼\8bà½\98à½\90ུà½\93à¼\8bà½\96à½\9fོà¼\8bà½\93ིà¼\8bà½\82ཡོà½\82à¼\8bà½\96à½\80ོལà¼\8bà½\93ིà¼\8bཨིà½\93à¼\8bà½\93à¼\8bཡà½\84à¼\8bà½\93à¼\8b--fix-"
-"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?"
+"འà½\9bོལà¼\8bà½\96à¼\8b pkgProblemResolver::à½\82ིསà¼\8bà½\96à½\9fོà¼\8bà½\96à½\8fོà½\93à¼\8bའà½\96à½\91à¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\98à½\9aà½\98སà¼\8bà½\91ེà¼\8bà½\9aུà¼\8bà½\98ོསà¼\8bà½\98à½\90ུà½\93à¼\8bà½\96à½\9fོà½\9dà¼\8bཨིà½\93 འà¼\8bà½\93ིà¼\8bà½\90ུà½\98à¼\8b"
+"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག"
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་"
-"འབད་བས།\n"
+msgid "Retrieving file %li of %li"
+msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8b%sà¼\8bའà½\91ིà¼\8bà½\82à½\9eིà¼\8bà½\96à½\99ུà½\82སà¼\8bà½\98à¼\8bའà½\96à½\91à¼\8bà½\96སà¼\8b འà½\91ིà¼\8bའà½\96à½\91à¼\8bà½\93ིà¼\8bà½\91ིà¼\8bà½\82ིསà¼\8bརྩà¼\8bà½\96སà¾\90ྲà½\91à¼\8bà½\98à¼\8bà½\82à½\8fà½\84à¼\8bà½\94སà¼\8dà¼\8b\n"
+msgid "The method driver %s could not be found."
+msgstr "à½\90à½\96སà¼\8bལà½\98à¼\8bའà½\91ྲེà½\93à¼\8bà½\96ྱེà½\91à¼\8b%sà¼\8bའà½\91ིà¼\8bà½\98à¼\8bའà½\90ོà½\96à¼\8d"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "à½\82ྱིསà¼\8bà½\96ྱིà½\93à¼\8bà½\8fེà¼\8bཡོà½\91à¼\8bà½\94འིà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8b%sà¼\8bའà½\91ིà¼\8bà½\96རà¼\8bà½\85ུà¼\8bཡལà¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\85ིà½\82à¼\8bཨིà½\93à¼\8d\n"
+msgid "Method %s did not start correctly"
+msgstr "à½\90à½\96སà¼\8bལà½\98à¼\8b %s འà½\91ིà¼\8bà½\84ེསà¼\8bà½\96à½\91ེà½\93à¼\8bསྦེà¼\8bའà½\82ོà¼\8bà½\98à¼\8bà½\96à½\99ུà½\82སà¼\8bའà½\96à½\91à¼\8d"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [གཞི་བཙུགས་འབད་ཡོད།]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "ཁྱོད་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གཏན་འཁལ་སྦེ་གཅིག་སེལ་འཐུ་འབད་དགོ"
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།"
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-"ཐུམ་སྒྲིལ་%s་འདི་འཐོབ་མི་ཚུགས་པས་ འདི་འབདཝ་ད་ཐུམ་སྒྲིལ་གཞན་ཅིག་གིས་གྲོས་བསྟུན་འབད་དེ་ཡོད།\n"
-"འདི་གིས་ཐུམ་སྒྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n"
-"འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རྐྱངམ་ཅིག་འཐོབ་ཚུགསཔ་ཨིན་པས།\n"
+"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་ཐུམ་སྒྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།"
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག"
+
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "ཐུམ་སྒྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག"
+msgid "Did not understand pin type %s"
+msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "%s (ཐུམ་སྒྲིལ་གསརཔ་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༢་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr " %s (འཐོན་རིམ་གསརཔ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "%s (ལག་ལེན་ཐུམ་སྒྲིལ་ ༣་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོབ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "%s (འཐོན་རིམ་གསརཔ་ ༢)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་"
-"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག"
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-#| msgid "The following NEW packages will be installed:"
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "%s (CollectFileProvides)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-#| msgid "Internal error, problem resolver broke stuff"
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-#| msgid "Couldn't find package %s"
-msgid "Couldn't find task %s"
-msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འཐུ་འབད་དོ།\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-#| msgid "but %s is to be installed"
-msgid "%s set to manual installed.\n"
-msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།"
-"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)"
+" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ "
+"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་"
-"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་"
-"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།"
+" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ "
+"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག "
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"ད་ཚུན་ཁྱོད་ཀྱི་བཀོལ་སྤྱོད་རྐྱང་པ་ཅིག་རྐྱང་པ་ རྐྱངམ་ཅིག་ཞུ་བ་འབད་ཡོདཔ་ལས་ ཧ་ཅང་གི་ཐུམ་སྒྲིལ་འདི་གཞི་"
-"བཙུགས་འབད་མི་བཏུབ་ནི་དེ་སྲིད་ནི་བཟུམ་ཅིག་དང་ཐུམ་སྒྲིལ་དི་གི་ཁ་ཐད་དུ་རྐྱེན་གྱི་སྙན་ཞུ་འདི་བཀང་བཞག་དགོ"
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
+"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "ཡརà¼\8bà½\96སà¾\90ྱེà½\91à¼\8bརྩིསà¼\8bà½\96à½\8fོà½\93à¼\8bà½\91ོà¼\8b... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "à½\9aà½\91à¼\8bà½\98à¼\8bà½\98à½\90ུà½\93à¼\8d"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "འབད་ཚར་ཡི།"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+" %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n"
+"སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ།\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "à½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8bའà½\96ྱུà½\84à¼\8bà½\81ུà½\84སà¼\8bལེà½\93à¼\8bà½\93ིà¼\8bལུà¼\8bà½\89ུà½\84à¼\8bà½\98à½\90འà¼\8bརà½\84à¼\8bà½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82à½\85ིà½\82à¼\8bལེà½\93à¼\8bà½\91à½\82ོ"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "à½\84ོསà¼\8bའà½\9bིà½\93à¼\8bའà½\96à½\91à¼\8bà½\91ོ.."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ"
+msgid "Stored label: %s\n"
+msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "à½\82ོà½\98à¼\8bའà½\82ྱོà¼\8bà½\82ིསà¼\8bཧེà¼\8bà½\98à¼\8bལསà¼\8bརà½\84à¼\8b'%s'à¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\91ེà¼\8bà½\95à½\96à¼\8bལེà½\93à¼\8bའà½\96à½\91à¼\8bà½\93ུà½\82\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "སིà¼\8bà½\8cིà¼\8b-རོà½\98à¼\8bསྦྱརà¼\8bà½\96རྩེà½\82སà¼\8bà½\98à¼\8bའà½\96à½\91à¼\8bà½\96རà¼\8bà½\96à½\9eà½\82à¼\8bà½\91ོ..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་"
+msgid "Using CD-ROM mount point %s\n"
+msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "སི་ཌི་-རོམ་བརྩེགས་བཤོལ་འབད་དོ།\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "%s་འབྱུང་ཁུངས་ལེན།\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "ཡིà½\82à¼\8bà½\98à½\9bོà½\91à¼\8bལà¼\8bལུà¼\8bà½\85ིà½\82à¼\8bལེà½\93à¼\8bà½\93ིà¼\8bལུà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bཡོà½\91à¼\8d"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "à½\9fུརà¼\8bà½\90ོà¼\8bཡིà½\82à¼\8bསྣོà½\91à¼\8bà½\9aུà¼\8bà½\82ིà¼\8bà½\91ོà½\93à¼\8bལུà¼\8b à½\8cིསིà½\80à¼\8bà½\9eིà½\96à¼\8bལà¾\9fà¼\8bའà½\96à½\91à¼\8bà½\91ོ..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "à½\86à¼\8bལà½\82à¼\8bལསà¼\8bསྦྱོརà¼\8bà½\91ེà¼\8bའà½\90ུསà¼\8bཤོརà¼\8bà½\96ྱུà½\84à¼\8bà½\93ུà½\82"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "à½\90ུà½\98à¼\8bསà¾\92ྲིལà¼\8bà½\82ྱིà½\90ོà¼\8bཡིà½\82à¼\8bà½\9aུà¼\8bའà½\91ྲà¼\8bà½\96ཤུསà¼\8bརà¾\90ྱà½\96à¼\8bà½\91ོ..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n"
+msgid "Wrote %i records.\n"
+msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་"
-"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་"
-"སà¾\92ྲིལà¼\8b%sà¼\8bà½\91ེà¼\8bà½\82à½\93à½\98à¼\8bà½\98ེà½\91à¼\8bསà¼\8bà½\98ེà½\91à¼\8bà½\82སརà½\94à¼\8bཨིà½\93à¼\8bà½\94སà¼\8d"
+"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་"
+"ཡོà½\91à½\94à¼\8bཨིà½\93à¼\8d\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།"
+msgid "Preparing %s"
+msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"ལག་ལེན་:apt-get [options] command\n"
-"apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n"
-"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་"
-"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n"
-" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n"
-"\n"
-"བརྡ་བཀོད་ཚུ་:\n"
-" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n"
-" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n"
-" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་"
-"ཨིན།\n"
-" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n"
-" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n"
-" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་"
-"ཨིན།\n"
-" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n"
-" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n"
-" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n"
-" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n"
-" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n"
-"\n"
-"གདམ་ཁ་ཚུ་:\n"
-" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
-" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n"
-" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n"
-" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n"
-" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n"
-" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n"
-" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n"
-" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n"
-" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n"
-" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n"
-" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n"
-" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n"
-" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n"
-"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt.conf(5)"
-"ལག་ཐོག་\n"
-"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n"
-" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "ཨེབ།"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "%s་རིམ་སྒྲིག་འབད་དོ།"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "ལེན:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "སྣོད་ཐོ་%s་ལས་སྦྱོར་འབདཝ་ད་འཛོལ་བ་འཐོན་ཡི།"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "ཨེལ་ཇི་ཨེན:"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "ཨི་ཨར་ཨར།"
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n"
+msgid "Removing %s"
+msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [ལཱ་འབད་དོ།]"
+msgid "Removed %s"
+msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "མ་ཤེས་པའི་ཐུམ་སྒྲིལ་གི་དྲན་ཐོ།"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"ལག་ལེན: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs་ འདི་ཐུམ་སྒྲིལ་གི་ཡིག་སྣོད་ཚུ་དབྱེ་སེལ་འབད་ནི་ལུ་ འཇམ་སམ་གྱི་ལག་ཆས་ཅིག་ཨིན། -s "
-"གདམ་ཁ་འདི་ ཡིག་སྣོད་ཀྱི་དབྱེ་ཁག་ག་ཅི་བཟུམ་ཅིག་ཨིན་ན\n"
-"་བརྡ་སྟོན་འབད་ནིའི་དོན་ལུ་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་ཨིན།\n"
-"\n"
-"གདམ་ཁ་ཚུ:\n"
-" -h འ་ནི་འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n"
-" -s འདི་གིས་འབྱུང་ཁུངས་ ཡིག་སྣོད་གསོག་འཇོག་འབད་དོན་ལུ་ལག་ལེན་འཐབ་ཨིན།\n"
-" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n"
-" -o=? འདི་གིས་ མཐུན་སྒྲིག་ རིམ་སྒྲིག་གི་གདམ་ཁ་ཚུ་ཁཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/"
-"tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "གྲལ་ཐིག་%d་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག(%d་མཐོ་ཤོས)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། "
-"འདི་དེ་བཏུབ་པས་"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ "
-"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n"
+
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།"
#~ msgid "File date has changed %s"
#~ msgstr "ཡིག་སྣོད་ཚེས་གྲངས་འདི་གིས་%sདེ་བསྒྱུར་བཅོས་འབད་ནུག"
msgstr ""
"Project-Id-Version: apt_po_el_new\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-01-18 15:16+0200\n"
"Last-Translator: Konstantinos Margaritis <markos@debian.org>\n"
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το "
-"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Λάθος CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Το πακέτο %s με έκδοση %s έχει ανεπίλυτες εξαρτήσεις:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Ο δίσκος δεν βρέθηκε."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Το αρχείο Δε Βρέθηκε"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Αποτυχία εύρεσης της κατάστασης"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //"
+msgid "Unable to locate package %s"
+msgstr "Αδυναμία εντοπισμού του πακέτου %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Σύνδεση στο σύστημα"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Συνολικά Ονόματα Πακέτων : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Κανονικά Πακέτα: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Πλήρως Εικονικά Πακέτα: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Μονά Εικονικά Πακέτα: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Μικτά Εικονικά Πακέτα: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr "Αγνοούμενα: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::"
-"ProxyLogin είναι άδειο"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Σύνολο Διαφορετικών Εκδόσεων: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Î\97 ενÏ\84ολή '%s' Ï\83Ï\84ο Ï\83ενάÏ\81ιο ειÏ\83Ï\8cδοÏ\85 αÏ\80ÎÏ\84Ï\85Ï\87ε, ο διακομιÏ\83Ï\84ήÏ\82 αÏ\80άνÏ\84ηÏ\83ε: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "ΣÏ\8dνολο Î\94ιαÏ\86οÏ\81εÏ\84ικÏ\8eν Î\95κδÏ\8cÏ\83εÏ\89ν: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Σύνολο Εξαρτήσεων: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Î\9bήξη Ï\87Ï\81Ï\8cνοÏ\85 Ï\83Ï\8dνδεÏ\83ηÏ\82"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "ΣÏ\8dνολο Ï\83Ï\87ÎÏ\83εÏ\89ν Î\95κδ/Î\91Ï\81Ï\87είÏ\89ν: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Ο διακομιστής έκλεισε την σύνδεση"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "ΣÏ\86άλμα ανάγνÏ\89Ï\83ηÏ\82"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "ΣÏ\8dνολο Î\91νÏ\84ιÏ\83Ï\84οιÏ\87ίÏ\83εÏ\89ν ΠαÏ\81οÏ\87Ï\8eν: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Το μήνÏ\85μα αÏ\80άνÏ\84ηÏ\83ηÏ\82 Ï\85Ï\80εÏ\81Ï\87είλιÏ\83ε Ï\84ην ενδιάμεÏ\83η μνήμη."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "ΣÏ\8dνολο Î\9aοινÏ\8eν ΣÏ\84οιÏ\87ειοÏ\83ειÏ\81Ï\8eν : "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Î\91λλοίÏ\89Ï\83η Ï\84οÏ\85 Ï\80Ï\81Ï\89Ï\84οκÏ\8cλλοÏ\85"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "ΣÏ\85νολικÏ\8cÏ\82 Ï\87Ï\8eÏ\81οÏ\82 Î\95ξαÏ\81Ï\84ήÏ\83εÏ\89ν Î\95κδÏ\8cÏ\83εÏ\89ν: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "ΣÏ\86άλμα εγγÏ\81αÏ\86ήÏ\82"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "ΣÏ\8dνολο Ï\87Ï\8eÏ\81οÏ\85 αÏ\83Ï\86αλείαÏ\82: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Î\91δÏ\8dναÏ\84η η δημιοÏ\85Ï\81γία μιαÏ\82 Ï\85Ï\80οδοÏ\87ήÏ\82 (socket)"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "ΣÏ\85νολικÏ\8cÏ\82 Î\9aαÏ\84αμεÏ\84Ï\81ημÎνοÏ\82 ΧÏ\8eÏ\81οÏ\82: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Î\91Ï\80ÎÏ\84Ï\85Ï\87ε"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Î Ï\81ÎÏ\80ει να δÏ\8eÏ\83εÏ\84ε ακÏ\81ιβÏ\8eÏ\82 μία Ï\80αÏ\81άÏ\83Ï\84αÏ\83η"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Î\91δÏ\8dναÏ\84η η Ï\83Ï\8dνδεÏ\83η Ï\83ε Ï\80αθηÏ\84ική Ï\85Ï\80οδοÏ\87ή (socket)."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Î\94ε βÏ\81Îθηκαν Ï\80ακÎÏ\84α"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "Το getaddrinfo ήÏ\84αν αδÏ\8dναÏ\84ο να δÎÏ\83μεÏ\85Ï\83η Ï\85Ï\80οδοÏ\87ή Ï\80αÏ\81ακολοÏ\8dθηÏ\83ηÏ\82"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Î\91Ï\81Ï\87εία ΠακÎÏ\84οÏ\85:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr ""
+"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Καθηλωμένα Πακέτα:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Αδύνατη η αποστολή της εντολής PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(δε βρέθηκαν)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Εγκατεστημένα: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(κανένα)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Υποψήφιο: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Αδύνατη η αποδοχή συνδέσεων"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Καθήλωση Πακέτου: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Πρόβλημα κατά το hashing του αρχείου"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Πίνακας Έκδοσης:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Λήξη χρόνου υποδοχής δεδομένων"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s για %s %s είναι μεταγλωττισμένο σε %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Επερώτηση"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Αδύνατη η εκτέλεση"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Σύνδεση στο %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Χρήση: apt-cache [επιλογές] εντολή\n"
+" apt-cache [επιλογές] add file1 [file2 ...]\n"
+" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n"
+"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n"
+"από αυτά\n"
+"\n"
+"Εντολές:\n"
+" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n"
+" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n"
+" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n"
+" showsrc - Εμφάνιση των πηγαίων πακέτων\n"
+" stats - Εμφάνιση μερικών βασικών στατιστικών\n"
+" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n"
+" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην έξοδο stdout\n"
+" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n"
+" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n"
+" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n"
+" depends - Εμφάνιση μη επεξεργασμένων εξαρτήσεων ενός πακέτου\n"
+" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n"
+" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n"
+" dotty - Παραγωγή γραφημάτων πακέτων για το GraphVis\n"
+" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n"
+" policy - Εμφάνιση προτεραιοτήτων πηγών\n"
+"\n"
+"Επιλογές:\n"
+" -h Αυτό το κείμενο βοήθειας.\n"
+" -p=? Η cache πακέτων.\n"
+" -s=? Η cache πηγών.\n"
+" -q Απενεργοποίηση του δείκτη προόδου.\n"
+" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n"
+" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
+" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n"
+"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Παρακαλώ δώστε ένα όνομα για τον δίσκο αυτό, όπως 'Debian 2.1r1 Disk 1'"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Σύνδεση στο %s"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Αδύνατη η εύρεση του '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας."
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Τα ορίσματα δεν είναι σε ζεύγη"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Χρήση: apt-config [επιλογές] εντολή\n"
+"\n"
+"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων "
+"APT\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#: methods/connect.cc:223
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Αδύνατη η σύνδεση στο %s %s:"
-
-#: methods/gpgv.cc:65
-#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Αδύνατη η εύρεση του '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "Ε: Λίστα Ορισμάτων από Acquire::gpgv::Options πολύ μεγάλη. Έξοδος."
+msgid "%s not a valid DEB package."
+msgstr "Το %s δεν είναι έγκυρο πακέτο DEB."
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του "
-"αποτυπώματος?!"
+"Χρήση: apt-extracttemplates αρχείο1 [αρχείο2 ...]\n"
+"\n"
+"το apt-extracttemplates είναι ένα βοήθημα για να εξάγετε ρυθμίσεις \n"
+"και πρότυπα από πακέτα debian\n"
+"\n"
+"Επιλογές:\n"
+" -h Το παρόν κείμενο βοήθειας\n"
+" -t Καθορισμός προσωρινού καταλόγου\n"
+" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
+" -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή."
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
+#, c-format
+msgid "Unable to write to %s"
+msgstr "Αδύνατη η εγγραφή στο %s"
-#: methods/gpgv.cc:213
-#, fuzzy, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr " για την επαλήθευση της υπογραφής (είναι εγκατεστημένο το gnupg?)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Δεν βρέθηκε η έκδοση του debconf. Είναι το debconf εγκατεστημένο;"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Î\86γνÏ\89Ï\83Ï\84ο Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εκÏ\84ÎλεÏ\83η Ï\84οÏ\85 gpgv"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Î\9f καÏ\84άλογοÏ\82 εÏ\80εκÏ\84άÏ\83εÏ\89ν Ï\84οÏ\85 Ï\80ακÎÏ\84οÏ\85 είναι Ï\85Ï\80εÏ\81βολικά μακÏ\81Ï\8dÏ\82"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n"
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#, c-format
+msgid "Error processing directory %s"
+msgstr "Σφάλμα επεξεργασίας του καταλόγου %s"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν "
-"διαθέσιμο το δημόσιο κλειδί:\n"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Ο κατάλογος επεκτάσεων των πηγών είναι υπερβολικά μακρύς"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Αποτυχία εύρεσης της κατάστασης του %s."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Σφάλμα εγγραφής κεφαλίδων στο αρχείο περιεχομένων"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Î\91δÏ\8dναÏ\84ο Ï\84ο άνοιγμα διαÏ\83Ï\89λήνÏ\89Ï\83ηÏ\82 για Ï\84ο %s"
+msgid "Error processing contents %s"
+msgstr "ΣÏ\86άλμα εÏ\80εξεÏ\81γαÏ\83ίαÏ\82 Ï\80εÏ\81ιεÏ\87ομÎνÏ\89ν Ï\84οÏ\85 %s"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Σφάλμα ανάγνωσης από τη διεργασία %s"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Χρήση: apt-ftparchive [επιλογές] εντολή\n"
+"Εντολές: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"Το apt-ftparchive παράγει αρχεία περιεχομένων για τις αρχειοθήκες Debian\n"
+"Υποστηρίζει πολλές παραλλαγές παραγωγής, από απόλυτα αυτοματοποιημένες έως\n"
+"λειτουργικές αντικαταστάσεις για την dpkg-scanpackages και dpkg-scansources\n"
+"\n"
+"Το apt-ftparchive παράγει αρχεία Package από ένα σύνολο αρχείων .debs. Στο\n"
+"αρχείο Package περιέχονται όλα τα πεδία ελέγχου κάθε πακέτου καθώς και\n"
+"το μέγεθος τους και το MD5 hash. Υποστηρίζει την ύπαρξη αρχείου παράκαμψης\n"
+"για τη βεβιασμένη αλλαγή των πεδίων Priority (Προτεραιότητα) και Section\n"
+"(Τομέας).\n"
+"\n"
+"Με τον ίδιο τρόπο, το apt-ftparchive παράγει αρχεία πηγών (Sources) από μια\n"
+"ιεραρχία αρχείων .dsc. Η επιλογή --source-override μπορεί να χρησιμοποιηθεί\n"
+"για παράκαμψη των αρχείων πηγών src.\n"
+"\n"
+"Οι εντολές 'packages' και 'sources' θα πρέπει να εκτελούνται στον βασικό\n"
+"κατάλογο της ιεραρχίας.Το BinaryPath θα πρέπει να δείχνει στον αρχικό\n"
+"κατάλογο που θα ξεκινάει η αναδρομική αναζήτηση και το αρχείο παράκαμψης\n"
+"θα πρέπει να περιέχει τις επιλογές παράκαμψης. Το Pathprefix προστίθεται "
+"στα\n"
+"πεδία όνομάτων αρχείων, αν υπάρχει. Δείτε παράδειγμα χρήσης στην αρχειοθήκη\n"
+"πακέτων του Debian :\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Επιλογές:\n"
+" -h Αυτό το κείμενο βοηθείας\n"
+" --md5 Έλεγχος παραγωγής MD5\n"
+" -s=? αρχείο παράκαμψης πηγών\n"
+" -q Χωρίς έξοδο\n"
+" -d=? Επιλογή προαιρετικής βάσης δεδομένων cache\n"
+" --no-delink Αποσφαλμάτωση του delinking\n"
+" --contents Έλεγχος παραγωγής αρχείου περιεχομένων\n"
+" -c=? Χρήση αυτού του αρχείου ρυθμίσεων\n"
+" -o=? Ορισμός αυθαίρετης επιλογής ρύθμισης"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Î\91ναμονή εÏ\80ικεÏ\86αλίδÏ\89ν"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Î\94εν Ï\84αιÏ\81ιαξε καμία εÏ\80ιλογή"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Λήψη μίας και μόνης γραμμής επικεφαλίδας πάνω από %u χαρακτήρες"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Ελαττωματική γραμμή επικεφαλίδας"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Λείπουν μερικά αρχεία από την ομάδα πακέτων '%s'"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Η βάση είναι κατεστραμμένη, το αρχείο μετονομάστηκε σε %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Η βάση δεν είναι ενημερωμένη, γίνεται προσπάθεια να αναβαθμιστεί το %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Άγνωστη μορφή ημερομηνίας"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Η επιλογή απέτυχε"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Το άνοιγμά του αρχείου της βάσης %s: %s απέτυχε"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Λήξη χρόνου σύνδεσης"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Αποτυχία εύρεσης της κατάστασης του %s."
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "ΣÏ\86άλμα Ï\83Ï\84ην εγγÏ\81αÏ\86ή Ï\83Ï\84ο αÏ\81Ï\87είο εξÏ\8cδου"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Î\97 αÏ\81Ï\87ειοθήκη δεν Ï\80εÏ\81ιÎÏ\87ει Ï\80εδίο ελÎγÏ\87ου"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "ΣÏ\86άλμα Ï\83Ï\84ην εγγÏ\81αÏ\86ή Ï\83Ï\84ο αÏ\81Ï\87είο"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Î\91δÏ\8dναÏ\84η η Ï\80Ï\81Ï\8cÏ\83βαÏ\83η Ï\83ε δείκÏ\84η"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Σφάλμα στην εγγραφή στο αρχείο"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Αδύνατη η ανάγνωση του καταλόγου %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Αδύνατη η εύρεση της κατάστασης του %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Η σύνδεση απέτυχε"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Σφάλματα στο αρχείο"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Εσωτερικό Σφάλμα"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Αδύνατη η εύρεση του %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Αδύνατο η απεικόνιση mmap ενός άδειου αρχείου"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Αποτυχία ανεύρεσης"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes"
+msgid "Failed to open %s"
+msgstr "Αποτυχία ανοίγματος του %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Î\97 εÏ\80ιλογή %s δε βÏ\81Îθηκε"
+msgid " DeLink %s [%s]\n"
+msgstr "Î\91Ï\80οÏ\83Ï\8dνδεÏ\83η %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Î\9cη αναγνÏ\89Ï\81ιÏ\83μÎνοÏ\82 Ï\84Ï\8dÏ\80οÏ\82 Ï\83Ï\8dνÏ\84μηÏ\83ηÏ\82: '%c'"
+msgid "Failed to readlink %s"
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανάγνÏ\89Ï\83ηÏ\82 Ï\84οÏ\85 %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Η γραμμή %d έχει υπερβολικό μήκος (μέγιστο %d)"
+msgid "Failed to unlink %s"
+msgstr "Αποτυχία αποσύνδεσης του %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα."
+msgid "*** Failed to link %s to %s"
+msgstr " Αποτυχία σύνδεσης του %s με το %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Αποσύνδεση ορίου του %sB hit.\n"
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Η αρχειοθήκη δεν περιέχει πεδίο πακέτων"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο"
+msgid " %s has no override entry\n"
+msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s συντηρητής είναι ο %s όχι ο %s\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ"
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
-#: apt-pkg/contrib/configuration.cc:702
-#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'"
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "ΣÏ\85νÏ\84ακÏ\84ικÏ\8c Ï\83Ï\86άλμα %s:%u: Î\86Ï\87Ï\81ηÏ\83Ï\84οι Ï\87αÏ\81ακÏ\84ήÏ\81εÏ\82 Ï\83Ï\84ο Ï\84ÎλοÏ\82 Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
+msgid "Internal error, could not locate member %s"
+msgstr "Î\95Ï\83Ï\89Ï\84εÏ\81ικÏ\8c ΣÏ\86άλμα, αδÏ\85ναμία ενÏ\84οÏ\80ιÏ\83μοÏ\8d Ï\84οÏ\85 μÎλοÏ\85Ï\82 %s"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Αδύνατη η ανάγνωση του %s"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realoc - Αδυναμία εκχώρησης μνήμης"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Σφάλμα!"
+msgid "Unable to open %s"
+msgstr "Αδύνατο το άνοιγμα του %s"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Ολοκληρώθηκε"
+msgid "Malformed override %s line %lu #1"
+msgstr "Κακογραμμένη παρακαμπτήρια %s γραμμή %lu #1"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Î\97 εÏ\80ιλογή γÏ\81αμμήÏ\82 ενÏ\84ολÏ\8eν '%c' [αÏ\80Ï\8c %s] δεν είναι γνÏ\89Ï\83Ï\84ή."
+msgid "Malformed override %s line %lu #2"
+msgstr "Î\9aακογÏ\81αμμÎνη Ï\80αÏ\81ακαμÏ\80Ï\84ήÏ\81ια %s γÏ\81αμμή %lu #2"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Î\97 εÏ\80ιλογή γÏ\81αμμήÏ\82 ενÏ\84ολÏ\8eν %s δεν είναι καÏ\84ανοηÏ\84ή"
+msgid "Malformed override %s line %lu #3"
+msgstr "Î\9aακογÏ\81αμμÎνη Ï\80αÏ\81ακαμÏ\80Ï\84ήÏ\81ια %s γÏ\81αμμή %lu #3"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Î\97 εÏ\80ιλογή γÏ\81αμμήÏ\82 ενÏ\84ολÏ\8eν %s δεν είναι boolean"
+msgid "Failed to read the override file %s"
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανάγνÏ\89Ï\83ηÏ\82 Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 Ï\80αÏ\81άκαμÏ\88ηÏ\82 %s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Î\97 εÏ\80ιλογή %s αÏ\80αιÏ\84εί Îνα Ï\8cÏ\81ιÏ\83μα."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Î\86γνÏ\89Ï\83Ï\84οÏ\82 Î\91λγÏ\8cÏ\81ιθμοÏ\82 ΣÏ\85μÏ\80ίεÏ\83ηÏ\82 '%s'"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>."
+msgid "Compressed output %s needs a compression set"
+msgstr "Η συμπιεσμένη έξοδος του %s χρειάζεται καθορισμό συμπίεσης"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Αποτυχία δημιουργίας του ΑΡΧΕΙΟΥ"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Αποτυχία αγκίστρωσης"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Μη έγκυρη λειτουργία %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Συμπίεση απογόνου"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Î\91δÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η Ï\84ηÏ\82 καÏ\84άÏ\83Ï\84αÏ\83ηÏ\82 Ï\84οÏ\85 Ï\83ημείοÏ\85 εÏ\80αÏ\86ήÏ\82 %s"
+msgid "Internal error, failed to create %s"
+msgstr "Î\95Ï\83Ï\89Ï\84εÏ\81ικÏ\8c ΣÏ\86άλμα, Î\91Ï\80οÏ\84Ï\85Ï\87ία δημιοÏ\85Ï\81γίαÏ\82 Ï\84οÏ\85 %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Αδύνατη η αλλαγή σε %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Αποτυχία εκτέλεσης του συμπιεστή "
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
-"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "αποσυμπιεστής"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "απέτυχε η Ε/Ε στην υποδιεργασία/αρχείο"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος "
-"%s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Αποτυχία ανάγνωσης κατά τον υπολογισμό MD5"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not get lock %s"
-msgstr "Î\91δÏ\8dναÏ\84ο Ï\84ο κλείδÏ\89μα %s"
+msgid "Problem unlinking %s"
+msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ην αÏ\80οÏ\83Ï\8dνδεÏ\83η Ï\84οÏ\85 %s"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί"
+msgid "Failed to rename %s to %s"
+msgstr "Αποτυχία μετονομασίας του %s σε %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)"
+msgid "Regex compilation error - %s"
+msgstr "σφάλμα μεταγλωτισμου - %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Could not open file %s"
-msgstr "Î\91δÏ\8dναÏ\84ο Ï\84ο άνοιγμα Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 %s"
+msgid "but %s is installed"
+msgstr "αλλά Ï\84ο %s είναι εγκαÏ\84εÏ\83Ï\84ημÎνο"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "αναγνÏ\8eÏ\83Ï\84ηκαν, αÏ\80ομÎνοÏ\85ν ακÏ\8cμη %lu για ανάγνÏ\89Ï\83η αλλά δεν αÏ\80ομÎνοÏ\85ν άλλα"
+msgid "but %s is to be installed"
+msgstr "αλλά Ï\84ο %s Ï\80Ï\81Ï\8cκειÏ\84αι να εγκαÏ\84αÏ\83Ï\84αθεί"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "αλλά δεν είναι εγκαταστάσημο"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ο κλείÏ\83ιμο Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "αλλά είναι Îνα εικονικÏ\8c Ï\80ακÎÏ\84ο"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ην διαγÏ\81αÏ\86ή Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "αλλά δεν είναι εγκαÏ\84εÏ\83Ï\84ημÎνο"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ον Ï\83Ï\85γÏ\87Ï\81ονιÏ\83μÏ\8c Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "αλλά δεν Ï\80Ï\81Ï\8cκειÏ\84αι να εγκαÏ\84αÏ\83Ï\84αθεί"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Άδειο cache πακέτων"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " η"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Το αÏ\81Ï\87είο cache Ï\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν είναι καÏ\84εÏ\83Ï\84Ï\81αμμÎνο"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Τα ακÏ\8cλοÏ\85θα Î\9dÎ\95Î\91 Ï\80ακÎÏ\84α θα εγκαÏ\84αÏ\83Ï\84αθοÏ\8dν:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Το αÏ\81Ï\87είο cache Ï\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν είναι αÏ\83Ï\8dμβαÏ\84ηÏ\82 ÎκδοÏ\83ηÏ\82"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα Î\91ΦÎ\91Î\99ΡÎ\95Î\98Î\9fÎ¥Î\9d:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Î\97 cache Ï\80ακÎÏ\84Ï\89ν καÏ\84αÏ\83κεÏ\85άÏ\83Ï\84ηκε για μια διαÏ\86οÏ\81εÏ\84ική αÏ\81Ï\87ιÏ\84εκÏ\84ονική"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα αναβαθμιÏ\83Ï\84οÏ\8dν:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Î\95ξαÏ\81Ï\84άÏ\84αι αÏ\80Ï\8c"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα ΥΠÎ\9fÎ\92Î\91Î\98Î\9cÎ\99ΣΤÎ\9fÎ¥Î\9d:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Î Ï\81οÎ\95ξαÏ\81Ï\84άÏ\84αι αÏ\80Ï\8c"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Τα ακÏ\8cλοÏ\85θα κÏ\81αÏ\84ημÎνα Ï\80ακÎÏ\84α θα αλλαÏ\87θοÏ\8dν:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Προτείνει"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (λόγω του %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Συστήνει"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n"
+"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Ασύμβατο με"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Αντικαθιστά"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu επανεγκατεστημένα,"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Απαρχαιώνει"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu υποβαθμισμένα, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "σημαντικό"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "αÏ\80αιÏ\84οÏ\8dμενο"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Î\94ιÏ\8cÏ\81θÏ\89Ï\83η εξαÏ\81Ï\84ήÏ\83εÏ\89ν..."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "καθιερωμένο"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " απέτυχε."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "προαιρετικό"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Αδύνατη η διόρθωση των εξαρτήσεων"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "εÏ\80ιÏ\80λÎον"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Î\91δÏ\8dναÏ\84η η ελαÏ\87ιÏ\83Ï\84οÏ\80οίηÏ\83η Ï\84οÏ\85 Ï\83Ï\85νÏ\8cλοÏ\85 αναβαθμίÏ\83εÏ\89ν"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Κατασκευή Δένδρου Εξαρτήσεων"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Ετοιμο"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Υποψήφιες Εκδόσεις"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα "
+"προβλήματα."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "ΠαÏ\81αγÏ\89γή Î\95ξαÏ\81Ï\84ήÏ\83εÏ\89ν"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Î\91νεÏ\80ίλÏ\85Ï\84εÏ\82 εξαÏ\81Ï\84ήÏ\83ειÏ\82. Î\94οκιμάÏ\83Ï\84ε με Ï\84ο -f."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Αποτυχία ανοίγματος του %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Αποτυχία εγγραφής του αρχείου %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση [ν/Ο]; "
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr ""
+"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %lu Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Î\91νάλÏ\85Ï\83η dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Î\91δÏ\8dναÏ\84η η ανάγνÏ\89Ï\83η Ï\84ηÏ\82 λίÏ\83Ï\84αÏ\82 Ï\80ηγÏ\8eν."
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Άνοιγμα του %s"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages."
+"debian.org"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Î\97 γÏ\81αμμή %u ÎÏ\87ει Ï\85Ï\80εÏ\81βολικÏ\8c μήκοÏ\82 Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB/%sB αÏ\80Ï\8c αÏ\81Ï\87εία.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %u Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Ï\84Ï\8dÏ\80οÏ\82)"
+msgid "Need to get %sB of archives.\n"
+msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB αÏ\80Ï\8c αÏ\81Ï\87εία.\n"
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Î\9f Ï\84Ï\8dÏ\80οÏ\82 '%s' Ï\83Ï\84η γÏ\81αμμή %u Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s είναι άγνÏ\89Ï\83Ï\84οÏ\82 "
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Î\9cεÏ\84ά Ï\84ην αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83η θα Ï\87Ï\81ηÏ\83ιμοÏ\80οιηθοÏ\8dν %sB Ï\87Ï\8eÏ\81οÏ\85 αÏ\80Ï\8c Ï\84ο δίÏ\83κο.\n"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %u Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (id καÏ\84αÏ\83κεÏ\85αÏ\83Ï\84ή)"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Î\9cεÏ\84ά Ï\84ην αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83η θα ελεÏ\85θεÏ\81Ï\89θοÏ\8dν %sB Ï\87Ï\8eÏ\81οÏ\85 αÏ\80Ï\8c Ï\84ο δίÏ\83κο.\n"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
-"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού "
-"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν "
-"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την "
-"επιλογή APT::Force-LoopBreak option."
+msgid "Couldn't determine free space in %s"
+msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s"
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Î\9f Ï\84Ï\8dÏ\80οÏ\82 αÏ\81Ï\87είοÏ\85 εÏ\85Ï\81εÏ\84ηÏ\81ίοÏ\85 '%s' δεν Ï\85Ï\80οÏ\83Ï\84ηÏ\81ίζεÏ\84αι"
+msgid "You don't have enough free space in %s."
+msgstr "Î\94εν διαθÎÏ\84εÏ\84ε αÏ\81κεÏ\84Ï\8c ελεÏ\8dθεÏ\81ο Ï\87Ï\8eÏ\81ο Ï\83Ï\84ο %s."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ναι, κανε ότι λέω!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση "
-"κάποιας κατάλληλης αρχείοθήκης."
+"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n"
+"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n"
+" ?] "
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως "
-"προκλήθηκε από κρατούμενα πακέτα."
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Εγκατάλειψη."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Î\91δÏ\8dναÏ\84η η διÏ\8cÏ\81θÏ\89Ï\83η Ï\80Ï\81οβλημάÏ\84Ï\89ν, ÎÏ\87εÏ\84ε κÏ\81αÏ\84οÏ\8dμενα ελαÏ\84Ï\84Ï\89μαÏ\84ικά Ï\80ακÎÏ\84α."
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Î\98ÎλεÏ\84ε να Ï\83Ï\85νεÏ\87ίÏ\83εÏ\84ε [Î\9d/ο]; "
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Î\9f Ï\86άκελοÏ\82 λιÏ\83Ï\84Ï\8eν %spartial αγνοείÏ\84αι."
+msgid "Failed to fetch %s %s\n"
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανάκÏ\84ηÏ\83ηÏ\82 Ï\84οÏ\85 %s %s\n"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται."
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο"
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Ανάγνωση Λίστας Πακέτων"
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update "
+"ή το --fix-missing;"
-#: apt-pkg/acquire-worker.cc:110
-#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Αδύνατη η επίλυση των χαμένων πακέτων."
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Εγκατάλειψη της εγκατάστασης."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Î\97 μÎθοδοÏ\82 %s δεν εκκινήθηκε Ï\83Ï\89Ï\83Ï\84ά"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "ΣημείÏ\89Ï\83η, εÏ\80ιλÎÏ\87θηκε Ï\84ο %s ανÏ\84ί Ï\84οÏ\85%s\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε "
-"enter."
+"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται"
-
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Unable to stat %s."
-msgstr "Αδύνατη η εύρεση της κατάστασης του %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Αδύνατη η ανάγνωση της λίστας πηγών."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Το πακέτο %s είναι εικονικό και παρέχεται από τα:\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
-"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Εγκατεστημένα]"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Î\9cη ÎγκÏ\85Ï\81η εγγÏ\81αÏ\86ή Ï\83Ï\84ο αÏ\81Ï\87είο Ï\80Ï\81οÏ\84ιμήÏ\83εÏ\89ν, καμία εÏ\80ικεÏ\86αλίδα Package"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Î\98α Ï\80Ï\81ÎÏ\80ει εÏ\80ακÏ\81ιβÏ\8eÏ\82 να εÏ\80ιλÎξεÏ\84ε Îνα για εγκαÏ\84άÏ\83Ï\84αÏ\83η."
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
+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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Î\97 cache ÎÏ\87ει αÏ\83Ï\8dμβαÏ\84ο Ï\83Ï\8dÏ\83Ï\84ημα αÏ\80Ï\8cδοÏ\83ηÏ\82 ÎκδοÏ\83ηÏ\82"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "ΠάÏ\81αÏ\85Ï\84α Ï\84ο ακÏ\8cλοÏ\85θο Ï\80ακÎÏ\84ο Ï\84ο ανÏ\84ικαθιÏ\83Ï\84ά:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Î Ï\81οÎκÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Το Ï\80ακÎÏ\84ο %s δεν είναι Ï\85Ï\80οÏ\88ήÏ\86ιο για εγκαÏ\84άÏ\83Ï\84αÏ\83η"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr ""
+"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή "
+"του\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Î Ï\81οÎκεÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Î\97 ÎκδοÏ\83η %s για Ï\84ο%s δεν βÏ\81Îθηκε"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Î Ï\81οÎκÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Î\97 ÎκδοÏ\83η %s για Ï\84ο %s δεν βÏ\81Îθηκε"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Î Ï\81οÎκÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Î\95Ï\80ιλÎÏ\87θηκε η ÎκδοÏ\83η %s (%s) για Ï\84ο%s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Η εντολή update δεν παίρνει ορίσματα"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Αδύνατο το κλείδωμα του καταλόγου"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Î\95κÏ\80ληκÏ\84ικÏ\8c, Ï\85Ï\80εÏ\81βήκαÏ\84ε Ï\84ον αÏ\81ιθμÏ\8c Ï\84Ï\89ν ονομάÏ\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν Ï\80οÏ\85 Ï\85Ï\80οÏ\83Ï\84ηÏ\81ίζει Ï\84ο "
-"APT."
+"Î\9cεÏ\81ικά αÏ\81Ï\87εία δεν μεÏ\84αÏ\86οÏ\81Ï\84Ï\8eθηκαν, αγνοήθηκαν ή Ï\87Ï\81ηÏ\83ιμοÏ\80οιήθηκαν Ï\80αλαιÏ\8cÏ\84εÏ\81α "
+"στη θέση τους."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο "
+"υλικό"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Ανάγνωση Λιστών Πακέτων"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Εσωτερικό Σφάλμα, Η διαδικασία αναβάθμισης χάλασε"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Συλλογή Παροχών Αρχείου"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Αδύνατη η εύρεση του πακέτου %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "Αδύνατη η εγγραφή στο %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών"
+msgid "Couldn't find package %s"
+msgstr "Αδύνατη η εύρεση του πακέτου %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "απέτυχε η μετονομασία, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Ανόμοιο MD5Sum"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Î\91νÏ\8cμοιο MD5Sum"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "αλλά Ï\84ο %s Ï\80Ï\81Ï\8cκειÏ\84αι να εγκαÏ\84αÏ\83Ï\84αθεί"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Aν τρέξετε 'apt-get f install' ίσως να διορθώσετε αυτά τα προβλήματα:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Î\91δÏ\8dναÏ\84οÏ\82 ο ενÏ\84οÏ\80ιÏ\83μÏ\8cÏ\82 ενÏ\8cÏ\82 αÏ\81Ï\87είοÏ\85 για Ï\84ο Ï\80ακÎÏ\84ο %s. Î\91Ï\85Ï\84Ï\8c ίÏ\83Ï\89Ï\82 Ï\83ημαίνει Ï\8cÏ\84ι "
-"Ï\87Ï\81ειάζεÏ\84αι να διοÏ\81θÏ\8eÏ\83εÏ\84ε Ï\87ειÏ\81οκίνηÏ\84α Ï\84ο Ï\80ακÎÏ\84ο. (λÏ\8cγÏ\89 Ï\87αμÎνοÏ\85 αÏ\81Ï\87είοÏ\85)"
+"Î\91νεÏ\80ίλÏ\85Ï\84εÏ\82 εξαÏ\81Ï\84ήÏ\83ειÏ\82. Î\94οκιμάÏ\83Ï\84ε 'apt-get -f install' Ï\87Ï\89Ï\81ίÏ\82 να οÏ\81ίÏ\83εÏ\84ε "
+"Ï\80ακÎÏ\84ο (ή καθοÏ\81ίÏ\83Ï\84ε μια λÏ\8dÏ\83η)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι "
-"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο."
+"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n"
+"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n"
+"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n"
+"μετακινηθεί από τα εισερχόμενα."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο "
-"πακέτο %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Ανόμοιο μέγεθος"
+"Εφόσον ζητήσατε μια και μόνη λειτουργία, είναι πολύ πιθανόν ότι\n"
+"το πακέτο αυτό δεν είναι εγκαταστάσιμο και θα πρέπει να κάνετε μια\n"
+"αναφορά σφάλματος για αυτό το πακέτο."
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Χαλασμένα πακέτα"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Χρησιμοποιείται το σημείο προσάρτησης %s\n"
-"Προσαρτάται το CD-ROM\n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Î\91ναγνÏ\8eÏ\81ιÏ\83η..."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Î Ï\81οÏ\84εινÏ\8cμενα Ï\80ακÎÏ\84α:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Αποθήκευση Ετικέτας: %s \n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Συνιστώμενα πακέτα:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Υπολογισμός της αναβάθμισης... "
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Αποπροσάρτηση του CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Αναμονή για δίσκο...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Προσάρτηση του CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Σάρωση του δίσκου για περιεχόμενα...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Βρέθηκαν %i κατάλογοι πακέτων, %i κατάλογοι πηγαίων και %i υπογραφές\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Αποθήκευση Ετικέτας: %s \n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Απέτυχε"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Î\91Ï\85Ï\84Ï\8c δεν είναι ÎγκÏ\85Ï\81ο Ï\8cνομα, Ï\80Ï\81οÏ\83Ï\80αθείÏ\83Ï\84ε ξανά. \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Î\95Ï\84οιμο"
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-"Ο δίσκος αυτός ονομάζεται: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Αντιγραφή λιστών πακέτων..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Eγγραφή νέας λίστας πηγών\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Αποπροσάρτηση του CD-ROM..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Εγιναν %i εγγραφές.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n"
+"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο "
+"υλικό"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr ""
+"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον "
+"κωδικάτου"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Î\95γιναν %i εγγÏ\81αÏ\86ÎÏ\82 με %i αÏ\80Ï\8eνÏ\84α αÏ\81Ï\87εία και %i αÏ\83Ï\8dμβαÏ\84α αÏ\81Ï\87εία\n"
+msgid "Unable to find a source package for %s"
+msgstr "Î\91δÏ\85ναμία ενÏ\84οÏ\80ιÏ\83μοÏ\8d Ï\84οÏ\85 κÏ\8eδικά Ï\84οÏ\85 Ï\80ακÎÏ\84οÏ\85 %s"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: cmdline/apt-get.cc:2175
#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Î\9f Ï\86άκελοÏ\82 λιÏ\83Ï\84Ï\8eν %spartial αγνοείÏ\84αι."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "ΠαÏ\81άκαμÏ\88η Ï\84οÏ\85 ήδη μεÏ\84αÏ\86οÏ\81Ï\84Ï\89μÎνοÏ\85 αÏ\81Ï\87είοÏ\85 `%s`\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "Î Ï\81οεÏ\84οιμαÏ\83ία Ï\84οÏ\85 %s"
+msgid "You don't have enough free space in %s"
+msgstr "Î\94εν διαθÎÏ\84εÏ\84ε αÏ\81κεÏ\84Ï\8c ελεÏ\8dθεÏ\81ο Ï\87Ï\8eÏ\81ο Ï\83Ï\84ο %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "Î\9eεÏ\80ακεÏ\84άÏ\81ιÏ\83μα Ï\84οÏ\85 %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB/%sB Ï\80ηγαίοÏ\85 κÏ\8eδικα.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Î Ï\81οεÏ\84οιμαÏ\83ία Ï\81Ï\8dθμιÏ\83ηÏ\82 Ï\84οÏ\85 %s"
+msgid "Need to get %sB of source archives.\n"
+msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB Ï\80ηγαίοÏ\85 κÏ\8eδικα.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "ΡÏ\8dθμιÏ\83η Ï\84οÏ\85 %s"
+msgid "Fetch source %s\n"
+msgstr "Î\9cεÏ\84αÏ\86Ï\8cÏ\81Ï\84Ï\89Ï\83η Î\9aÏ\89δικα %s\n"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Σφάλμα επεξεργασίας του καταλόγου %s"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών."
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Installed %s"
-msgstr "Î\95γκαÏ\84ÎÏ\83Ï\84ηÏ\83α Ï\84ο %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "ΠαÏ\81άκαμÏ\88η Ï\84ηÏ\82 αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83ηÏ\82 ήδη μεÏ\84αÏ\86οÏ\81Ï\84Ï\89μÎνοÏ\85 κÏ\8eδικα Ï\83Ï\84ο %s\n"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Î Ï\81οεÏ\84οιμαÏ\83ία για Ï\84ην αÏ\86αίÏ\81εÏ\83η Ï\84οÏ\85 %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Î\91Ï\80ÎÏ\84Ï\85Ï\87ε η ενÏ\84ολή αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83ηÏ\82 %s\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removing %s"
-msgstr "Î\91Ï\86αιÏ\81Ï\8e Ï\84ο %s"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Î\95λÎγξÏ\84ε αν είναι εγκαÏ\84αÏ\83Ï\84ημÎνο Ï\84ο Ï\80ακÎÏ\84ο 'dpkg-dev'.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Removed %s"
-msgstr "Αφαίρεσα το %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, fuzzy, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Προετοιμασία ρύθμισης του %s"
+msgid "Build command '%s' failed.\n"
+msgstr "Απέτυχε η εντολή χτισίματος %s.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Αποτυχία διαγραφής του %s"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Η απογονική διεργασία απέτυχε"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Αδύνατο το άνοιγμα του αρχείου %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Η σύνδεση έκλεισε πρόωρα"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Αποτυχία κατά τη δημιουργία διασωληνώσεων"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Αποτυχία κατά την εκτέλεση του gzip "
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Κατεστραμμένη αρχειοθήκη"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη"
-
-#: apt-inst/contrib/extracttar.cc:296
-#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Μη έγκυρη υπογραφή αρχειοθήκης"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Η αρχειοθήκη είναι πολύ μικρή"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Αποτυχία εντοπισμού του στοιχείου hash!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Αδυναμία εντοπισμού εκτροπής"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Εσωτερικό Σφάλμα στο AddDiversion"
-
-#: apt-inst/filelist.cc:477
-#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s"
-
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Î\94ιÏ\80λή Ï\80Ï\81οÏ\83θήκη εκÏ\84Ï\81οÏ\80ήÏ\82 %s -> %s"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Î\91δÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η Ï\80ληÏ\81οÏ\86οÏ\81ιÏ\8eν Ï\87Ï\84ιÏ\83ίμαÏ\84οÏ\82 για Ï\84ο %s"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Διπλό αρχείο ρυθμίσεων %s/%s"
+msgid "%s has no build depends.\n"
+msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Failed to write file %s"
-msgstr "Αποτυχία εγγραφής του αρχείου %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε"
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to close file %s"
-msgstr "Αποτυχία στο κλείσιμο του αρχείου %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες "
+"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις έκδοσης"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "The path %s is too long"
-msgstr "Η διαδρομή %s έχει υπερβολικό μήκος"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s "
+"είναι νεώτερο"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "Î\91Ï\80οÏ\83Ï\85μÏ\80ίεÏ\83η Ï\84οÏ\85 %s Ï\80άνÏ\89 αÏ\80Ï\8c μια Ï\86οÏ\81ά"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ικανοÏ\80οίηÏ\83ηÏ\82 %s εξάÏ\81Ï\84ηÏ\83ηÏ\82 για Ï\84ο %s: %s"
-#: apt-inst/extract.cc:134
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "The directory %s is diverted"
-msgstr "Ο φάκελος %s έχει εκτραπεί"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται."
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Î\97 διαδÏ\81ομή εκÏ\84Ï\81οÏ\80ήÏ\82 ÎÏ\87ει Ï\85Ï\80εÏ\81βολικÏ\8c μήκοÏ\82"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Î¥Ï\80οÏ\83Ï\84ηÏ\81ιζÏ\8cμενοι Î\9fδηγοί:"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Αποτυχία μετονομασίας του %s σε %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Χρήση: apt-get [παράμετροι] εντολή\n"
+" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n"
+"\n"
+"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n"
+"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n"
+"και η install.\n"
+"\n"
+"Εντολές:\n"
+" update - Ανάκτηση νέων καταλόγων πακέτων\n"
+" upgrade - Διενέργεια αναβάθμισης\n"
+" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n"
+" remove - Αφαίρεση πακέτων\n"
+" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n"
+" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n"
+" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n"
+" dselect-upgrade - Τήρηση των επιλογών του dselect\n"
+" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n"
+" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n"
+" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n"
+"\n"
+"Παράμετροι:\n"
+" -h Αυτό το βοηθητικό κείμενο.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n"
+" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n"
+" -s Χωρίς ενέργεια. Perform ordering simulation\n"
+" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n"
+" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n"
+" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n"
+" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n"
+" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n"
+" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n"
+" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n"
+" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n"
+"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n"
+"για περισσότερες πληροφορίες και επιλογές.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Hit "
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ενÏ\84οÏ\80ιÏ\83μοÏ\8d Ï\84οÏ\85 κÏ\8cμβοÏ\85 Ï\83Ï\84ην ομάδα hash Ï\84οÏ\85"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "ΦÎÏ\81ε:"
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Î\97 διαδÏ\81ομή ÎÏ\87ει Ï\85Ï\80εÏ\81βολικÏ\8c μήκοÏ\82"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Î\91γνÏ\8cηÏ\83ε "
-#: apt-inst/extract.cc:414
-#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Σφάλμα "
-#: apt-inst/extract.cc:431
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Το αÏ\81Ï\87είο %s/%s ανÏ\84ικαθιÏ\83Ï\84ά αÏ\85Ï\84Ï\8c Ï\83Ï\84ο Ï\80ακÎÏ\84ο %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Î\9cεÏ\84αÏ\86οÏ\81Ï\84Ï\8eθηκαν %sB Ï\83ε %s (%sB/s)\n"
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Unable to stat %s"
-msgstr "Αδύνατη η εύρεση της κατάστασης του %s"
+msgid " [Working]"
+msgstr " [Επεξεργασία]"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Failed to remove %s"
-msgstr "Αποτυχία διαγραφής του %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Αλλαγή Μέσου: Παρακαλώ εισάγετε το δίσκο με ετικέτα\n"
+" '%s'\n"
+"στη συσκευή '%s' και πιέστε enter\n"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Αδύνατη η δημιουργία του %s"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Άγνωστη εγγραφή πακέτου!"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Αποτυχία εύρεσης της κατάστασης του %sinfo"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Χρήση: apt-sortpkgs [παράμετροι] file1 [file2 ...]\n"
+"\n"
+"το apt-sortpkgs είναι ένα απλό εργαλείο για να ταξινομήσετε αρχεία πηγαίου "
+"κώδικα. Η επιλογή\n"
+"-s δείχνει τον τύπο του αρχείου.\n"
+"\n"
+"Παράμετροι:\n"
+" -h Αυτό το κείμενο βοήθειας\n"
+" -s Χρήση του τύπου αρχείου\n"
+" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
+" -o=? Θέσε μια αυθαίρετη παράμετρο,πχ -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr "Î\9fι Ï\86άκελοι info και temp Ï\80Ï\81ÎÏ\80ει να βÏ\81ίÏ\83κονÏ\84αι Ï\83Ï\84ο ίδιο Ï\83Ï\8dÏ\83Ï\84ημα αÏ\81Ï\87είÏ\89ν"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Î\9aακή Ï\80Ï\81οκαθοÏ\81ιÏ\83μÎνη Ï\81Ï\8dθμιÏ\83η!"
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία αλλαγήÏ\82 καÏ\84αλÏ\8cγοÏ\85 Ï\83Ï\84ο Ï\86άκελο διαÏ\87είÏ\81ιÏ\83ηÏ\82 %sinfo"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "ΠιÎÏ\83Ï\84ε enter για Ï\83Ï\85νÎÏ\87εια."
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Εσωτερικό Σφάλμα στην ανάκτηση ενός Ονόματος Πακέτου"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα "
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Ανάγνωση Λίστας Πακέτων"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, "
+"μόνο τα λάθη"
+
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Αποτυχία κατά το άνοιγμα του αρχείου λίστας '%sinfo/%s'.Εάν δε μπορείτε να "
-"επαναφέρετε το αρχείο, τότε αδειάστε το και άμεσα εγκαταστήστε ξανά την ίδια "
-"έκδοση του πακέτου!"
+"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε [I]"
+"nstall ξανά"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Αποτυχία κατά την ανάγνωση του αρχείου λίστας %sinfo/%s"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Î\95Ï\83Ï\89Ï\84εÏ\81ικÏ\8c ΣÏ\86άλμα Ï\83Ï\84η λήÏ\88η ενÏ\8cÏ\82 Î\9aÏ\8cμβοÏ\85"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία καÏ\84ά Ï\84η δημιοÏ\85Ï\81γία διαÏ\83Ï\89ληνÏ\8eÏ\83εÏ\89ν"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Αποτυχία στο άνοιγμα του αρχείου παρακάμψεων %sdiversions"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Αποτυχία κατά την εκτέλεση του gzip "
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Το αÏ\81Ï\87είο Ï\80αÏ\81ακάμÏ\88εÏ\89ν είναι καÏ\84εÏ\83Ï\84Ï\81αμμÎνο"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Î\9aαÏ\84εÏ\83Ï\84Ï\81αμμÎνη αÏ\81Ï\87ειοθήκη"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Εσωτερικό Σφάλμα στην προσθήκη μιας παράκαμψης"
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s"
-#: apt-inst/deb/dpkgdb.cc:379
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Μη έγκυρη υπογραφή αρχειοθήκης"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Η αρχειοθήκη είναι πολύ μικρή"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης"
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Αποτυχία εντοπισμού του στοιχείου hash!"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Αδυναμία εντοπισμού εκτροπής"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Εσωτερικό Σφάλμα στο AddDiversion"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Διπλή προσθήκη εκτροπής %s -> %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Διπλό αρχείο ρυθμίσεων %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Αποτυχία εγγραφής του αρχείου %s"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Αποτυχία στο κλείσιμο του αρχείου %s"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Η διαδρομή %s έχει υπερβολικό μήκος"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Αποσυμπίεση του %s πάνω από μια φορά"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "Ο φάκελος %s έχει εκτραπεί"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Η διαδρομή έχει υπερβολικό μήκος"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Αδύνατη η ανάγνωση του %s"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Αδύνατη η εύρεση της κατάστασης του %s"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Αποτυχία διαγραφής του %s"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Αδύνατη η δημιουργία του %s"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Αποτυχία εύρεσης της κατάστασης του %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr "Οι φάκελοι info και temp πρέπει να βρίσκονται στο ίδιο σύστημα αρχείων"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Ανάγνωση Λιστών Πακέτων"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Αποτυχία αλλαγής καταλόγου στο φάκελο διαχείρισης %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Εσωτερικό Σφάλμα στην ανάκτηση ενός Ονόματος Πακέτου"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Ανάγνωση Λίστας Πακέτων"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Αποτυχία κατά το άνοιγμα του αρχείου λίστας '%sinfo/%s'.Εάν δε μπορείτε να "
+"επαναφέρετε το αρχείο, τότε αδειάστε το και άμεσα εγκαταστήστε ξανά την ίδια "
+"έκδοση του πακέτου!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Αποτυχία κατά την ανάγνωση του αρχείου λίστας %sinfo/%s"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Εσωτερικό Σφάλμα στη λήψη ενός Κόμβου"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Αποτυχία στο άνοιγμα του αρχείου παρακάμψεων %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Το αρχείο παρακάμψεων είναι κατεστραμμένο"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Εσωτερικό Σφάλμα στην προσθήκη μιας παράκαμψης"
+
+#: apt-inst/deb/dpkgdb.cc:379
msgid "The pkg cache must be initialized first"
msgstr "Η cache των πακέτων θα πρέπει να πρώτα να αρχικοποιηθεί"
msgid "Unparsable control file"
msgstr "Μη αναλύσιμο αρχείο control"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Το Ï\80ακÎÏ\84ο %s με ÎκδοÏ\83η %s ÎÏ\87ει ανεÏ\80ίλÏ\85Ï\84εÏ\82 εξαÏ\81Ï\84ήÏ\83ειÏ\82:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Î\91δÏ\8dναÏ\84η η ανάγνÏ\89Ï\83η Ï\84ηÏ\82 βάÏ\83ηÏ\82 δεδομÎνÏ\89ν Ï\84οÏ\85 cdrom %s"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Αδυναμία εντοπισμού του πακέτου %s"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το "
+"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "ΣÏ\85νολικά Î\9fνÏ\8cμαÏ\84α ΠακÎÏ\84Ï\89ν : "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Î\9bάθοÏ\82 CD"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Κανονικά Πακέτα: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Πλήρως Εικονικά Πακέτα: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Ο δίσκος δεν βρέθηκε."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Μονά Εικονικά Πακέτα: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Το αρχείο Δε Βρέθηκε"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Μικτά Εικονικά Πακέτα: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Αποτυχία εύρεσης της κατάστασης"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr "Αγνοούμενα: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "ΣÏ\8dνολο Î\94ιαÏ\86οÏ\81εÏ\84ικÏ\8eν Î\95κδÏ\8cÏ\83εÏ\89ν: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Î\9cη ÎγκÏ\85Ï\81ο URI, Ï\84α Ï\84οÏ\80ικά URI δεν Ï\80Ï\81ÎÏ\80ει να αÏ\81Ï\87ίζοÏ\85ν με //"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Σύνολο Διαφορετικών Εκδόσεων: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Σύνολο Εξαρτήσεων: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Σύνδεση στο σύστημα"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "ΣÏ\8dνολο Ï\83Ï\87ÎÏ\83εÏ\89ν Î\95κδ/Î\91Ï\81Ï\87είÏ\89ν: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Î\91δÏ\8dναÏ\84οÏ\82 ο καθοÏ\81ιÏ\83μÏ\8cÏ\82 Ï\84οÏ\85 ονÏ\8cμαÏ\84οÏ\82 Ï\84οÏ\85 ομÏ\8cÏ\84ιμοÏ\85 (peer)"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Σύνολο Αντιστοιχίσεων Παροχών: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Σύνολο Κοινών Στοιχειοσειρών : "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Συνολικός χώρος Εξαρτήσεων Εκδόσεων: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Σύνολο χώρου ασφαλείας: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::"
+"ProxyLogin είναι άδειο"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Συνολικός Καταμετρημένος Χώρος: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Το αÏ\81Ï\87είο Ï\80ακÎÏ\84οÏ\85 %s δεν είναι ενημεÏ\81Ï\89μÎνο."
+msgid "TYPE failed, server said: %s"
+msgstr "Î\97 ενÏ\84ολή TYPE αÏ\80ÎÏ\84Ï\85Ï\87ε, ο διακομιÏ\83Ï\84ήÏ\82 αÏ\80άνÏ\84ηÏ\83ε: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Î Ï\81ÎÏ\80ει να δÏ\8eÏ\83εÏ\84ε ακÏ\81ιβÏ\8eÏ\82 μία Ï\80αÏ\81άÏ\83Ï\84αÏ\83η"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Î\9bήξη Ï\87Ï\81Ï\8cνοÏ\85 Ï\83Ï\8dνδεÏ\83ηÏ\82"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Î\94ε βÏ\81Îθηκαν Ï\80ακÎÏ\84α"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Î\9f διακομιÏ\83Ï\84ήÏ\82 ÎκλειÏ\83ε Ï\84ην Ï\83Ï\8dνδεÏ\83η"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Î\91Ï\81Ï\87εία ΠακÎÏ\84οÏ\85:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "ΣÏ\86άλμα ανάγνÏ\89Ï\83ηÏ\82"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr ""
-"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Αλλοίωση του πρωτοκόλλου"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Καθηλωμένα Πακέτα:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Σφάλμα εγγραφής"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(δε βρέθηκαν)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Εγκατεστημένα: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(κανένα)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Υποψήφιο: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Καθήλωση Πακέτου: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Πίνακας Έκδοσης:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)"
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Αδύνατη η αποστολή της εντολής PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s για %s %s είναι μεταγλωττισμένο σε %s %s\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Χρήση: apt-cache [επιλογές] εντολή\n"
-" apt-cache [επιλογές] add file1 [file2 ...]\n"
-" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n"
-"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n"
-"από αυτά\n"
-"\n"
-"Εντολές:\n"
-" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n"
-" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n"
-" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n"
-" showsrc - Εμφάνιση των πηγαίων πακέτων\n"
-" stats - Εμφάνιση μερικών βασικών στατιστικών\n"
-" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n"
-" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην έξοδο stdout\n"
-" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n"
-" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n"
-" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n"
-" depends - Εμφάνιση μη επεξεργασμένων εξαρτήσεων ενός πακέτου\n"
-" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n"
-" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n"
-" dotty - Παραγωγή γραφημάτων πακέτων για το GraphVis\n"
-" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n"
-" policy - Εμφάνιση προτεραιοτήτων πηγών\n"
-"\n"
-"Επιλογές:\n"
-" -h Αυτό το κείμενο βοήθειας.\n"
-" -p=? Η cache πακέτων.\n"
-" -s=? Η cache πηγών.\n"
-" -q Απενεργοποίηση του δείκτη προόδου.\n"
-" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n"
-" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
-" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n"
-"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Παρακαλώ δώστε ένα όνομα για τον δίσκο αυτό, όπως 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Αδύνατη η αποδοχή συνδέσεων"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Πρόβλημα κατά το hashing του αρχείου"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας."
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Τα οÏ\81ίÏ\83μαÏ\84α δεν είναι Ï\83ε ζεÏ\8dγη"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Î\9bήξη Ï\87Ï\81Ï\8cνοÏ\85 Ï\85Ï\80οδοÏ\87ήÏ\82 δεδομÎνÏ\89ν"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Χρήση: apt-config [επιλογές] εντολή\n"
-"\n"
-"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων "
-"APT\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Επερώτηση"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Αδύνατη η εκτέλεση"
+
+#: methods/connect.cc:64
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "Το %s δεν είναι ÎγκÏ\85Ï\81ο Ï\80ακÎÏ\84ο DEB."
+msgid "Connecting to %s (%s)"
+msgstr "ΣÏ\8dνδεÏ\83η Ï\83Ï\84ο %s (%s)"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Χρήση: apt-extracttemplates αρχείο1 [αρχείο2 ...]\n"
-"\n"
-"το apt-extracttemplates είναι ένα βοήθημα για να εξάγετε ρυθμίσεις \n"
-"και πρότυπα από πακέτα debian\n"
-"\n"
-"Επιλογές:\n"
-" -h Το παρόν κείμενο βοήθειας\n"
-" -t Καθορισμός προσωρινού καταλόγου\n"
-" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
-" -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Δεν βρέθηκε η έκδοση του debconf. Είναι το debconf εγκατεστημένο;"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Ο κατάλογος επεκτάσεων του πακέτου είναι υπερβολικά μακρύς"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing directory %s"
-msgstr "ΣÏ\86άλμα εÏ\80εξεÏ\81γαÏ\83ίαÏ\82 Ï\84οÏ\85 καÏ\84αλÏ\8cγοÏ\85 %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Î\91δÏ\8dναÏ\84η η Ï\83Ï\8dνδεÏ\83η Ï\83Ï\84ο %s:%s (%s), λήξη Ï\87Ï\81Ï\8cνοÏ\85 Ï\83Ï\8dνδεÏ\83ηÏ\82"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Ο κατάλογος επεκτάσεων των πηγών είναι υπερβολικά μακρύς"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Σφάλμα εγγραφής κεφαλίδων στο αρχείο περιεχομένων"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Σύνδεση στο %s"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:167
#, c-format
-msgid "Error processing contents %s"
-msgstr "ΣÏ\86άλμα εÏ\80εξεÏ\81γαÏ\83ίαÏ\82 Ï\80εÏ\81ιεÏ\87ομÎνÏ\89ν Ï\84οÏ\85 %s"
+msgid "Could not resolve '%s'"
+msgstr "Î\91δÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η Ï\84οÏ\85 '%s'"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Χρήση: apt-ftparchive [επιλογές] εντολή\n"
-"Εντολές: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"Το apt-ftparchive παράγει αρχεία περιεχομένων για τις αρχειοθήκες Debian\n"
-"Υποστηρίζει πολλές παραλλαγές παραγωγής, από απόλυτα αυτοματοποιημένες έως\n"
-"λειτουργικές αντικαταστάσεις για την dpkg-scanpackages και dpkg-scansources\n"
-"\n"
-"Το apt-ftparchive παράγει αρχεία Package από ένα σύνολο αρχείων .debs. Στο\n"
-"αρχείο Package περιέχονται όλα τα πεδία ελέγχου κάθε πακέτου καθώς και\n"
-"το μέγεθος τους και το MD5 hash. Υποστηρίζει την ύπαρξη αρχείου παράκαμψης\n"
-"για τη βεβιασμένη αλλαγή των πεδίων Priority (Προτεραιότητα) και Section\n"
-"(Τομέας).\n"
-"\n"
-"Με τον ίδιο τρόπο, το apt-ftparchive παράγει αρχεία πηγών (Sources) από μια\n"
-"ιεραρχία αρχείων .dsc. Η επιλογή --source-override μπορεί να χρησιμοποιηθεί\n"
-"για παράκαμψη των αρχείων πηγών src.\n"
-"\n"
-"Οι εντολές 'packages' και 'sources' θα πρέπει να εκτελούνται στον βασικό\n"
-"κατάλογο της ιεραρχίας.Το BinaryPath θα πρέπει να δείχνει στον αρχικό\n"
-"κατάλογο που θα ξεκινάει η αναδρομική αναζήτηση και το αρχείο παράκαμψης\n"
-"θα πρέπει να περιέχει τις επιλογές παράκαμψης. Το Pathprefix προστίθεται "
-"στα\n"
-"πεδία όνομάτων αρχείων, αν υπάρχει. Δείτε παράδειγμα χρήσης στην αρχειοθήκη\n"
-"πακέτων του Debian :\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Επιλογές:\n"
-" -h Αυτό το κείμενο βοηθείας\n"
-" --md5 Έλεγχος παραγωγής MD5\n"
-" -s=? αρχείο παράκαμψης πηγών\n"
-" -q Χωρίς έξοδο\n"
-" -d=? Επιλογή προαιρετικής βάσης δεδομένων cache\n"
-" --no-delink Αποσφαλμάτωση του delinking\n"
-" --contents Έλεγχος παραγωγής αρχείου περιεχομένων\n"
-" -c=? Χρήση αυτού του αρχείου ρυθμίσεων\n"
-" -o=? Ορισμός αυθαίρετης επιλογής ρύθμισης"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Αδύνατη η σύνδεση στο %s %s:"
+
+#: methods/gpgv.cc:65
+#, fuzzy, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Αδύνατη η εύρεση του '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "Ε: Λίστα Ορισμάτων από Acquire::gpgv::Options πολύ μεγάλη. Έξοδος."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Δεν ταιριαξε καμία επιλογή"
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr ""
+"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του "
+"αποτυπώματος?!"
-#: ftparchive/apt-ftparchive.cc:832
-#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Λείπουν μερικά αρχεία από την ομάδα πακέτων '%s'"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή."
-#: ftparchive/cachedb.cc:43
-#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Η βάση είναι κατεστραμμένη, το αρχείο μετονομάστηκε σε %s.old"
+#: methods/gpgv.cc:214
+#, fuzzy, c-format
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr " για την επαλήθευση της υπογραφής (είναι εγκατεστημένο το gnupg?)"
-#: ftparchive/cachedb.cc:61
-#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Η βάση δεν είναι ενημερωμένη, γίνεται προσπάθεια να αναβαθμιστεί το %s"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n"
+
+#: methods/gpgv.cc:257
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
+"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν "
+"διαθέσιμο το δημόσιο κλειδί:\n"
-#: ftparchive/cachedb.cc:77
+#: methods/gzip.cc:64
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Το άνοιγμά Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 Ï\84ηÏ\82 βάÏ\83ηÏ\82 %s: %s αÏ\80ÎÏ\84Ï\85Ï\87ε"
+msgid "Couldn't open pipe for %s"
+msgstr "Î\91δÏ\8dναÏ\84ο Ï\84ο άνοιγμα διαÏ\83Ï\89λήνÏ\89Ï\83ηÏ\82 για Ï\84ο %s"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Η αρχειοθήκη δεν περιέχει πεδίο ελέγχου"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Σφάλμα ανάγνωσης από τη διεργασία %s"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Î\91δÏ\8dναÏ\84η η Ï\80Ï\81Ï\8cÏ\83βαÏ\83η Ï\83ε δείκÏ\84η"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Î\91ναμονή εÏ\80ικεÏ\86αλίδÏ\89ν"
-#: ftparchive/writer.cc:76
+#: methods/http.cc:523
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Αδύνατη η ανάγνωση του καταλόγου %s\n"
+msgid "Got a single header line over %u chars"
+msgstr "Λήψη μίας και μόνης γραμμής επικεφαλίδας πάνω από %u χαρακτήρες"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Αδύνατη η εύρεση της κατάστασης του %s\n"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Ελαττωματική γραμμή επικεφαλίδας"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Σφάλματα στο αρχείο"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Άγνωστη μορφή ημερομηνίας"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Η επιλογή απέτυχε"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Λήξη χρόνου σύνδεσης"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Σφάλμα στην εγγραφή στο αρχείο"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Σφάλμα στην εγγραφή στο αρχείο"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Η σύνδεση απέτυχε"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Εσωτερικό Σφάλμα"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Αδύνατο η απεικόνιση mmap ενός άδειου αρχείου"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Î\91δÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η Ï\84οÏ\85 %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Î\91δÏ\8dναÏ\84η η αÏ\80εικÏ\8cνιÏ\83η μÎÏ\83Ï\89 mmap %lu bytes"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Αποτυχία ανεύρεσης"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Η επιλογή %s δε βρέθηκε"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανοίγμαÏ\84οÏ\82 Ï\84οÏ\85 %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Î\9cη αναγνÏ\89Ï\81ιÏ\83μÎνοÏ\82 Ï\84Ï\8dÏ\80οÏ\82 Ï\83Ï\8dνÏ\84μηÏ\83ηÏ\82: '%c'"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "Î\91Ï\80οÏ\83Ï\8dνδεÏ\83η %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr "Î\86νοιγμα Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 Ï\81Ï\85θμίÏ\83εÏ\89ν %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Η γραμμή %d έχει υπερβολικό μήκος (μέγιστο %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανάγνÏ\89Ï\83ηÏ\82 Ï\84οÏ\85 %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "ΣÏ\85νÏ\84ακÏ\84ικÏ\8c Ï\83Ï\86άλμα %s:%u: Το block αÏ\81Ï\87ίζει Ï\87Ï\89Ï\81ίÏ\82 Ï\8cνομα."
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία αÏ\80οÏ\83Ï\8dνδεÏ\83ηÏ\82 Ï\84οÏ\85 %s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "ΣÏ\85νÏ\84ακÏ\84ικÏ\8c Ï\83Ï\86άλμα %s:%u: Î\9bάθοÏ\82 μοÏ\81Ï\86ή Î\95Ï\84ικÎÏ\84αÏ\82 (Tag)"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr " Αποτυχία σύνδεσης του %s με το %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Αποσύνδεση ορίου του %sB hit.\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Η αρχειοθήκη δεν περιέχει πεδίο πακέτων"
+#: apt-pkg/contrib/configuration.cc:694
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s συντηρητής είναι ο %s όχι ο %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'"
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου"
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Σφάλμα!"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Εσωτερικό Σφάλμα, αδυναμία εντοπισμού του μέλους %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Ολοκληρώθηκε"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realoc - Αδυναμία εκχώρησης μνήμης"
+#: apt-pkg/contrib/cmndline.cc:77
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Η επιλογή γραμμής εντολών '%c' [από %s] δεν είναι γνωστή."
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unable to open %s"
-msgstr "Î\91δÏ\8dναÏ\84ο Ï\84ο άνοιγμα Ï\84οÏ\85 %s"
+msgid "Command line option %s is not understood"
+msgstr "Î\97 εÏ\80ιλογή γÏ\81αμμήÏ\82 ενÏ\84ολÏ\8eν %s δεν είναι καÏ\84ανοηÏ\84ή"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Î\9aακογÏ\81αμμÎνη Ï\80αÏ\81ακαμÏ\80Ï\84ήÏ\81ια %s γÏ\81αμμή %lu #1"
+msgid "Command line option %s is not boolean"
+msgstr "Î\97 εÏ\80ιλογή γÏ\81αμμήÏ\82 ενÏ\84ολÏ\8eν %s δεν είναι boolean"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Κακογραμμένη παρακαμπτήρια %s γραμμή %lu #2"
+msgid "Option %s requires an argument."
+msgstr "Η επιλογή %s απαιτεί ένα όρισμα."
+
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>."
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Î\9aακογÏ\81αμμÎνη Ï\80αÏ\81ακαμÏ\80Ï\84ήÏ\81ια %s γÏ\81αμμή %lu #3"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Î\95Ï\80ιλογή %s: αÏ\80αιÏ\84είÏ\84αι ÎναÏ\82 ακÎÏ\81αιοÏ\82 αÏ\81ιθμÏ\8cÏ\82 Ï\89Ï\82 Ï\8cÏ\81ιÏ\83μα, Ï\8cÏ\87ι '%s'"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ανάγνÏ\89Ï\83ηÏ\82 Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85 Ï\80αÏ\81άκαμÏ\88ηÏ\82 %s"
+msgid "Option '%s' is too long"
+msgstr "Î\97 εÏ\80ιλογή '%s' ÎÏ\87ει Ï\85Ï\80εÏ\81βολικÏ\8c μήκοÏ\82"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Î\86γνÏ\89Ï\83Ï\84οÏ\82 Î\91λγÏ\8cÏ\81ιθμοÏ\82 ΣÏ\85μÏ\80ίεÏ\83ηÏ\82 '%s'"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Î\97 Ï\84ιμή %s δεν είναι καÏ\84ανοηÏ\84ή, δοκιμάÏ\83Ï\84ε Ï\83Ï\89Ï\83Ï\84Ï\8c (true) ή λάθοÏ\82 (false)."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Η συμπιεσμένη έξοδος του %s χρειάζεται καθορισμό συμπίεσης"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Αποτυχία δημιουργίας του ΑΡΧΕΙΟΥ"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Αποτυχία αγκίστρωσης"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Συμπίεση απογόνου"
+msgid "Invalid operation %s"
+msgstr "Μη έγκυρη λειτουργία %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Εσωτερικό Σφάλμα, Αποτυχία δημιουργίας του %s"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία"
-
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Αποτυχία εκτέλεσης του συμπιεστή "
-
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "αποσυμπιεστής"
+msgid "Unable to stat the mount point %s"
+msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "απέτυχε η Ε/Ε στην υποδιεργασία/αρχείο"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Αδύνατη η αλλαγή σε %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Αποτυχία ανάγνωσης κατά τον υπολογισμό MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Πρόβλημα κατά την αποσύνδεση του %s"
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "σφάλμα μεταγλωτισμου - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος "
+"%s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Αδύνατο το κλείδωμα %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "αλλά Ï\84ο %s είναι εγκαÏ\84εÏ\83Ï\84ημÎνο"
+msgid "Waited for %s but it wasn't there"
+msgstr "Î\91ναμονή Ï\84οÏ\85 %s, αλλά δε βÏ\81ιÏ\83κÏ\8cÏ\84αν εκεί"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "αλλά Ï\84ο %s Ï\80Ï\81Ï\8cκειÏ\84αι να εγκαÏ\84αÏ\83Ï\84αθεί"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Î\97 Ï\85Ï\80οδιεÏ\81γαÏ\83ία %s Îλαβε Îνα Ï\83Ï\86άλμα καÏ\84αμεÏ\81ιÏ\83μοÏ\8d (segfault)"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "αλλά δεν είναι εγκαταστάσημο"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "αλλά είναι ένα εικονικό πακέτο"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "αλλά δεν είναι εγκατεστημένο"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Αδύνατο το άνοιγμα του αρχείου %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "αλλά δεν πρόκειται να εγκατασταθεί"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " η"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Τα ακÏ\8cλοÏ\85θα Î\9dÎ\95Î\91 Ï\80ακÎÏ\84α θα εγκαÏ\84αÏ\83Ï\84αθοÏ\8dν:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ο κλείÏ\83ιμο Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα Î\91ΦÎ\91Î\99ΡÎ\95Î\98Î\9fÎ¥Î\9d:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ην διαγÏ\81αÏ\86ή Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα μείνοÏ\85ν Ï\89Ï\82 ÎÏ\87οÏ\85ν:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Î Ï\81Ï\8cβλημα καÏ\84ά Ï\84ον Ï\83Ï\85γÏ\87Ï\81ονιÏ\83μÏ\8c Ï\84οÏ\85 αÏ\81Ï\87είοÏ\85"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα αναβαθμιÏ\83Ï\84οÏ\8dν:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Î\86δειο cache Ï\80ακÎÏ\84Ï\89ν"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α θα ΥΠÎ\9fÎ\92Î\91Î\98Î\9cÎ\99ΣΤÎ\9fÎ¥Î\9d:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Το αÏ\81Ï\87είο cache Ï\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν είναι καÏ\84εÏ\83Ï\84Ï\81αμμÎνο"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Τα ακÏ\8cλοÏ\85θα κÏ\81αÏ\84ημÎνα Ï\80ακÎÏ\84α θα αλλαÏ\87θοÏ\8dν:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Το αÏ\81Ï\87είο cache Ï\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν είναι αÏ\83Ï\8dμβαÏ\84ηÏ\82 ÎκδοÏ\83ηÏ\82"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (λόγω του %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n"
-"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Εξαρτάται από"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu επανεγκατεστημένα,"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "ΠροΕξαρτάται από"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu υποβαθμισμένα, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Προτείνει"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Συστήνει"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Ασύμβατο με"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Î\94ιÏ\8cÏ\81θÏ\89Ï\83η εξαÏ\81Ï\84ήÏ\83εÏ\89ν..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Î\91νÏ\84ικαθιÏ\83Ï\84ά"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " απέτυχε."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Απαρχαιώνει"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Αδύνατη η διόρθωση των εξαρτήσεων"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "σημαντικό"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Ετοιμο"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "απαιτούμενο"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα "
-"προβλήματα."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "καθιερωμένο"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "προαιρετικό"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ΠΡÎ\9fÎ\95Î\99Î\94Î\9fÎ Î\9fÎ\99Î\97ΣÎ\97: Τα ακÏ\8cλοÏ\85θα Ï\80ακÎÏ\84α δεν εξακÏ\81ιβÏ\8eθηκαν!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "εÏ\80ιÏ\80λÎον"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "ΠαÏ\81άκαμÏ\88η Ï\80Ï\81οειδοÏ\80οίηÏ\83ηÏ\82 Ï\84αÏ\85Ï\84οÏ\80οίηÏ\83ηÏ\82.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Î\9aαÏ\84αÏ\83κεÏ\85ή Î\94ÎνδÏ\81οÏ\85 Î\95ξαÏ\81Ï\84ήÏ\83εÏ\89ν"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση [ν/Ο]; "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Υποψήφιες Εκδόσεις"
+
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Παραγωγή Εξαρτήσεων"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Αποτυχία ανοίγματος του %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Αποτυχία εγγραφής του αρχείου %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr ""
-"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages."
-"debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB/%sB αÏ\80Ï\8c αÏ\81Ï\87εία.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %lu Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Î\91νάλÏ\85Ï\83η URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "ΧÏ\81ειάζεÏ\84αι να μεÏ\84αÏ\86οÏ\81Ï\84Ï\89θοÏ\8dν %sB αÏ\80Ï\8c αÏ\81Ï\87εία.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %lu Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Î\91Ï\80Ï\8cλÏ\85Ï\84ο dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Î\9cεÏ\84ά Ï\84ην αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83η θα Ï\87Ï\81ηÏ\83ιμοÏ\80οιηθοÏ\8dν %sB Ï\87Ï\8eÏ\81οÏ\85 αÏ\80Ï\8c Ï\84ο δίÏ\83κο.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %lu Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Î\91νάλÏ\85Ï\83η dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Î\9cεÏ\84ά Ï\84ην αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83η θα ελεÏ\85θεÏ\81Ï\89θοÏ\8dν %sB Ï\87Ï\8eÏ\81οÏ\85 αÏ\80Ï\8c Ï\84ο δίÏ\83κο.\n"
+msgid "Opening %s"
+msgstr "Î\86νοιγμα Ï\84οÏ\85 %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Î\94εν μÏ\80Ï\8cÏ\81εÏ\83α να Ï\80Ï\81οÏ\83διοÏ\81ίÏ\83Ï\89 Ï\84ον ελεÏ\8dθεÏ\81ο Ï\87Ï\8eÏ\81ο Ï\83Ï\84ο %s"
+msgid "Line %u too long in source list %s."
+msgstr "Î\97 γÏ\81αμμή %u ÎÏ\87ει Ï\85Ï\80εÏ\81βολικÏ\8c μήκοÏ\82 Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Î\94εν διαθÎÏ\84εÏ\84ε αÏ\81κεÏ\84Ï\8c ελεÏ\8dθεÏ\81ο Ï\87Ï\8eÏ\81ο Ï\83Ï\84ο %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Î\9bάθοÏ\82 μοÏ\81Ï\86ή Ï\84ηÏ\82 γÏ\81αμμήÏ\82 %u Ï\83Ï\84η λίÏ\83Ï\84α Ï\80ηγÏ\8eν %s (Ï\84Ï\8dÏ\80οÏ\82)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος "
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ναι, κανε ότι λέω!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (id κατασκευαστή)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n"
-"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Εγκατάλειψη."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Θέλετε να συνεχίσετε [Ν/ο]; "
+"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού "
+"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν "
+"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την "
+"επιλογή APT::Force-LoopBreak option."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Αποτυχία ανάκτησης του %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση"
-
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο"
+msgid "Index file type '%s' is not supported"
+msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:247
+#, c-format
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Î\91δÏ\8dναÏ\84η η μεÏ\84αÏ\86Ï\8cÏ\81Ï\84Ï\89Ï\83η μεÏ\81ικÏ\8eν αÏ\81Ï\87είÏ\89ν, ίÏ\83Ï\89Ï\82 αν δοκιμάζαÏ\84ε με apt-get update "
-"ή Ï\84ο --fix-missing;"
+"Το Ï\80ακÎÏ\84ο '%s' Ï\87Ï\81ειάζεÏ\84αι να εÏ\80ανεγκαÏ\84αÏ\83Ï\84αθεί, αλλά είναι αδÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η "
+"κάÏ\80οιαÏ\82 καÏ\84άλληληÏ\82 αÏ\81Ï\87είοθήκηÏ\82."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα"
+"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως "
+"προκλήθηκε από κρατούμενα πακέτα."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Î\91δÏ\8dναÏ\84η η εÏ\80ίλÏ\85Ï\83η Ï\84Ï\89ν Ï\87αμÎνÏ\89ν Ï\80ακÎÏ\84Ï\89ν."
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Î\91δÏ\8dναÏ\84η η διÏ\8cÏ\81θÏ\89Ï\83η Ï\80Ï\81οβλημάÏ\84Ï\89ν, ÎÏ\87εÏ\84ε κÏ\81αÏ\84οÏ\8dμενα ελαÏ\84Ï\84Ï\89μαÏ\84ικά Ï\80ακÎÏ\84α."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Εγκατάλειψη της εγκατάστασης."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Ο φάκελος λιστών %spartial αγνοείται."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n"
+msgid "Archive directory %spartial is missing."
+msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται."
+
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)"
+
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Ανάγνωση Λίστας Πακέτων"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "The method driver %s could not be found."
+msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί."
+
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Η μέθοδος %s δεν εκκινήθηκε σωστά"
+
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n"
+"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε "
+"enter."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Το Ï\80ακÎÏ\84ο %s είναι εικονικÏ\8c και Ï\80αÏ\81ÎÏ\87εÏ\84αι αÏ\80Ï\8c Ï\84α:\n"
+msgid "Unable to stat %s."
+msgstr "Î\91δÏ\8dναÏ\84η η εÏ\8dÏ\81εÏ\83η Ï\84ηÏ\82 καÏ\84άÏ\83Ï\84αÏ\83ηÏ\82 Ï\84οÏ\85 %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Εγκατεστημένα]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Θα πρέπει επακριβώς να επιλέξετε ένα για εγκατάσταση."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
msgstr ""
-"Το πακέτο %s δεν είναι διαθέσιμο, αλλά υπάρχει αναφορά για αυτό από άλλο "
-"πακέτο.\n"
-"Αυτό σημαίνει ότι το πακέτο αυτό λείπει, είναι παλαιωμένο, ή είναι διαθέσιμο "
-"από άλλη πηγή\n"
+"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "ΠάÏ\81αÏ\85Ï\84α Ï\84ο ακÏ\8cλοÏ\85θο Ï\80ακÎÏ\84ο Ï\84ο ανÏ\84ικαθιÏ\83Ï\84ά:"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Î\97 cache ÎÏ\87ει αÏ\83Ï\8dμβαÏ\84ο Ï\83Ï\8dÏ\83Ï\84ημα αÏ\80Ï\8cδοÏ\83ηÏ\82 ÎκδοÏ\83ηÏ\82"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Το πακέτο %s δεν είναι υποψήφιο για εγκατάσταση"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewPackage)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή "
-"του\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "το %s είναι ήδη η τελευταία έκδοση.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Î\97 ÎκδοÏ\83η %s για Ï\84ο%s δεν βÏ\81Îθηκε"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Î Ï\81οÎκÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Î\97 ÎκδοÏ\83η %s για Ï\84ο %s δεν βÏ\81Îθηκε"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Î Ï\81οÎκÏ\85Ï\88ε Ï\83Ï\86άλμα καÏ\84ά Ï\84ην εÏ\80εξεÏ\81γαÏ\83ία Ï\84οÏ\85 %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Επιλέχθηκε η έκδοση %s (%s) για το%s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Η εντολή update δεν παίρνει ορίσματα"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Αδύνατο το κλείδωμα του καταλόγου"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Î\9cεÏ\81ικά αÏ\81Ï\87εία δεν μεÏ\84αÏ\86οÏ\81Ï\84Ï\8eθηκαν, αγνοήθηκαν ή Ï\87Ï\81ηÏ\83ιμοÏ\80οιήθηκαν Ï\80αλαιÏ\8cÏ\84εÏ\81α "
-"στη θέση τους."
+"Î\95κÏ\80ληκÏ\84ικÏ\8c, Ï\85Ï\80εÏ\81βήκαÏ\84ε Ï\84ον αÏ\81ιθμÏ\8c Ï\84Ï\89ν ονομάÏ\84Ï\89ν Ï\80ακÎÏ\84Ï\89ν Ï\80οÏ\85 Ï\85Ï\80οÏ\83Ï\84ηÏ\81ίζει Ï\84ο "
+"APT."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο "
-"υλικό"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Εσωτερικό Σφάλμα, Η διαδικασία αναβάθμισης χάλασε"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Αδύνατη η εύρεση του πακέτου %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Συλλογή Παροχών Αρχείου"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Αδύνατη η εύρεση του πακέτου %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "ΣημείÏ\89Ï\83η, εÏ\80ιλÎÏ\87Ï\84ηκε Ï\84ο %s Ï\83Ï\84η θÎÏ\83η Ï\84οÏ\85 '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "αÏ\80ÎÏ\84Ï\85Ï\87ε η μεÏ\84ονομαÏ\83ία, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "αλλά το %s πρόκειται να εγκατασταθεί"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Ανόμοιο MD5Sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Aν τρέξετε 'apt-get f install' ίσως να διορθώσετε αυτά τα προβλήματα:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Ανόμοιο MD5Sum"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε "
-"πακέτο (ή καθορίστε μια λύση)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n"
-"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n"
-"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n"
-"μετακινηθεί από τα εισερχόμενα."
+"Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι "
+"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"Εφόσον ζητήσατε μια και μόνη λειτουργία, είναι πολύ πιθανόν ότι\n"
-"το πακέτο αυτό δεν είναι εγκαταστάσιμο και θα πρέπει να κάνετε μια\n"
-"αναφορά σφάλματος για αυτό το πακέτο."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Χαλασμένα πακέτα"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Προτεινόμενα πακέτα:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Συνιστώμενα πακέτα:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Υπολογισμός της αναβάθμισης... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Ετοιμο"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr ""
-"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο "
-"υλικό"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Î\98α Ï\80Ï\81ÎÏ\80ει να καθοÏ\81ίÏ\83εÏ\84ε Ï\84οÏ\85λάÏ\87ιÏ\83Ï\84ον Îνα Ï\80ακÎÏ\84ο για να μεÏ\84αÏ\86οÏ\81Ï\84Ï\8eÏ\83εÏ\84ε Ï\84ον "
-"κωδικάτου"
+"Î\91δÏ\8dναÏ\84οÏ\82 ο ενÏ\84οÏ\80ιÏ\83μÏ\8cÏ\82 ενÏ\8cÏ\82 αÏ\81Ï\87είοÏ\85 για Ï\84ο Ï\80ακÎÏ\84ο %s. Î\91Ï\85Ï\84Ï\8c ίÏ\83Ï\89Ï\82 Ï\83ημαίνει Ï\8cÏ\84ι "
+"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο "
+"πακέτο %s."
-#: cmdline/apt-get.cc:2167
-#, fuzzy, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Ανόμοιο μέγεθος"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Î\94εν διαθÎÏ\84εÏ\84ε αÏ\81κεÏ\84Ï\8c ελεÏ\8dθεÏ\81ο Ï\87Ï\8eÏ\81ο Ï\83Ï\84ο %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Î\97 εγγÏ\81αÏ\86ή καÏ\84αÏ\83κεÏ\85αÏ\83Ï\84ή %s δεν Ï\80εÏ\81ιÎÏ\87ει Ï\84αÏ\85Ï\84Ï\8cÏ\84ηÏ\84α"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Χρησιμοποιείται το σημείο προσάρτησης %s\n"
+"Προσαρτάται το CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Αναγνώριση..."
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Î\9cεÏ\84αÏ\86Ï\8cÏ\81Ï\84Ï\89Ï\83η Î\9aÏ\89δικα %s\n"
+msgid "Stored label: %s\n"
+msgstr "Î\91Ï\80οθήκεÏ\85Ï\83η Î\95Ï\84ικÎÏ\84αÏ\82: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Αποπροσάρτηση του CD-ROM..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "ΠαÏ\81άκαμÏ\88η Ï\84ηÏ\82 αÏ\80οÏ\83Ï\85μÏ\80ίεÏ\83ηÏ\82 ήδη μεÏ\84αÏ\86οÏ\81Ï\84Ï\89μÎνοÏ\85 κÏ\8eδικα Ï\83Ï\84ο %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "ΧÏ\81ηÏ\83ιμοÏ\80οιείÏ\84αι Ï\84ο Ï\83ημείο Ï\80Ï\81οÏ\83άÏ\81Ï\84ηÏ\83ηÏ\82 %s\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Αποπροσάρτηση του CD-ROM\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Αναμονή για δίσκο...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Î\91Ï\80ÎÏ\84Ï\85Ï\87ε η ενÏ\84ολή Ï\87Ï\84ιÏ\83ίμαÏ\84οÏ\82 %s.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Î Ï\81οÏ\83άÏ\81Ï\84ηÏ\83η Ï\84οÏ\85 CD-ROM...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Î\97 αÏ\80ογονική διεÏ\81γαÏ\83ία αÏ\80ÎÏ\84Ï\85Ï\87ε"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "ΣάÏ\81Ï\89Ï\83η Ï\84οÏ\85 δίÏ\83κοÏ\85 για Ï\80εÏ\81ιεÏ\87Ï\8cμενα...\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Βρέθηκαν %i κατάλογοι πακέτων, %i κατάλογοι πηγαίων και %i υπογραφές\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Αποθήκευση Ετικέτας: %s \n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε"
+"Ο δίσκος αυτός ονομάζεται: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Αντιγραφή λιστών πακέτων..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Eγγραφή νέας λίστας πηγών\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες "
-"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις έκδοσης"
+msgid "Wrote %i records.\n"
+msgstr "Εγιναν %i εγγραφές.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s "
-"είναι νεώτερο"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Î\91Ï\80οÏ\84Ï\85Ï\87ία ικανοÏ\80οίηÏ\83ηÏ\82 %s εξάÏ\81Ï\84ηÏ\83ηÏ\82 για Ï\84ο %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Î\95γιναν %i εγγÏ\81αÏ\86ÎÏ\82 με %i αÏ\83Ï\8dμβαÏ\84α αÏ\81Ï\87εία.\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Î\9fι εξαÏ\81Ï\84ήÏ\83ειÏ\82 Ï\87Ï\84ιÏ\83ίμαÏ\84οÏ\82 για Ï\84ο %s δεν ικανοÏ\80οιοÏ\8dνÏ\84αι."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Î\95γιναν %i εγγÏ\81αÏ\86ÎÏ\82 με %i αÏ\80Ï\8eνÏ\84α αÏ\81Ï\87εία και %i αÏ\83Ï\8dμβαÏ\84α αÏ\81Ï\87εία\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Ο φάκελος λιστών %spartial αγνοείται."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Υποστηριζόμενοι Οδηγοί:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "Προετοιμασία του %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Χρήση: apt-get [παράμετροι] εντολή\n"
-" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n"
-"\n"
-"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n"
-"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n"
-"και η install.\n"
-"\n"
-"Εντολές:\n"
-" update - Ανάκτηση νέων καταλόγων πακέτων\n"
-" upgrade - Διενέργεια αναβάθμισης\n"
-" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n"
-" remove - Αφαίρεση πακέτων\n"
-" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n"
-" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n"
-" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n"
-" dselect-upgrade - Τήρηση των επιλογών του dselect\n"
-" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n"
-" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n"
-" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n"
-"\n"
-"Παράμετροι:\n"
-" -h Αυτό το βοηθητικό κείμενο.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n"
-" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n"
-" -s Χωρίς ενέργεια. Perform ordering simulation\n"
-" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n"
-" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n"
-" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n"
-" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n"
-" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n"
-" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n"
-" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n"
-" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n"
-"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n"
-"για περισσότερες πληροφορίες και επιλογές.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Ξεπακετάρισμα του %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Hit "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Προετοιμασία ρύθμισης του %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Φέρε:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Ρύθμιση του %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Αγνόησε "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Σφάλμα επεξεργασίας του καταλόγου %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Σφάλμα "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Εγκατέστησα το %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Î\9cεÏ\84αÏ\86οÏ\81Ï\84Ï\8eθηκαν %sB Ï\83ε %s (%sB/s)\n"
+msgid "Preparing for removal of %s"
+msgstr "Î Ï\81οεÏ\84οιμαÏ\83ία για Ï\84ην αÏ\86αίÏ\81εÏ\83η Ï\84οÏ\85 %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [Επεξεργασία]"
+msgid "Removing %s"
+msgstr "Αφαιρώ το %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, 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"
+msgid "Removed %s"
+msgstr "Αφαίρεσα το %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Άγνωστη εγγραφή πακέτου!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, fuzzy, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Προετοιμασία ρύθμισης του %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Αποτυχία διαγραφής του %s"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Χρήση: apt-sortpkgs [παράμετροι] file1 [file2 ...]\n"
-"\n"
-"το apt-sortpkgs είναι ένα απλό εργαλείο για να ταξινομήσετε αρχεία πηγαίου "
-"κώδικα. Η επιλογή\n"
-"-s δείχνει τον τύπο του αρχείου.\n"
-"\n"
-"Παράμετροι:\n"
-" -h Αυτό το κείμενο βοήθειας\n"
-" -s Χρήση του τύπου αρχείου\n"
-" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n"
-" -o=? Θέσε μια αυθαίρετη παράμετρο,πχ -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Κακή προκαθορισμένη ρύθμιση!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Αδύνατο το άνοιγμα του αρχείου %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Πιέστε enter για συνέχεια."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Η σύνδεση έκλεισε πρόωρα"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα "
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Η γραμμή %d έχει υπερβολικό μήκος (μέγιστο %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, "
-"μόνο τα λάθη"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε [I]"
-"nstall ξανά"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Αποθήκευση Ετικέτας: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Βρέθηκαν %i κατάλογοι πακέτων, %i κατάλογοι πηγαίων και %i υπογραφές\n"
#, fuzzy
#~ msgid "openpty failed\n"
# English messages for the apt suite.
# Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others.
# Michael Piefel <piefel@informatik.hu-berlin.de>, 2002.
-#
-#
+#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.6.46.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-12 11:07+0100\n"
"Last-Translator: Neil Williams <linux@codehelp.co.uk>\n"
"Language-Team: en_GB <en_gb@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Unable to read the cdrom database %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Wrong CD-ROM"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Package %s version %s has an unmet dep:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Unable to unmount the CD-ROM in %s, it may still be in use."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk not found."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "File not found"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Failed to stat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Failed to set modification time"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Invalid URI, local URIS must not start with //"
+msgid "Unable to locate package %s"
+msgstr "Unable to locate package %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Logging in"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Total package names : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Unable to determine the peer name"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normal packages: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Unable to determine the local name"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pure virtual packages: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "The server refused the connection and said: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Single virtual packages: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER failed, server said: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Mixed virtual packages: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS failed, server said: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Missing: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Total distinct versions: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Login script command ‘%s’ failed, server said: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Total distinct versions: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE failed, server said: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Total dependencies: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Connection timeout"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Total ver/file relations: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Server closed the connection"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Total ver/file relations: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Read error"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Total Provides mappings: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "A response overflowed the buffer."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Total globbed strings: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protocol corruption"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total dependency version space: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Write error"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total slack space: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "could not create a socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total space accounted for: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Could not connect data socket, connection timed out"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Package file %s is out of sync."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Failed"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "You must give exactly one pattern"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Could not connect, passive socket."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "No packages found"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo was unable to get a listening socket"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Package files:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Could not bind a socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cache is out of sync, can't x-ref a package file"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Could not listen on the socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Could not determine the name of the socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pinned packages:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Unable to send PORT command"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(not found)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Unknown address family %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installed: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT failed, server said: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(none)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Data socket connect timed out"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidate: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Unable to accept connection"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Package pin: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem hashing file"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Version table:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Unable to fetch file, server said ‘%s’"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Data socket timed out"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Data transfer failed, server said ‘%s’"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s %s compiled on %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Query"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Unable to invoke"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Connecting to %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Could not create a socket for %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Cannot initiate the connection to %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Could not connect to %s:%s (%s), connection timed out"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Could not connect to %s:%s (%s)."
-
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Connecting to %s"
-
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Could not resolve ‘%s’"
-
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Temporary failure resolving ‘%s’"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Something wicked happened resolving ‘%s:%s’ (%i)"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Please provide a name for this Disc, such as ‘Debian 2.1r1 Disk 1’"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Unable to connect to %s %s:"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Please insert a Disc in the drive and press enter"
-#: methods/gpgv.cc:65
-#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Couldn't access keyring: '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Repeat this process for the rest of the CDs in your set."
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Arguments not in pairs"
-#: methods/gpgv.cc:204
+#: cmdline/apt-config.cc:76
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "At least one invalid signature was encountered."
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "Could not execute '%s' to verify signature (is gnupg installed?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Unknown error executing gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "The following signatures were invalid:\n"
+msgid "%s not a valid DEB package."
+msgstr "%s not a valid DEB package."
-#: methods/gpgv.cc:256
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Failed to stat %s"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#: methods/gzip.cc:64
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Couldn't open pipe for %s"
+msgid "Unable to write to %s"
+msgstr "Unable to write to %s"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Read error from %s process"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Cannot get debconf version. Is debconf installed?"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Waiting for headers"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Package extension list is too long"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Got a single header line over %u chars"
+msgid "Error processing directory %s"
+msgstr "Error processing directory %s"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Bad header line"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Source extension list is too long"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "The HTTP server sent an invalid reply header"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Error writing header to contents file"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "The HTTP server sent an invalid Content-Length header"
+#: ftparchive/apt-ftparchive.cc:398
+#, c-format
+msgid "Error processing contents %s"
+msgstr "Error processing contents %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "This HTTP server has broken range support"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "No selections matched"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Unknown date format"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Some files are missing in the package file group ‘%s’"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Select failed"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB was corrupted, file renamed to %s.old"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Connection timed out"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB is old, attempting to upgrade %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Error writing to output file"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Error writing to file"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Unable to open DB file %s: %s"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Error writing to the file"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Failed to stat %s"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error reading from server. Remote end closed connection"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archive has no control record"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Error reading from server"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Unable to get a cursor"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Bad header data"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Unable to read directory %s\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Connection failed"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Unable to stat %s\n"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Internal error"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Cannot mmap an empty file"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/mmap.cc:85
-#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Couldn't make mmap of %lu bytes"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Errors apply to file "
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Selection %s not found"
-msgstr "Selection %s not found"
+msgid "Failed to resolve %s"
+msgstr "Could not resolve ‘%s’"
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Unrecognized type abbreviation: ‘%c’"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Tree walking failed"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Opening configuration file %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Line %d too long (max %d)"
+msgid "Failed to open %s"
+msgstr "Failed to open %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntax error %s:%u: Block starts with no name."
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntax error %s:%u: Malformed tag"
+msgid "Failed to readlink %s"
+msgstr "Failed to readlink %s"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntax error %s:%u: Extra junk after value"
+msgid "Failed to unlink %s"
+msgstr "Failed to unlink %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Syntax error %s:%u: Directives can only be done at the top level"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Failed to link %s to %s"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntax error %s:%u: Too many nested includes"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink limit of %sB hit.\n"
+
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archive had no package field"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntax error %s:%u: Included from here"
+msgid " %s has no override entry\n"
+msgstr " %s has no override entry\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntax error %s:%u: Unsupported directive ‘%s’"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s maintainer is %s not %s\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntax error %s:%u: Extra junk at end of file"
+msgid " %s has no source override entry\n"
+msgstr " %s has no source override entry\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Unable to read %s"
-msgstr "Unable to read %s"
+msgid " %s has no binary override entry either\n"
+msgstr " %s has no binary override entry either\n"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/contents.cc:321
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Error!"
+msgid "Internal error, could not locate member %s"
+msgstr "Internal error, could not locate member %s"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Done"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Failed to allocate memory"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Command line option ‘%c’ [from %s] is not known."
+msgid "Unable to open %s"
+msgstr "Unable to open %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Command line option %s is not understood"
+msgid "Malformed override %s line %lu #1"
+msgstr "Malformed override %s line %lu #1"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Command line option %s is not boolean"
+msgid "Malformed override %s line %lu #2"
+msgstr "Malformed override %s line %lu #2"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Option %s requires an argument."
+msgid "Malformed override %s line %lu #3"
+msgstr "Malformed override %s line %lu #3"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Option %s: Configuration item specification must have an =<val>."
+msgid "Failed to read the override file %s"
+msgstr "Failed to read the override file %s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Option %s requires an integer argument, not ‘%s’"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Unknown compression algorithm ‘%s’"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Option ‘%s’ is too long"
+msgid "Compressed output %s needs a compression set"
+msgstr "Compressed output %s needs a compression set"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Sense %s is not understood, try true or false."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Failed to create IPC pipe to subprocess"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Invalid operation %s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Failed to create FILE*"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Unable to stat the mount point %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Failed to fork"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Compress child"
+
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "Unable to change to %s"
+msgid "Internal error, failed to create %s"
+msgstr "Internal error, failed to create %s"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Failed to stat the cdrom"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Failed to create subprocess IPC"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Not using locking for read only lock file %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Failed to exec compressor "
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Could not open lock file %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompressor"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Not using locking for nfs mounted lock file %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO to subprocess/file failed"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Could not get lock %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Failed to read while computing MD5"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Waited for %s but it wasn't there"
+msgid "Problem unlinking %s"
+msgstr "Problem unlinking %s"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Sub-process %s received a segmentation fault."
+msgid "Failed to rename %s to %s"
+msgstr "Failed to rename %s to %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Sub-process %s returned an error code (%u)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Sub-process %s exited unexpectedly"
+msgid "Regex compilation error - %s"
+msgstr "Regex compilation error - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Could not open file %s"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "The following packages have unmet dependencies."
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "read, still have %lu to read but none left"
+msgid "but %s is installed"
+msgstr "but %s is installed"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "write, still have %lu to write but couldn't"
+msgid "but %s is to be installed"
+msgstr "but %s is to be installed"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem closing the file"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "but it is not installable"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problem unlinking the file"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "but it is a virtual package"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem syncing the file"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "but it is not installed"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Empty package cache"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "but it is not going to be installed"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "The package cache file is corrupted"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " or"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "The package cache file is an incompatible version"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "The following NEW packages will be installed"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "This APT does not support the Versioning System ‘%s’"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "The following packages will be REMOVED"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "The package cache was built for a different architecture"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "The following packages have been kept back:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depends"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "The following packages will be upgraded:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "PreDepends"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "The following packages will be DOWNGRADED:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Suggests"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "The following held packages will be changed:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recommends"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (due to %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Conflicts"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Replaces"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu upgraded, %lu newly installed, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Obsoletes"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalled, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu downgraded, "
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "important"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu to remove and %lu not upgraded.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "required"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu not fully installed or removed.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Correcting dependencies..."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "optional"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " failed."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Unable to correct dependencies"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Building dependency tree"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Unable to minimise the upgrade set"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Candidate versions"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr "Done"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Dependency generation"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "You might want to run ‘apt-get -f install’ to correct these."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Merging available information"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Unmet dependencies. Try using -f."
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Failed to open %s"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "WARNING: The following packages cannot be authenticated!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Failed to write file ‘%s’"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Authentication warning overridden.\n"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Unable to parse package file %s (1)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Install these packages without verification [y/N]? "
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Unable to parse package file %s (2)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Some packages could not be authenticated"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Malformed line %lu in source list %s (URI)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "There are problems and -y was used without --force-yes"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Malformed line %lu in source list %s (dist)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Internal error, InstallPackages was called with broken packages!"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Malformed line %lu in source list %s (URI parse)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Packages need to be removed but remove is disabled."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Malformed line %lu in source list %s (absolute dist)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Internal error, Ordering didn't finish"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Malformed line %lu in source list %s (dist parse)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Unable to lock the download directory"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Opening %s"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "The list of sources could not be read."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "How odd.. The sizes didn't match, email apt@packages.debian.org"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Line %u too long in source list %s."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Need to get %sB/%sB of archives.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Malformed line %u in source list %s (type)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Need to get %sB of archives.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "After unpacking %sB of additional disk space will be used.\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "After unpacking %sB disk space will be freed.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Type ‘%s’ is not known on line %u in source list %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Couldn't determine free space in %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Malformed line %u in source list %s (vendor id)"
+msgid "You don't have enough free space in %s."
+msgstr "You don't have enough free space in %s."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only specified but this is not a trivial operation."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful\n"
+"To continue type in the phrase ‘%s’\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Index file type ‘%s’ is not supported"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abort."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Do you want to continue [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgid "Failed to fetch %s %s\n"
+msgstr "Failed to fetch %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Some files failed to download"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Download complete and in download only mode"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Unable to correct problems, you have held broken packages."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing and media swapping is not currently supported"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Lists directory %spartial is missing."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Unable to correct missing packages."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Archive directory %spartial is missing."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Aborting install."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Retrieving file %li of %li (%s remaining)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Note, selecting %s for regex ‘%s’\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Retrieving file %li of %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Skipping %s, it is already installed and upgrade is not set.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "The method driver %s could not be found."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Package %s is not installed, so not removed\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Method %s did not start correctly"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Package %s is a virtual package provided by:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installed]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "You should explicitly select one to install."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+"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"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Packaging system ‘%s’ is not supported"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "However the following packages replace it:"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1136
+#, c-format
+msgid "Package %s has no installation candidate"
+msgstr "Package %s has no installation candidate"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Unable to stat %s."
-msgstr "Unable to stat %s."
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "You must put some ‘source’ URIs in your sources.list"
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s is already the newest version.\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "The list of sources could not be read."
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release ‘%s’ for ‘%s’ was not found"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Version ‘%s’ for ‘%s’ was not found"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Selected version %s (%s) for %s\n"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "The update command takes no arguments"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Did not understand pin type %s"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Unable to lock the list directory"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "No priority (or zero) specified for pin"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Cache has an incompatible versioning system"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Error occurred while processing %s (NewPackage)"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "The following NEW packages will be installed"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Error occurred while processing %s (UsePackage1)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Error occurred while processing %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Error occurred while processing %s (UsePackage2)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "The following information may help to resolve the situation:"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Error occurred while processing %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Internal error, problem resolver broke stuff"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Error occurred while processing %s (NewVersion1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Internal error, AllUpgrade broke stuff"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Couldn't find package %s"
+
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Error occurred while processing %s (UsePackage3)"
+msgid "Couldn't find package %s"
+msgstr "Couldn't find package %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Error occurred while processing %s (NewVersion2)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Note, selecting %s for regex ‘%s’\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Error occurred while processing %s (NewFileVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "but %s is to be installed"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Wow, you exceeded the number of package names this APT can handle.."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "You might want to run ‘apt-get -f install’ to correct these:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Wow, you exceeded the number of versions this APT can handle."
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"Unmet dependencies. Try ‘apt-get -f install’ with no packages (or specify a "
+"solution)."
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Wow, you exceeded the number of versions this APT can handle."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Wow, you exceeded the number of dependencies this APT can handle."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"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."
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Broken packages"
+
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "The following extra packages will be installed:"
+
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Suggested packages:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Recommended packages:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calculating upgrade... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Failed"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Done"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Internal error, problem resolver broke stuff"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Must specify at least one package for which to fetch source"
+
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Error occurred while processing %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Unable to find a source package for %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Error occurred while processing %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Skipping already downloaded file '%s'\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Package %s %s was not found while processing file dependencies"
+msgid "You don't have enough free space in %s"
+msgstr "You don't have enough free space in %s"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Couldn't stat source package list %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Need to get %sB/%sB of source archives.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Reading package lists"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Need to get %sB of source archives.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Collecting File Provides"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Fetch source %s\n"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Failed to fetch some archives."
+
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Unable to write to %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Skipping unpack of already unpacked source in %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO Error saving source cache"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Unpack command ‘%s’ failed.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "rename failed, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Check if the 'dpkg-dev' package is installed.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum mismatch"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Build command ‘%s’ failed.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum mismatch"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Child process failed"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Must specify at least one package to check builddeps for"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, 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 ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Unable to get build-dependency information for %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+msgid "%s has no build depends.\n"
+msgstr "%s has no build depends.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr ""
-"The package index files are corrupted. No Filename: field for package %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Size mismatch"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Vendor block %s contains no fingerprint"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identifying.. "
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Stored label: %s\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Failed to satisfy %s dependency for %s: Installed package %s is too new"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Using CD-ROM mount point %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Unmounting CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Waiting for disc...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Mounting CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Scanning disc for index files..\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Failed to satisfy %s dependency for %s: %s"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Found %i package indexes, %i source indexes and %i signatures\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Build-dependencies for %s could not be satisfied."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Stored label: %s\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Failed to process build dependencies"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "That is not a valid name, try again.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Supported modules:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Copying package lists..."
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Hit "
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Writing new source list\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Get: "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Source list entries for this disc are:\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Unmounting CD-ROM..."
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Wrote %i records.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Fetched %sB in %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Wrote %i records with %i missing files.\n"
+msgid " [Working]"
+msgstr " [Working]"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Wrote %i records with %i mismatched files\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Media Change: Please insert the disc labelled\n"
+" ‘%s’\n"
+"in the drive ‘%s’ and press enter\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Wrote %i records with %i missing files and %i mismatched files\n"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Unknown package record!"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Lists directory %spartial is missing."
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Preparing %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Bad default setting!"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Unpacking %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Press enter to continue."
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Preparing to configure %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Some errors occurred while unpacking. I'm going to configure the"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Configuring %s"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "packages that were installed. This may result in duplicate errors"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Error processing directory %s"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Installed %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Preparing for removal of %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Removing %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Removed %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Preparing to completely remove %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Completely removed %s"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "or errors caused by missing dependencies. This is OK, only the errors"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
+"above this message are important. Please fix them and run [I]nstall again"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Could not patch file"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Failed to create IPC pipe to subprocess"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Connection closed prematurely"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Merging available information"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "The diversion path is too long"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Failed to rename %s to %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "File %s/%s overwrites the one in the package %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Unable to read %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "The info and temp directories need to be on the same filesystem"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Reading package lists"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Unparsable control file"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Package %s version %s has an unmet dep:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Unable to locate package %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Unable to read the cdrom database %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Total package names : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normal packages: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Wrong CD-ROM"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pure virtual packages: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Unable to unmount the CD-ROM in %s, it may still be in use."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Single virtual packages: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk not found."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Mixed virtual packages: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "File not found"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Missing: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Failed to stat"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Total distinct versions: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Failed to set modification time"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Total distinct versions: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Invalid URI, local URIS must not start with //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Total dependencies: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Logging in"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Total ver/file relations: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Unable to determine the peer name"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Total ver/file relations: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Unable to determine the local name"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Total Provides mappings: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "The server refused the connection and said: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Total globbed strings: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER failed, server said: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total dependency version space: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS failed, server said: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total slack space: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total space accounted for: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Login script command ‘%s’ failed, server said: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Package file %s is out of sync."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE failed, server said: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "You must give exactly one pattern"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Connection timeout"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "No packages found"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Server closed the connection"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Package files:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Read error"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cache is out of sync, can't x-ref a package file"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "A response overflowed the buffer."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protocol corruption"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pinned packages:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Write error"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(not found)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "could not create a socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installed: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Could not connect data socket, connection timed out"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(none)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Could not connect, passive socket."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidate: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo was unable to get a listening socket"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Package pin: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Could not bind a socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Version table:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Could not listen on the socket"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s %s compiled on %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Could not determine the name of the socket"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Unable to send PORT command"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Please provide a name for this Disc, such as ‘Debian 2.1r1 Disk 1’"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Unknown address family %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Please insert a Disc in the drive and press enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT failed, server said: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Repeat this process for the rest of the CDs in your set."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Data socket connect timed out"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Arguments not in pairs"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Unable to accept connection"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem hashing file"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s not a valid DEB package."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Unable to fetch file, server said ‘%s’"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Data socket timed out"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Cannot get debconf version. Is debconf installed?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Data transfer failed, server said ‘%s’"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Package extension list is too long"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Query"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
-#, c-format
-msgid "Error processing directory %s"
-msgstr "Error processing directory %s"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Unable to invoke"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Source extension list is too long"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Connecting to %s (%s)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Error writing header to contents file"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:80
#, c-format
-msgid "Error processing contents %s"
-msgstr "Error processing contents %s"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Could not create a socket for %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Cannot initiate the connection to %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "No selections matched"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Could not connect to %s:%s (%s), connection timed out"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:108
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Some files are missing in the package file group ‘%s’"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Could not connect to %s:%s (%s)."
-#: ftparchive/cachedb.cc:43
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB was corrupted, file renamed to %s.old"
+msgid "Connecting to %s"
+msgstr "Connecting to %s"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:167
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB is old, attempting to upgrade %s"
+msgid "Could not resolve '%s'"
+msgstr "Could not resolve ‘%s’"
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Temporary failure resolving ‘%s’"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Something wicked happened resolving ‘%s:%s’ (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Unable to connect to %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Couldn't access keyring: '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "At least one invalid signature was encountered."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Unable to open DB file %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "Could not execute '%s' to verify signature (is gnupg installed?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archive has no control record"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Unknown error executing gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Unable to get a cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "The following signatures were invalid:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Unable to read directory %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Couldn't open pipe for %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Unable to stat %s\n"
+msgid "Read error from %s process"
+msgstr "Read error from %s process"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Waiting for headers"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Got a single header line over %u chars"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Errors apply to file "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Bad header line"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Could not resolve ‘%s’"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "The HTTP server sent an invalid reply header"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Tree walking failed"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "The HTTP server sent an invalid Content-Length header"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "The HTTP server sent an invalid Content-Range header"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "This HTTP server has broken range support"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Unknown date format"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Select failed"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Connection timed out"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Error writing to output file"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Error writing to file"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Error writing to the file"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error reading from server. Remote end closed connection"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Error reading from server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Bad header data"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Connection failed"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Internal error"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Cannot mmap an empty file"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Failed to open %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Couldn't make mmap of %lu bytes"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Selection %s not found"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Failed to readlink %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Unrecognized type abbreviation: ‘%c’"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Failed to unlink %s"
+msgid "Opening configuration file %s"
+msgstr "Opening configuration file %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Line %d too long (max %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Failed to link %s to %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntax error %s:%u: Block starts with no name."
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink limit of %sB hit.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntax error %s:%u: Malformed tag"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archive had no package field"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntax error %s:%u: Extra junk after value"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s has no override entry\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "Syntax error %s:%u: Directives can only be done at the top level"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s maintainer is %s not %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntax error %s:%u: Too many nested includes"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s has no source override entry\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntax error %s:%u: Included from here"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s has no binary override entry either\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntax error %s:%u: Unsupported directive ‘%s’"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Internal error, could not locate member %s"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntax error %s:%u: Extra junk at end of file"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Failed to allocate memory"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Error!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "Unable to open %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Done"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Malformed override %s line %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Command line option ‘%c’ [from %s] is not known."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Malformed override %s line %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Command line option %s is not understood"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Malformed override %s line %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Command line option %s is not boolean"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Failed to read the override file %s"
+msgid "Option %s requires an argument."
+msgstr "Option %s requires an argument."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Unknown compression algorithm ‘%s’"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Option %s: Configuration item specification must have an =<val>."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Compressed output %s needs a compression set"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Option %s requires an integer argument, not ‘%s’"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Failed to create FILE*"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Option ‘%s’ is too long"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Failed to fork"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Sense %s is not understood, try true or false."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Compress child"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Invalid operation %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Internal error, failed to create %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Unable to stat the mount point %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Failed to create subprocess IPC"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Unable to change to %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Failed to exec compressor "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Failed to stat the cdrom"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompressor"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Not using locking for read only lock file %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO to subprocess/file failed"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Could not open lock file %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Failed to read while computing MD5"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Not using locking for nfs mounted lock file %s"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem unlinking %s"
+msgid "Could not get lock %s"
+msgstr "Could not get lock %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Waited for %s but it wasn't there"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex compilation error - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Sub-process %s received a segmentation fault."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "The following packages have unmet dependencies."
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Sub-process %s returned an error code (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "but %s is installed"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Sub-process %s exited unexpectedly"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "but %s is to be installed"
+msgid "Could not open file %s"
+msgstr "Could not open file %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "but it is not installable"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "read, still have %lu to read but none left"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "but it is a virtual package"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "write, still have %lu to write but couldn't"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "but it is not installed"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem closing the file"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "but it is not going to be installed"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problem unlinking the file"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " or"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem syncing the file"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "The following NEW packages will be installed"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Empty package cache"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "The following packages will be REMOVED"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "The package cache file is corrupted"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "The following packages have been kept back:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "The package cache file is an incompatible version"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "The following packages will be upgraded:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "This APT does not support the Versioning System ‘%s’"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "The following packages will be DOWNGRADED:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "The package cache was built for a different architecture"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "The following held packages will be changed:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depends"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (due to %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "PreDepends"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Suggests"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu upgraded, %lu newly installed, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recommends"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalled, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Conflicts"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu downgraded, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Replaces"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu to remove and %lu not upgraded.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Obsoletes"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu not fully installed or removed.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Correcting dependencies..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "important"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " failed."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "required"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Unable to correct dependencies"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Unable to minimise the upgrade set"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "optional"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr "Done"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "You might want to run ‘apt-get -f install’ to correct these."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Building dependency tree"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Unmet dependencies. Try using -f."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Candidate versions"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "WARNING: The following packages cannot be authenticated!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Dependency generation"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Authentication warning overridden.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Merging available information"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Install these packages without verification [y/N]? "
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Failed to open %s"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Some packages could not be authenticated"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Failed to write file ‘%s’"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "There are problems and -y was used without --force-yes"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Unable to parse package file %s (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Unable to parse package file %s (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Packages need to be removed but remove is disabled."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Malformed line %lu in source list %s (URI)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Internal error, Ordering didn't finish"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Malformed line %lu in source list %s (dist)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Unable to lock the download directory"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Malformed line %lu in source list %s (URI parse)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Malformed line %lu in source list %s (absolute dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Need to get %sB/%sB of archives.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Malformed line %lu in source list %s (dist parse)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Need to get %sB of archives.\n"
+msgid "Opening %s"
+msgstr "Opening %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "After unpacking %sB of additional disk space will be used.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Line %u too long in source list %s."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "After unpacking %sB disk space will be freed.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Malformed line %u in source list %s (type)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Couldn't determine free space in %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Type ‘%s’ is not known on line %u in source list %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "You don't have enough free space in %s."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Malformed line %u in source list %s (vendor id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Index file type ‘%s’ is not supported"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"You are about to do something potentially harmful\n"
-"To continue type in the phrase ‘%s’\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abort."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Do you want to continue [Y/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Unable to correct problems, you have held broken packages."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Failed to fetch %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Some files failed to download"
+msgid "Lists directory %spartial is missing."
+msgstr "Lists directory %spartial is missing."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Download complete and in download only mode"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Archive directory %spartial is missing."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Retrieving file %li of %li (%s remaining)"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing and media swapping is not currently supported"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Retrieving file %li of %li"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Unable to correct missing packages."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "The method driver %s could not be found."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Aborting install."
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Method %s did not start correctly"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Note, selecting %s for regex ‘%s’\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Packaging system ‘%s’ is not supported"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Unable to determine a suitable packaging system type"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Package %s is not installed, so not removed\n"
+msgid "Unable to stat %s."
+msgstr "Unable to stat %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "You must put some ‘source’ URIs in your sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "The package lists or status file could not be parsed or opened."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "You may want to run apt-get update to correct these problems"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Invalid record in the preferences file, no Package header"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Package %s is a virtual package provided by:\n"
+msgid "Did not understand pin type %s"
+msgstr "Did not understand pin type %s"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installed]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "No priority (or zero) specified for pin"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "You should explicitly select one to install."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Cache has an incompatible versioning system"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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 ""
-"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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Error occurred while processing %s (NewPackage)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "However the following packages replace it:"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Error occurred while processing %s (UsePackage1)"
-#: cmdline/apt-get.cc:1128
-#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Package %s has no installation candidate"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Error occurred while processing %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Error occurred while processing %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s is already the newest version.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Error occurred while processing %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release ‘%s’ for ‘%s’ was not found"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Error occurred while processing %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Version ‘%s’ for ‘%s’ was not found"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Error occurred while processing %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Selected version %s (%s) for %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "The update command takes no arguments"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Error occurred while processing %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Unable to lock the list directory"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Error occurred while processing %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Wow, you exceeded the number of package names this APT can handle.."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Wow, you exceeded the number of versions this APT can handle."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "The following NEW packages will be installed"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Wow, you exceeded the number of versions this APT can handle."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Wow, you exceeded the number of dependencies this APT can handle."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Error occurred while processing %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Error occurred while processing %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Internal error, problem resolver broke stuff"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Package %s %s was not found while processing file dependencies"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Internal error, AllUpgrade broke stuff"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Couldn't stat source package list %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Couldn't find package %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Collecting File Provides"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Couldn't find package %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO Error saving source cache"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Note, selecting %s for regex ‘%s’\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "rename failed, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "but %s is to be installed"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum mismatch"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "You might want to run ‘apt-get -f install’ to correct these:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum mismatch"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "There is no public key available for the following key IDs:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Unmet dependencies. Try ‘apt-get -f install’ with no packages (or specify a "
-"solution)."
+"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)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Some 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."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"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."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Broken packages"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "The following extra packages will be installed:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Suggested packages:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Recommended packages:"
+"The package index files are corrupted. No Filename: field for package %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calculating upgrade... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Size mismatch"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Done"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Vendor block %s contains no fingerprint"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Internal error, problem resolver broke stuff"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Must specify at least one package for which to fetch source"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identifying.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Unable to find a source package for %s"
+msgid "Stored label: %s\n"
+msgstr "Stored label: %s\n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Skipping already downloaded file '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Unmounting CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "You don't have enough free space in %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Using CD-ROM mount point %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Need to get %sB/%sB of source archives.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Unmounting CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Need to get %sB of source archives.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Waiting for disc...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Fetch source %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Mounting CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Failed to fetch some archives."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Scanning disc for index files..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Skipping unpack of already unpacked source in %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Found %i package indexes, %i source indexes and %i signatures\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Unpack command ‘%s’ failed.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Stored label: %s\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "That is not a valid name, try again.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Check if the 'dpkg-dev' package is installed.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"This disc is called: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Build command ‘%s’ failed.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Copying package lists..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Child process failed"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Writing new source list\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Must specify at least one package to check builddeps for"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Source list entries for this disc are:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Unable to get build-dependency information for %s"
+msgid "Wrote %i records.\n"
+msgstr "Wrote %i records.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s has no build depends.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Wrote %i records with %i missing files.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Wrote %i records with %i mismatched files\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Wrote %i records with %i missing files and %i mismatched files\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Failed to satisfy %s dependency for %s: Installed package %s is too new"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Lists directory %spartial is missing."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Failed to satisfy %s dependency for %s: %s"
+msgid "Preparing %s"
+msgstr "Preparing %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Build-dependencies for %s could not be satisfied."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Failed to process build dependencies"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Supported modules:"
+msgid "Unpacking %s"
+msgstr "Unpacking %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Preparing to configure %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Hit "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Configuring %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Get: "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Error processing directory %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Installed %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Preparing for removal of %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Fetched %sB in %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Removing %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Working]"
+msgid "Removed %s"
+msgstr "Removed %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Media Change: Please insert the disc labelled\n"
-" ‘%s’\n"
-"in the drive ‘%s’ and press enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "Preparing to completely remove %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Unknown package record!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Completely removed %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Bad default setting!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Could not patch file"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Press enter to continue."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Connection closed prematurely"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Some errors occurred while unpacking. I'm going to configure the"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Line %d too long (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "packages that were installed. This may result in duplicate errors"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Error occurred while processing %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "or errors caused by missing dependencies. This is OK, only the errors"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Error occurred while processing %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"above this message are important. Please fix them and run [I]nstall again"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Stored label: %s\n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Merging available information"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Found %i package indexes, %i source indexes and %i signatures\n"
#, fuzzy
#~ msgid "openpty failed\n"
# Javier Fernandez-Sanguino Pena <jfs@debian.org> 2003
# Ruben Porras Campo <nahoo@inicia.es> 2004
# Javier Fernandez-Sanguino <jfs@debian.org> 2006
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.6.42.3exp1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-06-21 13:06+0200\n"
"Last-Translator: Javier Fernandez-Sanguino <jfs@debian.org>\n"
"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "No pude leer la base de datos %s del cdrom"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Por favor utilice apt-cdrom para hacer que APT reconozca este CD.\n"
-"apt-get update no se puede usar para agregar nuevos CDs"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD equivocado"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disco no encontrado."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fichero no encontrado"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "No pude leer"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "No pude poner el tiempo de modificación"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI inválido, los URIS locales no deben de empezar con //"
+msgid "Unable to locate package %s"
+msgstr "No se ha podido localizar el paquete %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Entrando"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Nombres de paquetes totales: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "No pude determinar el nombre del par"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Paquetes normales: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Imposible determinar el nombre local"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Paquetes virtuales puros: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "El servidor rechazó nuestra conexión y dijo: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Paquetes virtuales únicos: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Usuario (USER) falló, el servidor dijo: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Paquetes virtuales mixtos: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Clave (PASS) falló, el servidor dijo: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Faltan: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Se especificó un servidor proxy pero no un script de entrada,\n"
-"Acquire::ftp::ProxyLogin está vacío."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Versiones diferentes totales: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Falló la orden '%s' del script de entrada, el servidor dijo: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "Descipciones diferentes totales: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Tipo (TYPE) falló, el servidor dijo: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Dependencias totales: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "La conexión expiró"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Relaciones versión/archivo totales: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "El servidor cerró la conexión"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "Relaciones descripción/archivo totales: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Error de lectura"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Mapeo Total de Provisiones: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Una respuesta desbordó el buffer."
+# globbed -> globalizadas ? (jfs)\r
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Cadenas globalizadas totales: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Corrupción del protocolo"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Espacio de versión de dependencias total: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Error de escritura"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Espacio desperdiciado total: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "No pude crear un socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Espacio registrado total: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "El archivo de paquetes %s está desincronizado."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Falló"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Debe dar exactamente un patrón"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "No pude conectar un socket pasivo."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "No se encontró ningún paquete"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo no pude obtener un socket oyente"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Archivos de paquetes:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "No pude ligar un socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "No pude escuchar en el socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "No pude determinar el nombre del socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Paquetes con pin:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "No pude mandar la orden PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(no encontrado)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Dirección de familia %u desconocida (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalados: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT falló, el servidor dijo: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ninguno)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Expiró conexión a socket de datos"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidato: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "No pude aceptar la conexión"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pin del paquete: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Hay problemas enlazando fichero"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabla de versión:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Imposible traer archivo, el servidor dijo '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Expiró el socket de datos"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Falló transferencia de datos, el servidor dijo '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s para %s %s compilado en %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Consulta"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "No pude invocar "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Conectando a %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Uso: apt-cache [opciones] orden\n"
+" apt-cache [opciones] add archivo1 [archivo2 ...]\n"
+" apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
+"\n"
+"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n"
+"los archivos binarios de caché de APT y consultar información sobre éstos\n"
+"\n"
+"Órdenes:\n"
+" add - Agrega un archivo de paquete a la caché fuente\n"
+" gencaches - Crea el ambas cachés, la de paquetes y la de fuentes\n"
+" showpkg - Muestra alguna información general para un sólo paquete\n"
+" showsrc - Muestra la información de fuente\n"
+" stats - Muestra algunas estadísticas básicas\n"
+" dump - Muestra el archivo entero en un formato terso\n"
+" dumpavail - Imprime un archivo disponible a la salida estándar\n"
+" unmet - Muestra dependencias incumplidas\n"
+" search - Busca en la lista de paquetes por un patrón de expresión "
+"regular\n"
+" show - Muestra un registro legible para el paquete\n"
+" depends - Muestra la información de dependencias en bruto para el "
+"paquete\n"
+" rdepends - Muestra la información de dependencias inversas del paquete\n"
+" pkgnames - Lista los nombres de todos los paquetes\n"
+" dotty - Genera gráficas del paquete para GraphVis\n"
+" xvcg - Genera gráficas del paquete para xvcg\n"
+" policy - Muestra parámetros de las normas\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda.\n"
+" -p=? El cache del paquete.\n"
+" -s=? El cache del fuente.\n"
+" -q Deshabilita el indicador de progreso.\n"
+" -i Muestra sólo dependencias importantes para la orden incumplida.\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria, ej -o dir::\n"
+"cache=/tmp\n"
+"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Por favor provea un nombre para este disco, como 'Debian 2.1r1 Disco 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "No pude crear un socket para %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Por favor inserte un disco en la unidad y presione Intro"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "No puedo iniciar la conexión a %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumentos no emparejados"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "No pude conectarme a %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-config [opciones] orden\n"
+"\n"
+"apt-config es una herramienta para leer el archivo de configuración de APT.\n"
+"\n"
+"Comandos:\n"
+" shell - Modo shell\n"
+" dump - Muestra la configuración\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda.\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
+" cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Conectando a %s"
+msgid "%s not a valid DEB package."
+msgstr "%s no es un paquete DEB válido."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "No pude resolver '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-extracttemplates archivo1 [archivo2 ...]\n"
+"\n"
+"apt-extracttemplates es una herramienta para extraer información de\n"
+"configuración y plantillas de paquetes de debian.\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda.\n"
+" -t Define el directorio temporal\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::"
+"cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Fallo temporal al resolver '%s'"
+msgid "Unable to write to %s"
+msgstr "No se puede escribir en %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Algo raro pasó resolviendo '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "No pude conectarme a %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "La lista de extensión de paquetes es demasiado larga"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "No se pudo acceder al anillo de claves: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Lista de argumentos de Acquire::gpgv::Options demasiado larga. Terminando."
+msgid "Error processing directory %s"
+msgstr "Error procesando el directorio %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Error interno: Firma correcta, pero no se pudo determinar su huella digital?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "La lista de extensión de fuentes es demasiado larga"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Se encontró al menos una firma inválida."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Error escribiendo cabeceras de archivos de contenido"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"No se pudo ejecutar '%s' para verificar la firma (¿está instalado gnupg?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Error desconocido ejecutando gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Las siguientes firms fueron inválidas:\n"
+msgid "Error processing contents %s"
+msgstr "Error procesando contenidos %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
-"Las firmas siguientes no se pudieron verificar porque su llave pública no "
-"está disponible:\n"
+"Uso: apt-ftparchive [opciones] orden\n"
+"Comandos: packages ruta-binaria [archivo-predominio\n"
+" [prefijo-ruta]]\n"
+" sources ruta-fuente [archivo-predominio \n"
+" [prefijo-ruta]]\n"
+" contents ruta\n"
+" release ruta\n"
+" generate config [grupos]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive genera índices para archivos de Debian. Soporta\n"
+"varios estilos de generación de reemplazos desde los completamente\n"
+"automatizados a los funcionales para dpkg-scanpackages y dpkg-scansources.\n"
+"\n"
+"apt-ftparchive genera ficheros Package de un árbol de .debs. El fichero\n"
+"Package contiene los contenidos de todos los campos de control de cada\n"
+"paquete al igual que la suma MD5 y el tamaño del archivo. Se puede usar\n"
+"un archivo de predominio para forzar el valor de Priority y\n"
+"Section.\n"
+"\n"
+"Igualmente, apt-ftparchive genera ficheros Sources para un árbol de\n"
+".dscs. Se puede utilizar la opción --source-override para especificar un\n"
+"fichero de predominio de fuente.\n"
+"\n"
+"Las órdenes «packages» y «sources» deben ejecutarse en la raíz del\n"
+"árbol. BinaryPath debe apuntar a la base de la búsqueda\n"
+"recursiva, y el archivo de predominio debe de contener banderas de\n"
+"predominio. Se añade Pathprefix a los campos de nombre de fichero\n"
+"si existen. A continuación se muestra un ejemplo de uso basado en los \n"
+"archivos de Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda\n"
+" --md5 Generación de control MD5 \n"
+" -s=? Archivo fuente de predominio\n"
+" -q Silencioso\n"
+" -d=? Selecciona la base de datos de caché opcional \n"
+" --no-delink Habilita modo de depuración delink\n"
+" --contents Generación del contenido del archivo «Control»\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "No pude leer %s"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ninguna selección coincide"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "No pude abrir una tubería para %s"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Faltan algunos archivos en el grupo de archivo de paquetes `%s'"
-#: methods/gzip.cc:109
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Read error from %s process"
-msgstr "Error de lectura de %s procesos"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Esperando las cabeceras"
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "BD corrompida, archivo renombrado a %s.old"
-#: methods/http.cc:523
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Obtuve una sola línea de cabecera arriba de %u caracteres"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Mala línea de cabecera"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "El servidor de http envió una cabecera de respuesta inválida"
-
-#: methods/http.cc:586
-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:601
-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:603
-msgid "This HTTP server has broken range support"
-msgstr "Éste servidor de http tiene el soporte de alcance roto"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB anticuada, intentando actualizar %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Formato de fecha desconocido"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"El formato de la base de datos no es válido. Debe eliminar y recrear la base "
+"de datos si ha actualizado de una versión anterior de apt."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Falló la selección"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "No se pudo abrir el archivo DB %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Expiró la conexión"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "No pude leer %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Error escribiendo al archivo de salida"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "No hay registro de control del archivo"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Error escribiendo a archivo"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "No se pudo obtener un cursor"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Error escribiendo al archivo"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "A: No se pudo leer directorio %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "A: No se pudo leer %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Error leyendo del servidor"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Mala cabecera Data"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "A: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Fallo la conexión"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Errores aplicables al archivo '"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Error interno"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "No se pudo resolver %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "No puedo hacer mmap de un fichero vacío"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Falló el recorrido por el árbol."
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "No pude hacer mmap de %lu bytes"
+msgid "Failed to open %s"
+msgstr "No se pudo abrir %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Selección %s no encontrada"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Tipo de abreviación no reconocida: '%c'"
+msgid "Failed to readlink %s"
+msgstr "No se pudo leer el enlace %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Abriendo fichero de configuración %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Línea %d demasiado larga (máx %lu)"
+msgid "Failed to unlink %s"
+msgstr "No se pudo desligar %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque."
+msgid "*** Failed to link %s to %s"
+msgstr "*** No pude enlazar %s con %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Error de sintaxis %s:%u: Marca mal formada"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink se ha llegado al límite de %sB.\n"
+
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archivo no tiene campo de paquetes"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Error de sintaxis %s:%u: Basura extra después del valor"
+msgid " %s has no override entry\n"
+msgstr " %s no tiene entrada de predominio\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, 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\n"
-"en el primer nivel"
+msgid " %s maintainer is %s not %s\n"
+msgstr " el encargado de %s es %s y no %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas"
+msgid " %s has no source override entry\n"
+msgstr " %s no tiene una entrada fuente predominante\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Error de sintaxis %s:%u: Incluido desde aquí"
+msgid " %s has no binary override entry either\n"
+msgstr " %s tampoco tiene una entrada binaria predominante\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Error de sintaxis %s:%u: Directiva '%s' no soportada"
+msgid "Internal error, could not locate member %s"
+msgstr "Error interno, no pude localizar el miembro %s"
+
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - No pudo reservar memoria"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo"
+msgid "Unable to open %s"
+msgstr "No se pudo abrir %s"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Unable to read %s"
-msgstr "No pude leer %s"
+msgid "Malformed override %s line %lu #1"
+msgstr "Predominio mal formado %s línea %lu #1"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... ¡Error!"
+msgid "Malformed override %s line %lu #2"
+msgstr "Predominio mal formado %s línea %lu #2"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Hecho"
+msgid "Malformed override %s line %lu #3"
+msgstr "Predominio mal formado %s línea %lu #3"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "No se conoce la opción de línea de órdenes '%c' [ de %s]"
+msgid "Failed to read the override file %s"
+msgstr "No se pudo leer el archivo de predominio %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "No se entiende la opción de línea de órdenes %s"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algoritmo desconocido de compresión '%s'"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "La opción de línea de órdenes %s no es un booleano"
+msgid "Compressed output %s needs a compression set"
+msgstr "Salida comprimida %s necesita una herramienta de compresión"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Falló la creación de una tubería IPC para el subproceso"
+
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "No se pudo crear FICHERO*"
+
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "No se pudo bifurcar"
+
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Hijo compresión"
+
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option %s requires an argument."
-msgstr "La opción %s necesita un argumento."
+msgid "Internal error, failed to create %s"
+msgstr "Error interno, no se pudo crear %s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "No se pudo crear el subproceso IPC"
+
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "No se pudo ejecutar el compresor "
+
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompresor"
+
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Falló la ES a subproceso/archivo"
+
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "No se pudo leer mientras se computaba MD5"
+
+#: ftparchive/multicompress.cc:472
#, 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>."
+msgid "Problem unlinking %s"
+msgstr "Hay problemas desligando %s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "La opción %s exige un argumento entero, no '%s'"
+msgid "Failed to rename %s to %s"
+msgstr "Falló el renombre de %s a %s"
-#: apt-pkg/contrib/cmndline.cc:265
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "S"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opción '%s' demasiado larga"
+msgid "Regex compilation error - %s"
+msgstr "Error de compilación de expresiones regulares - %s"
-#: apt-pkg/contrib/cmndline.cc:298
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Los siguientes paquetes tienen dependencias incumplidas:"
+
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "El sentido %s no se entiende, pruebe verdadero o falso."
+msgid "but %s is installed"
+msgstr "pero %s está instalado"
-#: apt-pkg/contrib/cmndline.cc:348
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Invalid operation %s"
-msgstr "Operación inválida: %s"
+msgid "but %s is to be installed"
+msgstr "pero %s va a ser instalado"
+
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "pero no es instalable"
+
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "pero es un paquete virtual"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "pero no está instalado"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "pero no va a instalarse"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "No se puede obtener información del punto de montaje %s"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " o"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "No se pudo cambiar a %s"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Se instalarán los siguientes paquetes NUEVOS:"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "No pude montar el cdrom"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Los siguientes paquetes se ELIMINARÁN:"
-#: apt-pkg/contrib/fileutl.cc:82
-#, 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"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Los siguientes paquetes se han retenido:"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "No se pudo abrir el fichero de bloqueo '%s'"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Se actualizarán los siguientes paquetes:"
-#: apt-pkg/contrib/fileutl.cc:105
-#, 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"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Se DESACTUALIZARÁN los siguientes paquetes:"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "No se pudo bloquear %s"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Se cambiarán los siguientes paquetes retenidos:"
-#: apt-pkg/contrib/fileutl.cc:377
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Esperaba %s pero no estaba allí"
+msgid "%s (due to %s) "
+msgstr "%s (por %s) "
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "El subproceso %s recibió un fallo de segmentación."
+#: cmdline/apt-get.cc:550
+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-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "El subproceso %s devolvió un código de error (%u)"
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu actualizados, %lu se instalarán, "
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "El subproceso %s terminó de forma inesperada"
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "Could not open file %s"
-msgstr "No pude abrir el fichero %s"
+msgid "%lu downgraded, "
+msgstr "%lu desactualizados, "
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "leídos, todavía debía leer %lu pero no queda nada"
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu para eliminar y %lu no actualizados.\n"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:593
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo"
-
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problemas cerrando el archivo"
-
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Hay problemas desligando el fichero %s"
-
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Hay problemas sincronizando el fichero"
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu no instalados del todo o eliminados.\n"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Caché de paquetes vacía."
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Corrigiendo dependencias..."
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "El archivo de caché de paquetes esta corrompido"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " falló."
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "El archivo de caché de paquetes es una versión incompatible"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "No se puede corregir las dependencias"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Este APT no soporta el sistema de versiones '%s'"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "No se puede minimizar el conjunto de actualización"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "La caché de paquetes se había creado para una arquitectura diferente"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Listo"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depende"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Tal vez quiera ejecutar `apt-get -f install' para corregirlo."
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "PreDepende"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f."
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Sugiere"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recomienda"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticación ignorado.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Entra en conflicto"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "¿Instalar estos paquetes sin verificación [s/N]? "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Reemplaza"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Algunos paquetes no se pueden autenticar"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Hace obsoleto"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Hay problemas y se utilizó -y sin --force-yes"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr "Rompe"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Error interno, InstallPackages fue llamado con un paquete roto!"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "importante"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Los paquetes necesitan eliminarse pero Remove está deshabilitado."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "requiere"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Error interno, no terminó el ordenamiento"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "estándar"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "No se puede bloquear el directorio de descarga"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcional"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "No se pudieron leer las listas de fuentes."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Que raro.. Los tamaños no concuerdan, mande un correo a \n"
+"apt@packages.debian.org"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Creando árbol de dependencias"
+#: cmdline/apt-get.cc:839
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Se necesita descargar %sB/%sB de archivos.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versiones candidatas"
+#: cmdline/apt-get.cc:842
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Necesito descargar %sB de archivos.\n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generación de dependencias"
+#: cmdline/apt-get.cc:847
+#, fuzzy, 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 desempaquetar.\n"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr "Leyendo la información de estado"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Se liberarán %sB después de desempaquetar.\n"
-#: apt-pkg/depcache.cc:219
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Failed to open StateFile %s"
-msgstr "No se pudo abrir el fichero de estado %s"
+msgid "Couldn't determine free space in %s"
+msgstr "No pude determinar el espacio libre en %s"
-#: apt-pkg/depcache.cc:225
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Falló la escritura del fichero de estado temporal %s"
+msgid "You don't have enough free space in %s."
+msgstr "No tiene suficiente espacio libre en %s."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "No se pudo tratar el archivo de paquetes %s (1)"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Se especificó Trivial Only pero ésta no es una operación trivial."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "No se pudo tratar el archivo de paquetes %s (2)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Sí, ¡haga lo que le digo!"
-#: apt-pkg/sourcelist.cc:90
+#: cmdline/apt-get.cc:891
#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Línea %lu mal formada en lista de fuentes %s (URI)"
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
+msgstr ""
+"Está a punto de hacer algo potencialmente dañino\n"
+"Para continuar escriba la frase «%s»\n"
+" ?] "
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Línea %lu mal formada en lista de fuentes %s (dist)"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abortado."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Línea %lu mal formada en lista de fuentes %s (análisis de URI)"
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "¿Desea continuar [S/n]? "
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Línea %lu mal formada en lista de fuentes %s (dist absoluta)"
+msgid "Failed to fetch %s %s\n"
+msgstr "Imposible obtener %s %s\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Línea %lu mal formada en lista de fuentes %s (análisis de dist)"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Algunos archivos no pudieron descargarse"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Abriendo %s"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Descarga completa y en modo de sólo descarga"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Línea %u demasiado larga en la lista de fuentes %s."
+#: cmdline/apt-get.cc:1009
+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\n"
+"apt-get update o deba intentarlo de nuevo con --fix-missing?"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Línea %u mal formada en lista de fuentes %s (tipo)"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "Actualmente no están soportados --fix-missing e intercambio de medio"
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Tipo '%s' desconocido en la línea %u de lista de fuentes %s"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "No se pudieron corregir los paquetes que faltan."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Abortando la instalación."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Línea %u mal formada en la lista de fuentes %s (id del fabricante)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Nota, seleccionando %s en lugar de %s\n"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
-"Esta ejecución de la instalación requiere eliminar temporalmente el \n"
-"paquete esencial %s debido a un bucle de Conflictos/Pre-Dependencias. \n"
-"Esto generalmente es malo, pero si realmente quiere hacerlo, active \n"
-"la opción APT::Force-LoopBreak."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Ignorando %s, ya esta instalado y la actualización no esta activada.\n"
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "No se da soporte para el tipo de archivo de índice '%s'"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "El paquete %s no esta instalado, no se eliminará\n"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para "
-"éste."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "El paquete %s es un paquete virtual provisto por:\n"
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido "
-"causado por paquetes retenidos."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Instalado]"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"No se pudieron corregir los problemas, usted ha retenido paquetes\n"
-"rotos."
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Necesita seleccionar explícitamente uno para instalar."
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Falta el directorio de listas %spartial."
+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"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Falta el directorio de archivos %spartial."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Sin embargo, los siguientes paquetes lo reemplazan:"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Descargando fichero %li de %li (falta %s)"
+msgid "Package %s has no installation candidate"
+msgstr "El paquete %s no tiene candidato para su instalación"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Descargando fichero %li de %li"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "No se pudo encontrar el método %s."
+msgid "%s is already the newest version.\n"
+msgstr "%s ya está en su versión más reciente.\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "El método %s no se inició correctamente"
+msgid "Release '%s' for '%s' was not found"
+msgstr "No se encontró la Distribución '%s' para '%s'"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y presione Intro"
+msgid "Version '%s' for '%s' was not found"
+msgstr "No se encontró la versión '%s' para '%s'"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "El sistema de paquetes '%s' no está soportado"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versión seleccionada %s (%s) para %s\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "El comando de actualización no toma argumentos"
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "No se pudo leer %s."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "No se pudo bloquear el directorio de listas"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Debe poner algunos URIs 'fuente' en su sources.list"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Algunos archivos de índice no se han podido descargar, se han ignorado,\n"
+"o se ha utilizado unos antiguos en su lugar."
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "No se pudieron leer las listas de fuentes."
+#: cmdline/apt-get.cc:1441
+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-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
msgstr ""
-"No se pudieron analizar o abrir las listas de paquetes o el archivo de "
-"estado."
+"Se instalaron de forma automática los siguientes paquetes y ya no son "
+"necesarios."
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Tal vez quiera ejecutar 'apt-get update' para corregir estos problemas"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "Utilice «apt-get autoremove» para eliminarlos."
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Registro inválido en el archivo de preferencias, no hay cabecera de paquete"
+"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. "
+"Por favor, envíe un informe de fallo al programa apt."
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "No se entiende el pin tipo %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "La siguiente información puede ayudar a resolver la situación:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "No hay prioridad especificada para pin (o es cero)"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Error interno, «AutoRemover» rompió cosas"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "La caché tiene una versión incompatible de sistema de versiones"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Error Interno, AllUpgrade rompió cosas"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewPackage)"
+msgid "Couldn't find task %s"
+msgstr "No se pudo encontrar la tarea %s"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Ocurrió un error mientras se procesaba %s (UsePackage1)"
+msgid "Couldn't find package %s"
+msgstr "No se pudo encontrar el paquete %s"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Nota, seleccionando %s para la expresión regular '%s'\n"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Ocurrió un error mientras se procesaba %s (UsePackage2)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "fijado %s como instalado manualmente.\n"
+
+#: cmdline/apt-get.cc:1735
+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:1738
+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:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"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:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"Como sólo solicito una única operación, es extremadamente posible que el\n"
+"paquete simplemente no sea instalable y debería de rellenar un informe de\n"
+"error contra ese paquete."
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Paquetes rotos"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewVersion1)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Se instalarán los siguientes paquetes extras:"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Ocurrió un error mientras se procesaba %s (UsePackage3)"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Paquetes sugeridos:"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewVersion2)"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Paquetes recomendados"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calculando la actualización... "
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr ""
-"Vaya, excedió el número de nombres de paquetes que este APT es capaz de "
-"manejar."
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Falló"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar."
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Listo"
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-"Vaya, excedió el número de descripciones que este APT es capaz de manejar."
+"Error interno, el sistema de solución de problemas rompió\n"
+"algunas cosas"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr ""
-"Vaya, excedió el número de dependencias que este APT es capaz de manejar."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Debe especificar al menos un paquete para obtener su código fuente"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Ocurrió un error mientras procesaba %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "No se pudo encontrar un paquete de fuentes para %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Ocurrió un error mientras procesaba %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Ignorando fichero ya descargado '%s'\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr ""
-"Al procesar las dependencias de archivos no se encontró el\n"
-"paquete %s %s"
+msgid "You don't have enough free space in %s"
+msgstr "No tiene suficiente espacio libre en %s"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "No se puede leer la lista de paquetes fuente %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Necesito descargar %sB/%sB de archivos fuente.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Leyendo lista de paquetes"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Necesito descargar %sB de archivos fuente.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Recogiendo archivos que proveen"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Fuente obtenida %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "No se pudieron obtener algunos archivos."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "No se puede escribir en %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Error de E/S guardando caché fuente"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Falló la orden de desempaquetamiento '%s'.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "falló el cambio de nombre, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "La suma MD5 difiere"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Falló la orden de construcción '%s'.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "La suma MD5 difiere"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Falló el proceso hijo"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-"No existe ninguna clave pública disponible para los siguientes "
-"identificadores de clave:\n"
+"Debe especificar al menos un paquete para verificar sus\n"
+"dependencias de construcción"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"No se pudo localizar un archivo para el paquete %s. Esto puede significar "
-"que necesita arreglar manualmente este paquete (debido a que falta una "
-"arquitectura)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "No se pudo obtener información de dependencias de construcción para %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"No se pudo localizar un archivo para el paquete %s. Esto puede significar "
-"que necesita arreglar manualmente este paquete."
+msgid "%s has no build depends.\n"
+msgstr "%s no tiene dependencias de construcción.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"Los archivos de índice de paquetes están corrompidos. El campo 'Filename:' "
-"no existe para para el paquete %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "El tamaño difiere"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Bloque de fabricante %s sin huella digital"
+"La dependencia %s en %s no puede satisfacerse porque no se puede \n"
+"encontrar el paquete %s"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Usando el punto de montaje del CD-ROM %s\n"
-"Montando el CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificando.. "
+"La dependencia %s en %s no puede satisfacerse porque ninguna versión\n"
+"disponible del paquete %s satisface los requisitos de versión"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Etiqueta guardada: %s \n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es "
+"demasiado nuevo"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Usando el punto de montaje del CD-ROM %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Desmontando el CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Esperando el disco...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Montando el CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Buscando en el disco archivos de índices...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid ""
-#| "Found %i package indexes, %i source indexes, %i translation indexes and %"
-#| "i signatures\n"
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Se encontraron %i índices de paquetes, %i índices de fuentes, %i índices de "
-"traducción y %i firmas\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "No se pudo satisfacer la dependencia %s para %s: %s"
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Found label '%s'\n"
-msgstr "Se encontró la etiqueta: '%s'\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "No se pudieron satisfacer las dependencias de construcción de %s."
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "No se pudieron procesar las dependencias de construcción"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Módulos soportados:"
+
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Este disco se llama: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Copiando las listas de paquetes..."
+"Uso: apt-get [opciones] orden\n"
+" apt-get [opciones] install|remove paq1 [paq2 ...]\n"
+" apt-get [opciones] source paq1 [paq2 ...]\n"
+"\n"
+"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n"
+"instalar paquetes. Las órdenes más utilizadas son update e install.\n"
+"\n"
+"Órdenes:\n"
+" update - Descarga nuevas listas de paquetes\n"
+" upgrade - Realiza una actualización\n"
+" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n"
+" remove - Elimina paquetes\n"
+" purge - Elimina y purga paquetes\n"
+" source - Descarga archivos fuente\n"
+" build-dep - Configura las dependencias de construcción para paquetes "
+"fuente\n"
+" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n"
+" dselect-upgrade - Sigue las selecciones de dselect\n"
+" clean - Elimina los archivos descargados\n"
+" autoclean - Elimina los archivos descargados antiguos\n"
+" check - Verifica que no haya dependencias incumplidas\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda.\n"
+" -q Salida registrable - sin indicador de progreso\n"
+" -qq Sin salida, excepto si hay errores\n"
+" -d Sólo descarga - NO instala o desempaqueta los archivos\n"
+" -s No actúa. Realiza una simulación\n"
+" -y Asume Sí para todas las consultas\n"
+" -f Intenta continuar si la comprobación de integridad falla\n"
+" -m Intenta continuar si los archivos no son localizables\n"
+" -u Muestra también una lista de paquetes actualizados\n"
+" -b Construye el paquete fuente después de obtenerlo\n"
+" -V Muesta números de versión detallados\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria, p. ej. \n"
+" -o dir::cache=/tmp\n"
+"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt.conf"
+"(5)\n"
+"para más información y opciones.\n"
+" Este APT tiene poderes de Super Vaca.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Escribiendo nueva lista de fuente\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Obj "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Las entradas de la lista de fuentes para este disco son:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Des:"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "Desmontando el CD-ROM...\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i registros escritos.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i registros escritos con %i fichero de menos.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Descargados %sB en %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i registros escritos con %i fichero mal emparejado\n"
+msgid " [Working]"
+msgstr " [Trabajando]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Falta el directorio de listas %spartial."
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Preparando %s"
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Desempaquetando %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Preparándose para configurar %s"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Configurando %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Error procesando el directorio %s"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s instalado"
+"Cambio de medio: Por favor inserte el disco etiquetado\n"
+" '%s'\n"
+"en la unidad '%s' y presione Intro\n"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Preparándose para eliminar %s"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "¡Registro de paquete desconocido!"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Eliminando %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-sortpkgs [opciones] archivo1 [archivo2 ...]\n"
+"\n"
+"apt-sortpkgs es una herramienta sencilla para ordenar archivos de paquetes.\n"
+"La opción -s se utiliza para indicar qué tipo de archivo es.\n"
+"\n"
+"Opciones:\n"
+" -h Este texto de ayuda.\n"
+" -s Utiliza ordenamiento de archivos fuente\n"
+" -c=? Lee este archivo de configuración\n"
+" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
+"cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "%s eliminado"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "¡Parámetro por omisión incorrecto!"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Preparándose para eliminar completamente %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Presione Intro para continuar."
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Se borró completamente %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr ""
+"Ocurrieron algunos errores mientras se desempaquetaba. Se va a configurar el"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
msgstr ""
+"paquetes que fueron instalados. Esto puede dar lugar a errores duplicados"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "No pude parchear el fichero"
+#: dselect/install:102
+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\n"
+"errores"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Falló la creación de una tubería IPC para el subproceso"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"encima de este mensaje son importantes. Por favor corrijalas y ejecute\n"
+"[I]nstall otra vez"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "La conexión se cerró prematuramente"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Fusionando información disponible"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "La trayectoria de desviación es demasiado larga"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Falló el renombre de %s a %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "No pude leer %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgstr ""
"Los directorios info y temp deben de estar en el mismo sistema de archivos"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Leyendo lista de paquetes"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Archivo de control inanalizable"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "No se ha podido localizar el paquete %s"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Nombres de paquetes totales: "
+msgid "Unable to read the cdrom database %s"
+msgstr "No pude leer la base de datos %s del cdrom"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Paquetes normales: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Por favor utilice apt-cdrom para hacer que APT reconozca este CD.\n"
+"apt-get update no se puede usar para agregar nuevos CDs"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Paquetes virtuales puros: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD equivocado"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Paquetes virtuales únicos: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Paquetes virtuales mixtos: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disco no encontrado."
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Faltan: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fichero no encontrado"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Versiones diferentes totales: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "No pude leer"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "Descipciones diferentes totales: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "No pude poner el tiempo de modificación"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Dependencias totales: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI inválido, los URIS locales no deben de empezar con //"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Relaciones versión/archivo totales: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Entrando"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "Relaciones descripción/archivo totales: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "No pude determinar el nombre del par"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Mapeo Total de Provisiones: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Imposible determinar el nombre local"
-# globbed -> globalizadas ? (jfs)\r
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Cadenas globalizadas totales: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "El servidor rechazó nuestra conexión y dijo: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Espacio de versión de dependencias total: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Usuario (USER) falló, el servidor dijo: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Espacio desperdiciado total: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Clave (PASS) falló, el servidor dijo: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Espacio registrado total: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Se especificó un servidor proxy pero no un script de entrada,\n"
+"Acquire::ftp::ProxyLogin está vacío."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "El archivo de paquetes %s está desincronizado."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Falló la orden '%s' del script de entrada, el servidor dijo: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Debe dar exactamente un patrón"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "Tipo (TYPE) falló, el servidor dijo: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "No se encontró ningún paquete"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "La conexión expiró"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Archivos de paquetes:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "El servidor cerró la conexión"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Error de lectura"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Una respuesta desbordó el buffer."
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Paquetes con pin:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Corrupción del protocolo"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(no encontrado)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Error de escritura"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalados: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "No pude crear un socket"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ninguno)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidato: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "No pude conectar un socket pasivo."
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pin del paquete: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo no pude obtener un socket oyente"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabla de versión:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "No pude ligar un socket"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "No pude escuchar en el socket"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s para %s %s compilado en %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "No pude determinar el nombre del socket"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Uso: apt-cache [opciones] orden\n"
-" apt-cache [opciones] add archivo1 [archivo2 ...]\n"
-" apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
-"\n"
-"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n"
-"los archivos binarios de caché de APT y consultar información sobre éstos\n"
-"\n"
-"Órdenes:\n"
-" add - Agrega un archivo de paquete a la caché fuente\n"
-" gencaches - Crea el ambas cachés, la de paquetes y la de fuentes\n"
-" showpkg - Muestra alguna información general para un sólo paquete\n"
-" showsrc - Muestra la información de fuente\n"
-" stats - Muestra algunas estadísticas básicas\n"
-" dump - Muestra el archivo entero en un formato terso\n"
-" dumpavail - Imprime un archivo disponible a la salida estándar\n"
-" unmet - Muestra dependencias incumplidas\n"
-" search - Busca en la lista de paquetes por un patrón de expresión "
-"regular\n"
-" show - Muestra un registro legible para el paquete\n"
-" depends - Muestra la información de dependencias en bruto para el "
-"paquete\n"
-" rdepends - Muestra la información de dependencias inversas del paquete\n"
-" pkgnames - Lista los nombres de todos los paquetes\n"
-" dotty - Genera gráficas del paquete para GraphVis\n"
-" xvcg - Genera gráficas del paquete para xvcg\n"
-" policy - Muestra parámetros de las normas\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda.\n"
-" -p=? El cache del paquete.\n"
-" -s=? El cache del fuente.\n"
-" -q Deshabilita el indicador de progreso.\n"
-" -i Muestra sólo dependencias importantes para la orden incumplida.\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria, ej -o dir::\n"
-"cache=/tmp\n"
-"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "No pude mandar la orden PORT"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Por favor provea un nombre para este disco, como 'Debian 2.1r1 Disco 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Dirección de familia %u desconocida (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Por favor inserte un disco en la unidad y presione Intro"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT falló, el servidor dijo: %s"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Expiró conexión a socket de datos"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumentos no emparejados"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "No pude aceptar la conexión"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Uso: apt-config [opciones] orden\n"
-"\n"
-"apt-config es una herramienta para leer el archivo de configuración de APT.\n"
-"\n"
-"Comandos:\n"
-" shell - Modo shell\n"
-" dump - Muestra la configuración\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda.\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
-" cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Hay problemas enlazando fichero"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s no es un paquete DEB válido."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Imposible traer archivo, el servidor dijo '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Uso: apt-extracttemplates archivo1 [archivo2 ...]\n"
-"\n"
-"apt-extracttemplates es una herramienta para extraer información de\n"
-"configuración y plantillas de paquetes de debian.\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda.\n"
-" -t Define el directorio temporal\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::"
-"cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Expiró el socket de datos"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Falló transferencia de datos, el servidor dijo '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "La lista de extensión de paquetes es demasiado larga"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Consulta"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "No pude invocar "
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "Error procesando el directorio %s"
+msgid "Connecting to %s (%s)"
+msgstr "Conectando a %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "La lista de extensión de fuentes es demasiado larga"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Error escribiendo cabeceras de archivos de contenido"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "No pude crear un socket para %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "Error procesando contenidos %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "No puedo iniciar la conexión a %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Uso: apt-ftparchive [opciones] orden\n"
-"Comandos: packages ruta-binaria [archivo-predominio\n"
-" [prefijo-ruta]]\n"
-" sources ruta-fuente [archivo-predominio \n"
-" [prefijo-ruta]]\n"
-" contents ruta\n"
-" release ruta\n"
-" generate config [grupos]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive genera índices para archivos de Debian. Soporta\n"
-"varios estilos de generación de reemplazos desde los completamente\n"
-"automatizados a los funcionales para dpkg-scanpackages y dpkg-scansources.\n"
-"\n"
-"apt-ftparchive genera ficheros Package de un árbol de .debs. El fichero\n"
-"Package contiene los contenidos de todos los campos de control de cada\n"
-"paquete al igual que la suma MD5 y el tamaño del archivo. Se puede usar\n"
-"un archivo de predominio para forzar el valor de Priority y\n"
-"Section.\n"
-"\n"
-"Igualmente, apt-ftparchive genera ficheros Sources para un árbol de\n"
-".dscs. Se puede utilizar la opción --source-override para especificar un\n"
-"fichero de predominio de fuente.\n"
-"\n"
-"Las órdenes «packages» y «sources» deben ejecutarse en la raíz del\n"
-"árbol. BinaryPath debe apuntar a la base de la búsqueda\n"
-"recursiva, y el archivo de predominio debe de contener banderas de\n"
-"predominio. Se añade Pathprefix a los campos de nombre de fichero\n"
-"si existen. A continuación se muestra un ejemplo de uso basado en los \n"
-"archivos de Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda\n"
-" --md5 Generación de control MD5 \n"
-" -s=? Archivo fuente de predominio\n"
-" -q Silencioso\n"
-" -d=? Selecciona la base de datos de caché opcional \n"
-" --no-delink Habilita modo de depuración delink\n"
-" --contents Generación del contenido del archivo «Control»\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Ninguna selección coincide"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "No pude conectarme a %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:832
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Faltan algunos archivos en el grupo de archivo de paquetes `%s'"
+msgid "Connecting to %s"
+msgstr "Conectando a %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "No pude resolver '%s'"
+
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Fallo temporal al resolver '%s'"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Algo raro pasó resolviendo '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "BD corrompida, archivo renombrado a %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "No pude conectarme a %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB anticuada, intentando actualizar %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "No se pudo acceder al anillo de claves: '%s'"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Lista de argumentos de Acquire::gpgv::Options demasiado larga. Terminando."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"El formato de la base de datos no es válido. Debe eliminar y recrear la base "
-"de datos si ha actualizado de una versión anterior de apt."
+"Error interno: Firma correcta, pero no se pudo determinar su huella digital?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Se encontró al menos una firma inválida."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "No se pudo abrir el archivo DB %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"No se pudo ejecutar '%s' para verificar la firma (¿está instalado gnupg?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "No hay registro de control del archivo"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Error desconocido ejecutando gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "No se pudo obtener un cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Las siguientes firms fueron inválidas:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Las firmas siguientes no se pudieron verificar porque su llave pública no "
+"está disponible:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "A: No se pudo leer directorio %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "No pude abrir una tubería para %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "A: No se pudo leer %s\n"
+msgid "Read error from %s process"
+msgstr "Error de lectura de %s procesos"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Esperando las cabeceras"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "A: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Obtuve una sola línea de cabecera arriba de %u caracteres"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Errores aplicables al archivo '"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Mala línea de cabecera"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "El servidor de http envió una cabecera de respuesta inválida"
+
+#: methods/http.cc:586
+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:601
+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:603
+msgid "This HTTP server has broken range support"
+msgstr "Éste servidor de http tiene el soporte de alcance roto"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Formato de fecha desconocido"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Falló la selección"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Expiró la conexión"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Error escribiendo al archivo de salida"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Error escribiendo a archivo"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Error escribiendo al archivo"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Error leyendo del servidor"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Mala cabecera Data"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Fallo la conexión"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Error interno"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "No puedo hacer mmap de un fichero vacío"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "No se pudo resolver %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "No pude hacer mmap de %lu bytes"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Falló el recorrido por el árbol."
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Selección %s no encontrada"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "No se pudo abrir %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Tipo de abreviación no reconocida: '%c'"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr "Abriendo fichero de configuración %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Línea %d demasiado larga (máx %lu)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to readlink %s"
-msgstr "No se pudo leer el enlace %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque."
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Failed to unlink %s"
-msgstr "No se pudo desligar %s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Error de sintaxis %s:%u: Marca mal formada"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** No pude enlazar %s con %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Error de sintaxis %s:%u: Basura extra después del valor"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink se ha llegado al límite de %sB.\n"
+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\n"
+"en el primer nivel"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archivo no tiene campo de paquetes"
+#: apt-pkg/contrib/configuration.cc:694
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s no tiene entrada de predominio\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Error de sintaxis %s:%u: Incluido desde aquí"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " el encargado de %s es %s y no %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Error de sintaxis %s:%u: Directiva '%s' no soportada"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s no tiene una entrada fuente predominante\n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s tampoco tiene una entrada binaria predominante\n"
+msgid "%c%s... Error!"
+msgstr "%c%s... ¡Error!"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Error interno, no pude localizar el miembro %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Hecho"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - No pudo reservar memoria"
+#: apt-pkg/contrib/cmndline.cc:77
+#, 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]"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unable to open %s"
-msgstr "No se pudo abrir %s"
+msgid "Command line option %s is not understood"
+msgstr "No se entiende la opción de línea de órdenes %s"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Predominio mal formado %s línea %lu #1"
+msgid "Command line option %s is not boolean"
+msgstr "La opción de línea de órdenes %s no es un booleano"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Predominio mal formado %s línea %lu #2"
+msgid "Option %s requires an argument."
+msgstr "La opción %s necesita un argumento."
+
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opción %s: La especificación del elemento de configuración debe tener un "
+"=<val>."
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Predominio mal formado %s línea %lu #3"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "La opción %s exige un argumento entero, no '%s'"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "No se pudo leer el archivo de predominio %s"
+msgid "Option '%s' is too long"
+msgstr "Opción '%s' demasiado larga"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algoritmo desconocido de compresión '%s'"
+msgid "Sense %s is not understood, try true or false."
+msgstr "El sentido %s no se entiende, pruebe verdadero o falso."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Salida comprimida %s necesita una herramienta de compresión"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "No se pudo crear FICHERO*"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "No se pudo bifurcar"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Hijo compresión"
+msgid "Invalid operation %s"
+msgstr "Operación inválida: %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Error interno, no se pudo crear %s"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "No se pudo crear el subproceso IPC"
-
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "No se pudo ejecutar el compresor "
-
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompresor"
+msgid "Unable to stat the mount point %s"
+msgstr "No se puede obtener información del punto de montaje %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Falló la ES a subproceso/archivo"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "No se pudo cambiar a %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "No se pudo leer mientras se computaba MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "No pude montar el cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Hay problemas desligando %s"
+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"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "S"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "No se pudo abrir el fichero de bloqueo '%s'"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Error de compilación de expresiones regulares - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Los siguientes paquetes tienen dependencias incumplidas:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "No se pudo bloquear %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "pero %s está instalado"
+msgid "Waited for %s but it wasn't there"
+msgstr "Esperaba %s pero no estaba allí"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "pero %s va a ser instalado"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "El subproceso %s recibió un fallo de segmentación."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "pero no es instalable"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "El subproceso %s devolvió un código de error (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "pero es un paquete virtual"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "El subproceso %s terminó de forma inesperada"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "pero no está instalado"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "No pude abrir el fichero %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "pero no va a instalarse"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "leídos, todavía debía leer %lu pero no queda nada"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " o"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Se instalarán los siguientes paquetes NUEVOS:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problemas cerrando el archivo"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Los siguientes paquetes se ELIMINARÁN:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Hay problemas desligando el fichero %s"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Los siguientes paquetes se han retenido:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Hay problemas sincronizando el fichero"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Se actualizarán los siguientes paquetes:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Caché de paquetes vacía."
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Se DESACTUALIZARÁN los siguientes paquetes:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "El archivo de caché de paquetes esta corrompido"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Se cambiarán los siguientes paquetes retenidos:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "El archivo de caché de paquetes es una versión incompatible"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Este APT no soporta el sistema de versiones '%s'"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "La caché de paquetes se había creado para una arquitectura diferente"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu actualizados, %lu se instalarán, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depende"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "PreDepende"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desactualizados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Sugiere"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu para eliminar y %lu no actualizados.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recomienda"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu no instalados del todo o eliminados.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Entra en conflicto"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Corrigiendo dependencias..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Reemplaza"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " falló."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Hace obsoleto"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "No se puede corregir las dependencias"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "Rompe"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "No se puede minimizar el conjunto de actualización"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "importante"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Listo"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "requiere"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Tal vez quiera ejecutar `apt-get -f install' para corregirlo."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "estándar"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticación ignorado.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Creando árbol de dependencias"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "¿Instalar estos paquetes sin verificación [s/N]? "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versiones candidatas"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Algunos paquetes no se pueden autenticar"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generación de dependencias"
+
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "Leyendo la información de estado"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Hay problemas y se utilizó -y sin --force-yes"
+#: apt-pkg/depcache.cc:219
+#, c-format
+msgid "Failed to open StateFile %s"
+msgstr "No se pudo abrir el fichero de estado %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Error interno, InstallPackages fue llamado con un paquete roto!"
+#: apt-pkg/depcache.cc:225
+#, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Falló la escritura del fichero de estado temporal %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Los paquetes necesitan eliminarse pero Remove está deshabilitado."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "No se pudo tratar el archivo de paquetes %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Error interno, no terminó el ordenamiento"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "No se pudo tratar el archivo de paquetes %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "No se puede bloquear el directorio de descarga"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Línea %lu mal formada en lista de fuentes %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Que raro.. Los tamaños no concuerdan, mande un correo a \n"
-"apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Línea %lu mal formada en lista de fuentes %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Se necesita descargar %sB/%sB de archivos.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Línea %lu mal formada en lista de fuentes %s (análisis de URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Necesito descargar %sB de archivos.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Línea %lu mal formada en lista de fuentes %s (dist absoluta)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr ""
-"Se utilizarán %sB de espacio de disco adicional después de desempaquetar.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Línea %lu mal formada en lista de fuentes %s (análisis de dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Se liberarán %sB después de desempaquetar.\n"
+msgid "Opening %s"
+msgstr "Abriendo %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "No pude determinar el espacio libre en %s"
+msgid "Line %u too long in source list %s."
+msgstr "Línea %u demasiado larga en la lista de fuentes %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "No tiene suficiente espacio libre en %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Línea %u mal formada en lista de fuentes %s (tipo)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Se especificó Trivial Only pero ésta no es una operación trivial."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Tipo '%s' desconocido en la línea %u de lista de fuentes %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Sí, ¡haga lo que le digo!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Línea %u mal formada en la lista de fuentes %s (id del fabricante)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Está a punto de hacer algo potencialmente dañino\n"
-"Para continuar escriba la frase «%s»\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abortado."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "¿Desea continuar [S/n]? "
+"Esta ejecución de la instalación requiere eliminar temporalmente el \n"
+"paquete esencial %s debido a un bucle de Conflictos/Pre-Dependencias. \n"
+"Esto generalmente es malo, pero si realmente quiere hacerlo, active \n"
+"la opción APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Imposible obtener %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Algunos archivos no pudieron descargarse"
+msgid "Index file type '%s' is not supported"
+msgstr "No se da soporte para el tipo de archivo de índice '%s'"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Descarga completa y en modo de sólo descarga"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para "
+"éste."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar\n"
-"apt-get update o deba intentarlo de nuevo con --fix-missing?"
+"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido "
+"causado por paquetes retenidos."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "Actualmente no están soportados --fix-missing e intercambio de medio"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"No se pudieron corregir los problemas, usted ha retenido paquetes\n"
+"rotos."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "No se pudieron corregir los paquetes que faltan."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Falta el directorio de listas %spartial."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Abortando la instalación."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Falta el directorio de archivos %spartial."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Nota, seleccionando %s en lugar de %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Descargando fichero %li de %li (falta %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Ignorando %s, ya esta instalado y la actualización no esta activada.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Descargando fichero %li de %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "El paquete %s no esta instalado, no se eliminará\n"
+msgid "The method driver %s could not be found."
+msgstr "No se pudo encontrar el método %s."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "El paquete %s es un paquete virtual provisto por:\n"
+msgid "Method %s did not start correctly"
+msgstr "El método %s no se inició correctamente"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Instalado]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y presione Intro"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Necesita seleccionar explícitamente uno para instalar."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "El sistema de paquetes '%s' no está soportado"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "No se pudo leer %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Debe poner algunos URIs 'fuente' en su sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
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"
+"No se pudieron analizar o abrir las listas de paquetes o el archivo de "
+"estado."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Sin embargo, los siguientes paquetes lo reemplazan:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Tal vez quiera ejecutar 'apt-get update' para corregir estos problemas"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr ""
+"Registro inválido en el archivo de preferencias, no hay cabecera de paquete"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "El paquete %s no tiene candidato para su instalación"
+msgid "Did not understand pin type %s"
+msgstr "No se entiende el pin tipo %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "No hay prioridad especificada para pin (o es cero)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "La caché tiene una versión incompatible de sistema de versiones"
+
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewPackage)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ya está en su versión más reciente.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Ocurrió un error mientras se procesaba %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Ocurrió un error mientras se procesaba %s (UsePackage2)"
+
+#: apt-pkg/pkgcachegen.cc:182
+#, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:213
+#, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewVersion1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "No se encontró la Distribución '%s' para '%s'"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Ocurrió un error mientras se procesaba %s (UsePackage3)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "No se encontró la versión '%s' para '%s'"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewVersion2)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versión seleccionada %s (%s) para %s\n"
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc2)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "El comando de actualización no toma argumentos"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr ""
+"Vaya, excedió el número de nombres de paquetes que este APT es capaz de "
+"manejar."
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "No se pudo bloquear el directorio de listas"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar."
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
-"Algunos archivos de índice no se han podido descargar, se han ignorado,\n"
-"o se ha utilizado unos antiguos en su lugar."
+"Vaya, excedió el número de descripciones que este APT es capaz de manejar."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»"
+"Vaya, excedió el número de dependencias que este APT es capaz de manejar."
-#: cmdline/apt-get.cc:1465
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr ""
-"Se instalaron de forma automática los siguientes paquetes y ya no son "
-"necesarios."
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Ocurrió un error mientras procesaba %s (FindPkg)"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr "Utilice «apt-get autoremove» para eliminarlos."
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Ocurrió un error mientras procesaba %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
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."
-
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "La siguiente información puede ayudar a resolver la situación:"
+"Al procesar las dependencias de archivos no se encontró el\n"
+"paquete %s %s"
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Error interno, «AutoRemover» rompió cosas"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "No se puede leer la lista de paquetes fuente %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Error Interno, AllUpgrade rompió cosas"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Recogiendo archivos que proveen"
-#: cmdline/apt-get.cc:1545
-#, c-format
-msgid "Couldn't find task %s"
-msgstr "No se pudo encontrar la tarea %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Error de E/S guardando caché fuente"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "No se pudo encontrar el paquete %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "falló el cambio de nombre, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Nota, seleccionando %s para la expresión regular '%s'\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "La suma MD5 difiere"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
-msgstr "fijado %s como instalado manualmente.\n"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "La suma MD5 difiere"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Tal vez quiera ejecutar `apt-get -f install' para corregirlo:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr ""
+"No existe ninguna clave pública disponible para los siguientes "
+"identificadores de clave:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Dependencias incumplidas. Intente 'apt-get -f install' sin paquetes (o "
-"especifique una solución)."
+"No se pudo localizar un archivo para el paquete %s. Esto puede significar "
+"que necesita arreglar manualmente este paquete (debido a que falta una "
+"arquitectura)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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."
+"No se pudo localizar un archivo para el paquete %s. Esto puede significar "
+"que necesita arreglar manualmente este paquete."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Como sólo solicito una única operación, es extremadamente posible que el\n"
-"paquete simplemente no sea instalable y debería de rellenar un informe de\n"
-"error contra ese paquete."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Paquetes rotos"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Se instalarán los siguientes paquetes extras:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Paquetes sugeridos:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Paquetes recomendados"
+"Los archivos de índice de paquetes están corrompidos. El campo 'Filename:' "
+"no existe para para el paquete %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calculando la actualización... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "El tamaño difiere"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Listo"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Bloque de fabricante %s sin huella digital"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"Error interno, el sistema de solución de problemas rompió\n"
-"algunas cosas"
+"Usando el punto de montaje del CD-ROM %s\n"
+"Montando el CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Debe especificar al menos un paquete para obtener su código fuente"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificando.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "No se pudo encontrar un paquete de fuentes para %s"
+msgid "Stored label: %s\n"
+msgstr "Etiqueta guardada: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Ignorando fichero ya descargado '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "Desmontando el CD-ROM...\n"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "No tiene suficiente espacio libre en %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Usando el punto de montaje del CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Necesito descargar %sB/%sB de archivos fuente.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Desmontando el CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Necesito descargar %sB de archivos fuente.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Esperando el disco...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Fuente obtenida %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Montando el CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "No se pudieron obtener algunos archivos."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Buscando en el disco archivos de índices...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Se encontraron %i índices de paquetes, %i índices de fuentes, %i índices de "
+"traducción y %i firmas\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Falló la orden de desempaquetamiento '%s'.\n"
+msgid "Found label '%s'\n"
+msgstr "Se encontró la etiqueta: '%s'\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Falló la orden de construcción '%s'.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Este disco se llama: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Falló el proceso hijo"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Copiando las listas de paquetes..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Debe especificar al menos un paquete para verificar sus\n"
-"dependencias de construcción"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Escribiendo nueva lista de fuente\n"
-#: cmdline/apt-get.cc:2357
-#, 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"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Las entradas de la lista de fuentes para este disco son:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s no tiene dependencias de construcción.\n"
+msgid "Wrote %i records.\n"
+msgstr "%i registros escritos.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"La dependencia %s en %s no puede satisfacerse porque no se puede \n"
-"encontrar el paquete %s"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i registros escritos con %i fichero de menos.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"La dependencia %s en %s no puede satisfacerse porque ninguna versión\n"
-"disponible del paquete %s satisface los requisitos de versión"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i registros escritos con %i fichero mal emparejado\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es "
-"demasiado nuevo"
+"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "No se pudo satisfacer la dependencia %s para %s: %s"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Falta el directorio de listas %spartial."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "No se pudieron procesar las dependencias de construcción"
+msgid "Preparing %s"
+msgstr "Preparando %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Módulos soportados:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Desempaquetando %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " purge - Remove and purge packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Uso: apt-get [opciones] orden\n"
-" apt-get [opciones] install|remove paq1 [paq2 ...]\n"
-" apt-get [opciones] source paq1 [paq2 ...]\n"
-"\n"
-"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n"
-"instalar paquetes. Las órdenes más utilizadas son update e install.\n"
-"\n"
-"Órdenes:\n"
-" update - Descarga nuevas listas de paquetes\n"
-" upgrade - Realiza una actualización\n"
-" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n"
-" remove - Elimina paquetes\n"
-" purge - Elimina y purga paquetes\n"
-" source - Descarga archivos fuente\n"
-" build-dep - Configura las dependencias de construcción para paquetes "
-"fuente\n"
-" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n"
-" dselect-upgrade - Sigue las selecciones de dselect\n"
-" clean - Elimina los archivos descargados\n"
-" autoclean - Elimina los archivos descargados antiguos\n"
-" check - Verifica que no haya dependencias incumplidas\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda.\n"
-" -q Salida registrable - sin indicador de progreso\n"
-" -qq Sin salida, excepto si hay errores\n"
-" -d Sólo descarga - NO instala o desempaqueta los archivos\n"
-" -s No actúa. Realiza una simulación\n"
-" -y Asume Sí para todas las consultas\n"
-" -f Intenta continuar si la comprobación de integridad falla\n"
-" -m Intenta continuar si los archivos no son localizables\n"
-" -u Muestra también una lista de paquetes actualizados\n"
-" -b Construye el paquete fuente después de obtenerlo\n"
-" -V Muesta números de versión detallados\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria, p. ej. \n"
-" -o dir::cache=/tmp\n"
-"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt.conf"
-"(5)\n"
-"para más información y opciones.\n"
-" Este APT tiene poderes de Super Vaca.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Preparándose para configurar %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Obj "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Configurando %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Des:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Error procesando el directorio %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s instalado"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Preparándose para eliminar %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Descargados %sB en %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Eliminando %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Trabajando]"
+msgid "Removed %s"
+msgstr "%s eliminado"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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\n"
-" '%s'\n"
-"en la unidad '%s' y presione Intro\n"
+msgid "Preparing to completely remove %s"
+msgstr "Preparándose para eliminar completamente %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "¡Registro de paquete desconocido!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Se borró completamente %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Uso: apt-sortpkgs [opciones] archivo1 [archivo2 ...]\n"
-"\n"
-"apt-sortpkgs es una herramienta sencilla para ordenar archivos de paquetes.\n"
-"La opción -s se utiliza para indicar qué tipo de archivo es.\n"
-"\n"
-"Opciones:\n"
-" -h Este texto de ayuda.\n"
-" -s Utiliza ordenamiento de archivos fuente\n"
-" -c=? Lee este archivo de configuración\n"
-" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
-"cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "¡Parámetro por omisión incorrecto!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "No pude parchear el fichero"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Presione Intro para continuar."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "La conexión se cerró prematuramente"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr ""
-"Ocurrieron algunos errores mientras se desempaquetaba. Se va a configurar el"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Línea %d demasiado larga (máx %lu)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"paquetes que fueron instalados. Esto puede dar lugar a errores duplicados"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc1)"
-#: dselect/install:102
-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\n"
-"errores"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Ocurrió un error mientras se procesaba %s (NewFileDesc2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"encima de este mensaje son importantes. Por favor corrijalas y ejecute\n"
-"[I]nstall otra vez"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Etiqueta guardada: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Fusionando información disponible"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Se encontraron %i índices de paquetes, %i índices de fuentes, %i índices "
+#~ "de traducción y %i firmas\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt_po_eu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-28 07:55+0100\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-11-27 10:10+0000\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: Euskara <Librezale@librezale.org>\n"
#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, c-format
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n"
msgstr "Ezin da ireki %s datu-base fitxategia: %s"
#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
-#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 methods/gpgv.cc:272
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr "Huts egin du %s(e)tik datuak lortzean"
msgid " %s has no binary override entry either\n"
msgstr " %s: ez du bitar gainidazketa sarrerarik\n"
-#: ftparchive/contents.cc:317
+#: ftparchive/contents.cc:321
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Barne Errorea, ezin da %s atala kokatu"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
msgid "realloc - Failed to allocate memory"
msgstr "realloc - Huts egin du memoria esleitzean"
msgid "Failed to read the override file %s"
msgstr "Huts egin du %s override fitxategia irakurtzean"
-#: ftparchive/multicompress.cc:71
+#: ftparchive/multicompress.cc:72
#, c-format
msgid "Unknown compression algorithm '%s'"
msgstr "'%s' Konpresio Algoritmo Ezezaguna"
-#: ftparchive/multicompress.cc:101
+#: ftparchive/multicompress.cc:102
#, c-format
msgid "Compressed output %s needs a compression set"
msgstr "%s irteera konprimituak konpresio-tresna bat behar du"
-#: ftparchive/multicompress.cc:168 methods/rsh.cc:91
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean"
-#: ftparchive/multicompress.cc:194
+#: ftparchive/multicompress.cc:195
msgid "Failed to create FILE*"
msgstr "Huts egin du FILE* sortzean"
-#: ftparchive/multicompress.cc:197
+#: ftparchive/multicompress.cc:198
msgid "Failed to fork"
msgstr "Huts egin du sardetzean"
-#: ftparchive/multicompress.cc:211
+#: ftparchive/multicompress.cc:212
msgid "Compress child"
msgstr "Konprimatu Umeak"
-#: ftparchive/multicompress.cc:234
+#: ftparchive/multicompress.cc:235
#, c-format
msgid "Internal error, failed to create %s"
msgstr "Barne Errorea, Huts %s sortzerakoan"
-#: ftparchive/multicompress.cc:285
+#: ftparchive/multicompress.cc:286
msgid "Failed to create subprocess IPC"
msgstr "Huts egin du IPC azpiprozesua sortzean"
-#: ftparchive/multicompress.cc:320
+#: ftparchive/multicompress.cc:321
msgid "Failed to exec compressor "
msgstr "Huts egin du konpresorea exekutatzean "
-#: ftparchive/multicompress.cc:359
+#: ftparchive/multicompress.cc:360
msgid "decompressor"
msgstr "deskonpresorea"
-#: ftparchive/multicompress.cc:402
+#: ftparchive/multicompress.cc:403
msgid "IO to subprocess/file failed"
msgstr "Huts egin du azpiprozesu/fitxategiko S/Iak"
-#: ftparchive/multicompress.cc:454
+#: ftparchive/multicompress.cc:455
msgid "Failed to read while computing MD5"
msgstr "Huts egin du MD5 konputatzean"
-#: ftparchive/multicompress.cc:471
+#: ftparchive/multicompress.cc:472
#, c-format
msgid "Problem unlinking %s"
msgstr "Arazoa %s desestekatzean"
-#: ftparchive/multicompress.cc:486 apt-inst/extract.cc:185
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
msgid "Failed to rename %s to %s"
msgstr "Huts egin du %s izenaren ordez %s ipintzean"
-#: cmdline/apt-get.cc:121
+#: cmdline/apt-get.cc:124
msgid "Y"
msgstr "Y"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
msgid "Regex compilation error - %s"
msgstr "Adierazpen erregularren konpilazio errorea - %s"
-#: cmdline/apt-get.cc:238
+#: cmdline/apt-get.cc:241
msgid "The following packages have unmet dependencies:"
msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:"
-#: cmdline/apt-get.cc:328
+#: cmdline/apt-get.cc:331
#, c-format
msgid "but %s is installed"
msgstr "baina %s instalatuta dago"
-#: cmdline/apt-get.cc:330
+#: cmdline/apt-get.cc:333
#, c-format
msgid "but %s is to be installed"
msgstr "baina %s instalatzeko dago"
-#: cmdline/apt-get.cc:337
+#: cmdline/apt-get.cc:340
msgid "but it is not installable"
msgstr "baina ez da instalagarria"
-#: cmdline/apt-get.cc:339
+#: cmdline/apt-get.cc:342
msgid "but it is a virtual package"
msgstr "baina pakete birtuala da"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not installed"
msgstr "baina ez dago instalatuta"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not going to be installed"
msgstr "baina ez da instalatuko"
-#: cmdline/apt-get.cc:347
+#: cmdline/apt-get.cc:350
msgid " or"
msgstr " edo"
-#: cmdline/apt-get.cc:376
+#: cmdline/apt-get.cc:379
msgid "The following NEW packages will be installed:"
msgstr "Ondorengo pakete BERRIAK instalatuko dira:"
-#: cmdline/apt-get.cc:402
+#: cmdline/apt-get.cc:405
msgid "The following packages will be REMOVED:"
msgstr "Ondorengo paketeak KENDUKO dira:"
-#: cmdline/apt-get.cc:424
+#: cmdline/apt-get.cc:427
msgid "The following packages have been kept back:"
msgstr "Ondorengo paketeak mantendu egin dira:"
-#: cmdline/apt-get.cc:445
+#: cmdline/apt-get.cc:448
msgid "The following packages will be upgraded:"
msgstr "Ondorengo paketeak bertsio-berrituko dira:"
-#: cmdline/apt-get.cc:466
+#: cmdline/apt-get.cc:469
msgid "The following packages will be DOWNGRADED:"
msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:"
-#: cmdline/apt-get.cc:486
+#: cmdline/apt-get.cc:489
msgid "The following held packages will be changed:"
msgstr "Ondorengo pakete atxikiak aldatu egingo dira:"
-#: cmdline/apt-get.cc:539
+#: cmdline/apt-get.cc:542
#, c-format
msgid "%s (due to %s) "
msgstr "%s (arrazoia: %s) "
-#: cmdline/apt-get.cc:547
+#: cmdline/apt-get.cc:550
msgid ""
"WARNING: The following essential packages will be removed.\n"
"This should NOT be done unless you know exactly what you are doing!"
"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n"
"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!"
-#: cmdline/apt-get.cc:578
+#: cmdline/apt-get.cc:581
#, c-format
msgid "%lu upgraded, %lu newly installed, "
msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, "
-#: cmdline/apt-get.cc:582
+#: cmdline/apt-get.cc:585
#, c-format
msgid "%lu reinstalled, "
msgstr "%lu berrinstalatuta, "
-#: cmdline/apt-get.cc:584
+#: cmdline/apt-get.cc:587
#, c-format
msgid "%lu downgraded, "
msgstr "%lu aurreko bertsiora itzulita, "
-#: cmdline/apt-get.cc:586
+#: cmdline/apt-get.cc:589
#, c-format
msgid "%lu to remove and %lu not upgraded.\n"
msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n"
-#: cmdline/apt-get.cc:590
+#: cmdline/apt-get.cc:593
#, c-format
msgid "%lu not fully installed or removed.\n"
msgstr "%lu ez erabat instalatuta edo kenduta.\n"
-#: cmdline/apt-get.cc:664
+#: cmdline/apt-get.cc:667
msgid "Correcting dependencies..."
msgstr "Mendekotasunak zuzentzen..."
-#: cmdline/apt-get.cc:667
+#: cmdline/apt-get.cc:670
msgid " failed."
msgstr " : huts egin du."
-#: cmdline/apt-get.cc:670
+#: cmdline/apt-get.cc:673
msgid "Unable to correct dependencies"
msgstr "Ezin dira mendekotasunak zuzendu"
-#: cmdline/apt-get.cc:673
+#: cmdline/apt-get.cc:676
msgid "Unable to minimize the upgrade set"
msgstr "Ezin da bertsio berritzeko multzoa minimizatu"
-#: cmdline/apt-get.cc:675
+#: cmdline/apt-get.cc:678
msgid " Done"
msgstr " Eginda"
-#: cmdline/apt-get.cc:679
+#: cmdline/apt-get.cc:682
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:682
+#: cmdline/apt-get.cc:685
msgid "Unmet dependencies. Try using -f."
msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz."
-#: cmdline/apt-get.cc:704
+#: cmdline/apt-get.cc:707
msgid "WARNING: The following packages cannot be authenticated!"
msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!"
-#: cmdline/apt-get.cc:708
+#: cmdline/apt-get.cc:711
msgid "Authentication warning overridden.\n"
msgstr "Egiaztapen abisua gainidazten.\n"
-#: cmdline/apt-get.cc:715
+#: cmdline/apt-get.cc:718
msgid "Install these packages without verification [y/N]? "
msgstr "Paketeak egiaztapen gabe instalatu [b/E]? "
-#: cmdline/apt-get.cc:717
+#: cmdline/apt-get.cc:720
msgid "Some packages could not be authenticated"
msgstr "Zenbait pakete ezin dira egiaztatu"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
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:770
+#: cmdline/apt-get.cc:773
msgid "Internal error, InstallPackages was called with broken packages!"
msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!"
-#: cmdline/apt-get.cc:779
+#: cmdline/apt-get.cc:782
msgid "Packages need to be removed but remove is disabled."
msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago."
-#: cmdline/apt-get.cc:790
+#: cmdline/apt-get.cc:793
msgid "Internal error, Ordering didn't finish"
msgstr "Barne errorea, ez da ordenatzeaz amaitu"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
msgid "Unable to lock the download directory"
msgstr "Ezin da deskarga direktorioa blokeatu"
-#: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2093 cmdline/apt-get.cc:2334
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
#: apt-pkg/cachefile.cc:63
msgid "The list of sources could not be read."
msgstr "Ezin izan da Iturburu zerrenda irakurri."
-#: cmdline/apt-get.cc:831
+#: cmdline/apt-get.cc:834
msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
"Hau bitxia.. Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra "
"berri emanez (ingelesez)"
-#: cmdline/apt-get.cc:836
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Need to get %sB/%sB of archives.\n"
msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n"
-#: cmdline/apt-get.cc:839
+#: cmdline/apt-get.cc:842
#, c-format
msgid "Need to get %sB of archives.\n"
msgstr "Artxiboetako %sB eskuratu behar dira.\n"
-#: cmdline/apt-get.cc:844
-#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr "Deskonprimitu ondoren, %sB gehiago erabiliko dira diskoan.\n"
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr "Deskonprimitu ondoren, %sB libratuko dira diskoan.\n"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
msgid "Couldn't determine free space in %s"
msgstr "Ezin da %s(e)n duzun leku librea atzeman."
-#: cmdline/apt-get.cc:864
+#: cmdline/apt-get.cc:871
#, 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:879 cmdline/apt-get.cc:899
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
msgid "Trivial Only specified but this is not a trivial operation."
msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat."
-#: cmdline/apt-get.cc:881
+#: cmdline/apt-get.cc:889
msgid "Yes, do as I say!"
msgstr "Bai, egin esandakoa!"
-#: cmdline/apt-get.cc:883
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
"You are about to do something potentially harmful.\n"
"Jarraitzeko, idatzi '%s' esaldia\n"
" ?] "
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
msgid "Abort."
msgstr "Abortatu."
-#: cmdline/apt-get.cc:904
+#: cmdline/apt-get.cc:912
msgid "Do you want to continue [Y/n]? "
msgstr "Aurrera jarraitu nahi al duzu [B/e]? "
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
msgid "Failed to fetch %s %s\n"
msgstr "Ezin da lortu %s %s\n"
-#: cmdline/apt-get.cc:994
+#: cmdline/apt-get.cc:1002
msgid "Some files failed to download"
msgstr "Fitxategi batzuk ezin izan dira deskargatu"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
msgid "Download complete and in download only mode"
msgstr "Deskarga amaituta eta deskarga soileko moduan"
-#: cmdline/apt-get.cc:1001
+#: cmdline/apt-get.cc:1009
msgid ""
"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
"missing?"
"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo "
"--fix-missing aukerarekin saiatu?"
-#: cmdline/apt-get.cc:1005
+#: cmdline/apt-get.cc:1013
msgid "--fix-missing and media swapping is not currently supported"
msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz"
-#: cmdline/apt-get.cc:1010
+#: cmdline/apt-get.cc:1018
msgid "Unable to correct missing packages."
msgstr "Falta diren paketeak ezin dira zuzendu."
-#: cmdline/apt-get.cc:1011
+#: cmdline/apt-get.cc:1019
msgid "Aborting install."
msgstr "Abortatu instalazioa."
-#: cmdline/apt-get.cc:1045
+#: cmdline/apt-get.cc:1053
#, c-format
msgid "Note, selecting %s instead of %s\n"
msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
-#: cmdline/apt-get.cc:1055
+#: cmdline/apt-get.cc:1063
#, 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:1073
+#: cmdline/apt-get.cc:1081
#, 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:1084
+#: cmdline/apt-get.cc:1092
#, 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:1096
+#: cmdline/apt-get.cc:1104
msgid " [Installed]"
msgstr " [Instalatuta]"
-#: cmdline/apt-get.cc:1101
+#: cmdline/apt-get.cc:1109
msgid "You should explicitly select one to install."
msgstr "Zehazki bat hautatu behar duzu instalatzeko."
-#: cmdline/apt-get.cc:1106
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
"Package %s is not available, but is referred to by another package.\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:1125
+#: cmdline/apt-get.cc:1133
msgid "However the following packages replace it:"
msgstr "Baina ondorengo paketeek ordezten dute:"
-#: cmdline/apt-get.cc:1128
+#: cmdline/apt-get.cc:1136
#, c-format
msgid "Package %s has no installation candidate"
msgstr "%s paketeak ez du instalatzeko hautagairik"
-#: cmdline/apt-get.cc:1148
+#: cmdline/apt-get.cc:1156
#, 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:1156
+#: cmdline/apt-get.cc:1164
#, c-format
msgid "%s is already the newest version.\n"
msgstr "%s bertsiorik berriena da jada.\n"
-#: cmdline/apt-get.cc:1185
+#: cmdline/apt-get.cc:1193
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu"
-#: cmdline/apt-get.cc:1187
+#: cmdline/apt-get.cc:1195
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu"
-#: cmdline/apt-get.cc:1193
+#: cmdline/apt-get.cc:1201
#, c-format
msgid "Selected version %s (%s) for %s\n"
msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
-#: cmdline/apt-get.cc:1330
+#: cmdline/apt-get.cc:1338
msgid "The update command takes no arguments"
msgstr "Eguneratzeko komandoak ez du argumenturik hartzen"
-#: cmdline/apt-get.cc:1343
+#: cmdline/apt-get.cc:1351
msgid "Unable to lock the list directory"
msgstr "Ezin da zerrenda direktorioa blokeatu"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
msgid ""
"Some index files failed to download, they have been ignored, or old ones "
"used instead."
"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo "
"zaharrak erabili dira haien ordez."
-#: cmdline/apt-get.cc:1433
+#: cmdline/apt-get.cc:1441
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:1465
+#: cmdline/apt-get.cc:1473
msgid ""
"The following packages were automatically installed and are no longer "
"required:"
"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
"behar."
-#: cmdline/apt-get.cc:1467
+#: cmdline/apt-get.cc:1475
msgid "Use 'apt-get autoremove' to remove them."
msgstr "'apt-get autoremove' erabili ezabatzeko."
-#: cmdline/apt-get.cc:1472
+#: cmdline/apt-get.cc:1480
msgid ""
"Hmm, seems like the AutoRemover destroyed something which really\n"
"shouldn't happen. Please file a bug report against apt."
"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n"
"Mesedez programa errore txosten bat bete mesedez."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
msgid "The following information may help to resolve the situation:"
msgstr "Informazio honek arazoa konpontzen lagun dezake:"
-#: cmdline/apt-get.cc:1479
+#: cmdline/apt-get.cc:1487
msgid "Internal Error, AutoRemover broke stuff"
msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du"
-#: cmdline/apt-get.cc:1498
+#: cmdline/apt-get.cc:1506
msgid "Internal error, AllUpgrade broke stuff"
msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du"
-#: cmdline/apt-get.cc:1545
+#: cmdline/apt-get.cc:1553
#, c-format
msgid "Couldn't find task %s"
msgstr "Ezin izan da %s zeregina aurkitu"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
msgid "Couldn't find package %s"
msgstr "Ezin izan da %s paketea aurkitu"
-#: cmdline/apt-get.cc:1683
+#: cmdline/apt-get.cc:1691
#, c-format
msgid "Note, selecting %s for regex '%s'\n"
msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
msgstr "%s eskuz instalatua bezala ezarri.\n"
-#: cmdline/apt-get.cc:1727
+#: cmdline/apt-get.cc:1735
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:1730
+#: cmdline/apt-get.cc:1738
msgid ""
"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
"solution)."
"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo "
"zehaztu konponbide bat)."
-#: cmdline/apt-get.cc:1742
+#: cmdline/apt-get.cc:1750
msgid ""
"Some packages could not be installed. This may mean that you have\n"
"requested an impossible situation or if you are using the unstable\n"
"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n"
"Sarrerakoetan (Incoming) egoten jarraituko dute."
-#: cmdline/apt-get.cc:1750
+#: cmdline/apt-get.cc:1758
msgid ""
"Since you only requested a single operation it is extremely likely that\n"
"the package is simply not installable and a bug report against\n"
"Eragiketa soil bat eskatu duzunez, seguru asko paketea ez da instalagarria\n"
"izango, eta pakete horren errorearen berri ematea komeni da."
-#: cmdline/apt-get.cc:1758
+#: cmdline/apt-get.cc:1766
msgid "Broken packages"
msgstr "Hautsitako paketeak"
-#: cmdline/apt-get.cc:1787
+#: cmdline/apt-get.cc:1795
msgid "The following extra packages will be installed:"
msgstr "Ondorengo pakete gehigarriak instalatuko dira:"
-#: cmdline/apt-get.cc:1876
+#: cmdline/apt-get.cc:1884
msgid "Suggested packages:"
msgstr "Iradokitako paketeak:"
-#: cmdline/apt-get.cc:1877
+#: cmdline/apt-get.cc:1885
msgid "Recommended packages:"
msgstr "Gomendatutako paketeak:"
-#: cmdline/apt-get.cc:1905
+#: cmdline/apt-get.cc:1913
msgid "Calculating upgrade... "
msgstr "Berriketak kalkulatzen... "
-#: cmdline/apt-get.cc:1908 methods/ftp.cc:702 methods/connect.cc:101
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr "Huts egin du"
-#: cmdline/apt-get.cc:1913
+#: cmdline/apt-get.cc:1921
msgid "Done"
msgstr "Eginda"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
msgid "Internal error, problem resolver broke stuff"
msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du"
-#: cmdline/apt-get.cc:2088
+#: cmdline/apt-get.cc:2096
msgid "Must specify at least one package to fetch source for"
msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat"
-#: cmdline/apt-get.cc:2167
+#: cmdline/apt-get.cc:2175
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n"
-#: cmdline/apt-get.cc:2191
+#: cmdline/apt-get.cc:2203
#, 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:2196
+#: cmdline/apt-get.cc:2209
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n"
-#: cmdline/apt-get.cc:2199
+#: cmdline/apt-get.cc:2212
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n"
-#: cmdline/apt-get.cc:2205
+#: cmdline/apt-get.cc:2218
#, c-format
msgid "Fetch source %s\n"
msgstr "Eskuratu %s iturburua\n"
-#: cmdline/apt-get.cc:2236
+#: cmdline/apt-get.cc:2249
msgid "Failed to fetch some archives."
msgstr "Huts egin du zenbat artxibo lortzean."
-#: cmdline/apt-get.cc:2264
+#: cmdline/apt-get.cc:2277
#, 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:2276
+#: cmdline/apt-get.cc:2289
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n"
-#: cmdline/apt-get.cc:2277
+#: cmdline/apt-get.cc:2290
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n"
-#: cmdline/apt-get.cc:2294
+#: cmdline/apt-get.cc:2307
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Eraikitzeko '%s' komandoak huts egin du.\n"
-#: cmdline/apt-get.cc:2313
+#: cmdline/apt-get.cc:2326
msgid "Child process failed"
msgstr "Prozesu umeak huts egin du"
-#: cmdline/apt-get.cc:2329
+#: cmdline/apt-get.cc:2342
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:2357
+#: cmdline/apt-get.cc:2370
#, 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:2377
+#: cmdline/apt-get.cc:2390
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s: ez du eraikitze mendekotasunik.\n"
-#: cmdline/apt-get.cc:2429
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
msgstr ""
"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu"
-#: cmdline/apt-get.cc:2482
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because no available versions of "
"%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:2518
+#: cmdline/apt-get.cc:2531
#, 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:2543
+#: cmdline/apt-get.cc:2556
#, 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:2557
+#: cmdline/apt-get.cc:2570
#, 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:2561
+#: cmdline/apt-get.cc:2574
msgid "Failed to process build dependencies"
msgstr "Huts egin du eraikitze mendekotasunak prozesatzean"
-#: cmdline/apt-get.cc:2593
+#: cmdline/apt-get.cc:2606
msgid "Supported modules:"
msgstr "Onartutako Moduluak:"
-#: cmdline/apt-get.cc:2634
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "%s/%s fitxategiak %s paketekoa gainidazten du"
-#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:748
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
#, c-format
msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr ""
"Hau ez da balioz DEB fitxategi bat, ez du '%s', '%s' eta '%s' atalik "
msgid "File not found"
msgstr "Ez da fitxategia aurkitu"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
msgid "Failed to stat"
msgstr "Huts egin du atzitzean"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
msgid "Failed to set modification time"
msgstr "Huts egin du aldaketa ordua ezartzean"
msgid "Couldn't access keyring: '%s'"
msgstr "Ezin da eraztuna ebatzi: '%s'"
-#: methods/gpgv.cc:100
+#: methods/gpgv.cc:101
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr "E: Acquire::gpgv::Options argumentu zerrenda luzeegia. Uzten."
-#: methods/gpgv.cc:204
+#: methods/gpgv.cc:205
msgid ""
"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu"
-#: methods/gpgv.cc:209
+#: methods/gpgv.cc:210
msgid "At least one invalid signature was encountered."
msgstr "Beintza sinadura baliogabe bat aurkitu da."
-#: methods/gpgv.cc:213
+#: methods/gpgv.cc:214
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""
"Ezin da %s abiarazi sinadura egiaztatzeko (gnupg instalaturik al dago?)"
-#: methods/gpgv.cc:218
+#: methods/gpgv.cc:219
msgid "Unknown error executing gpgv"
msgstr "Errore ezezaguna gpgv exekutatzean"
-#: methods/gpgv.cc:249
+#: methods/gpgv.cc:250
msgid "The following signatures were invalid:\n"
msgstr "Ondorengo sinadurak baliogabeak dira:\n"
-#: methods/gpgv.cc:256
+#: methods/gpgv.cc:257
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgid "Selection %s not found"
msgstr "%s hautapena ez da aurkitu"
-#: apt-pkg/contrib/configuration.cc:434
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Mota ezezaguneko laburtzapena: '%c'"
-#: apt-pkg/contrib/configuration.cc:492
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
msgid "Opening configuration file %s"
msgstr "%s konfigurazio fitxategia irekitzen"
-#: apt-pkg/contrib/configuration.cc:510
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
msgid "Line %d too long (max %u)"
msgstr "%d lerroa luzeegia da (gehienez %u)"
-#: apt-pkg/contrib/configuration.cc:606
+#: apt-pkg/contrib/configuration.cc:611
#, 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:625
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Sintaxi errorea %s:%u: Gaizki eratutako"
-#: apt-pkg/contrib/configuration.cc:642
+#: apt-pkg/contrib/configuration.cc:647
#, 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:682
+#: apt-pkg/contrib/configuration.cc:687
#, 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:689
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta"
-#: apt-pkg/contrib/configuration.cc:702
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba"
-#: apt-pkg/contrib/configuration.cc:736
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran"
msgid "MD5Sum mismatch"
msgstr "MD5Sum ez dator bat"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
msgid "Hash Sum mismatch"
msgstr "Egiaztapena ez dator bat"
-#: apt-pkg/acquire-item.cc:1091
+#: apt-pkg/acquire-item.cc:1100
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:1204
+#: apt-pkg/acquire-item.cc:1213
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu "
"beharko duzu paketea. (arkitektura falta delako)"
-#: apt-pkg/acquire-item.cc:1263
+#: apt-pkg/acquire-item.cc:1272
#, c-format
msgid ""
"I wasn't able to locate file for the %s package. This might mean you need to "
"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu "
"beharko duzu paketea."
-#: apt-pkg/acquire-item.cc:1304
+#: apt-pkg/acquire-item.cc:1313
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s "
"paketearentzat."
-#: apt-pkg/acquire-item.cc:1391
+#: apt-pkg/acquire-item.cc:1400
msgid "Size mismatch"
msgstr "Tamaina ez dator bat"
"%s CD-ROM muntatze puntua erabiltzen\n"
"CD-ROM-a muntatzen\n"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
msgid "Identifying.. "
msgstr "Egiaztatzen... "
msgid "Stored label: %s\n"
msgstr "Gordetako Etiketa: %s \n"
-#: apt-pkg/cdrom.cc:583
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD-ROM Desmuntatzen...\n"
+
+#: apt-pkg/cdrom.cc:590
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr "%s CD-ROM muntatze puntua erabiltzen\n"
-#: apt-pkg/cdrom.cc:601
+#: apt-pkg/cdrom.cc:608
msgid "Unmounting CD-ROM\n"
msgstr "CD-ROM-a desmuntatzen\n"
-#: apt-pkg/cdrom.cc:605
+#: apt-pkg/cdrom.cc:612
msgid "Waiting for disc...\n"
msgstr "Diska itxaroten...\n"
#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
+#: apt-pkg/cdrom.cc:620
msgid "Mounting CD-ROM...\n"
msgstr "CD-ROM-a muntatzen...\n"
-#: apt-pkg/cdrom.cc:631
+#: apt-pkg/cdrom.cc:638
msgid "Scanning disc for index files..\n"
msgstr "Indize fitxategien bila diska arakatzen...\n"
-#: apt-pkg/cdrom.cc:671
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
"Found %u package indexes, %u source indexes, %u translation indexes and %u "
"%u pakete indize, %u jatorri indize %u itzulpen indize eta %u sinadura "
"aurkitu dira\n"
-#: apt-pkg/cdrom.cc:708
+#: apt-pkg/cdrom.cc:715
#, c-format
msgid "Found label '%s'\n"
msgstr "Aurkitutako Etiketa: '%s' \n"
-#: apt-pkg/cdrom.cc:737
+#: apt-pkg/cdrom.cc:744
msgid "That is not a valid name, try again.\n"
msgstr "Hau ez baliozko izen bat, froga berriro.\n"
-#: apt-pkg/cdrom.cc:753
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
"This disc is called: \n"
"Diskaren izen:\n"
"'%s'\n"
-#: apt-pkg/cdrom.cc:757
+#: apt-pkg/cdrom.cc:764
msgid "Copying package lists..."
msgstr "Pakete zerrendak kopiatzen..."
-#: apt-pkg/cdrom.cc:783
+#: apt-pkg/cdrom.cc:790
msgid "Writing new source list\n"
msgstr "jatorri zerrenda berria idazten\n"
-#: apt-pkg/cdrom.cc:792
+#: apt-pkg/cdrom.cc:799
msgid "Source list entries for this disc are:\n"
msgstr "Diskoarentzako jatorri sarrerak:\n"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD-ROM Desmuntatzen...\n"
-
#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
msgid "Wrote %i records.\n"
msgstr ""
"%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik.\n"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
msgid "Directory '%s' missing"
msgstr "'%s' direktorioa falta da."
-#: apt-pkg/deb/dpkgpm.cc:572
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
msgid "Preparing %s"
msgstr "%s prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
msgid "Unpacking %s"
msgstr "%s irekitzen"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
msgid "Preparing to configure %s"
msgstr "%s konfiguratzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
msgid "Configuring %s"
msgstr "%s konfiguratzen"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
#, c-format
msgid "Processing triggers for %s"
msgstr "%s-ren abiarazleak prozesatzen"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
msgid "Installed %s"
msgstr "%s Instalatuta"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s kentzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
msgid "Removing %s"
msgstr "%s kentzen"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
msgid "Removed %s"
msgstr "%s kendurik"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s guztiz ezabatzeko prestatzen"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: apt-pkg/deb/dpkgpm.cc:625
#, c-format
msgid "Completely removed %s"
msgstr "%s guztiz ezabatu da"
-#: apt-pkg/deb/dpkgpm.cc:749
+#: apt-pkg/deb/dpkgpm.cc:775
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 "
#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr "Konexioa behar baino lehenago itxi da"
+
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "%d lerroa luzeegia da (gehienez %u)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)"
+
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Gordetako Etiketa: %s \n"
+
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "%u pakete indize, %u jatorri indize %u itzulpen indize eta %u sinadura "
+#~ "aurkitu dira\n"
+
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "Hautapenak huts egin du"
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-09-29 16:06+0300\n"
"Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Rompputietokantaa %s ei voi lukea"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei "
-"osaa lisätä uusia romppuja"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Väärä romppu"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Levyä ei löydy"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Tiedostoa ei löydy"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Komento stat ei toiminut"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //"
+msgid "Unable to locate package %s"
+msgstr "Pakettia %s ei löydy"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Kirjaudutaan sisään"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Pakettien kokonaismäärä : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Vastapään nimeä ei saa selville"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Tavallisia paketteja: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Paikallista nimeä ei saa selville"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Aitoja näennäispaketteja: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Yksinkertaisia näennäispaketteja: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER ei onnistunut, palvelimen ilmoitus: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Sekanäennäispaketteja: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Puuttuu: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::"
-"ftp::ProxyLogin on tyhjä."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Eri versioita yhteensä: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Eri versioita yhteensä: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE ei toiminut, palvelin ilmoitti: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Riippuvuuksia yhteensä: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Yhteys aikakatkaistiin"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Versio/tdsto suhteita yht: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Palvelin sulki yhteyden"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Versio/tdsto suhteita yht: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Lukuvirhe"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Tarjoamiskuvauksia yhteensä: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Vastaus aiheutti puskurin ylivuodon."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Erilaisia merkkijonoja yhteensä: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Yhteyskäytäntö on turmeltunut"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Versioriippuvuustila yhteensä: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Virhe kirjoitettaessa"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Löysää tilaa yhteensä: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Pistoketta ei voitu luoda"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Käytetty tila yhteensä: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Pakettitiedosto %s ei ole ajan tasalla."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Ei onnistunut"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "On annettava täsmälleen yksi lauseke"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Passiivista pistoketta ei voitu kytkeä."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Yhtään pakettia ei löytynyt"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo ei saanut kuuntelupistoketta"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pakettitiedostot:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Pistoketta ei voitu nimetä"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Pistoketta ei voitu kuunnella"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Pistokkeen nimeä ei saatu selville"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Paketit joissa tunniste:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Komennon PORT lähetys ei onnistu"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ei löydy)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Tuntematon osoiteperhe %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Asennettu: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ei mitään)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Pistokkeen kytkeminen aikakatkaistiin"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Ehdokas: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Yhteyttä ei voitu hyväksyä"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Paketin tunnistenumero: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Pulmia tiedoston hajautuksessa"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versiotaulukko:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\""
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Pistoke aikakatkaistiin"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\""
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s laitealustalle %s %s käännöksen päiväys %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Kysely"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Käynnistys ei onnistu"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Avataan yhteys %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Käyttö : apt-cache [valitsimet] komento\n"
+" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n"
+" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n"
+" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n"
+"\n"
+"apt-cache on alemman tason työkalu APT:n konekielisten\n"
+"välimuistitiedostojen käsittelyyn ja tutkimiseen\n"
+"Komennot:\n"
+" add - Lisää paketti lähdevälimuistiin\n"
+" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n"
+" showpkg - Näytä joitain perustietoja yhdestä paketista\n"
+" showsrc - Näytä lähdetietueet\n"
+" stats - Näytä joitain perustilastoja\n"
+" dump - Näytä koko tiedosto suppeassa muodossa\n"
+" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n"
+" unmet - Näytä tyydyttymättömät riippuvuudet\n"
+" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n"
+" show - Näytä paketin tietue luettavassa muodossa\n"
+" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n"
+" rdepends - Näytä paketin käänteiset riippuvuudet\n"
+" pkgnames - Luettele kaikkien pakettien nimet\n"
+" dotty - Tee paketeista graafit GraphVis-muodossa\n"
+" xvcg - Tee paketeista graafit xvcg-muodossa\n"
+" policy - Näytä mistä asennuspaketteja haetaan\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" -p=? Pakettivarasto\n"
+" -s=? Lähdevälimuisti\n"
+" -q Poista edistymisen ilmaisin\n"
+" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
+"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\""
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Aseta levy asemaan ja paina Enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Yhteyden %s avaus ei onnistu: %s (%s)."
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Toista tämä lopuille rompuille kasassasi."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Parametrit eivät ole pareittain"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Käyttö: apt-config [valitsimet] komento\n"
+"\n"
+"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n"
+"\n"
+"Komennot:\n"
+" shell - Muista ohjelmista käytettäväksi\n"
+" dump - Näytä asetukset\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Avataan yhteys %s"
+msgid "%s not a valid DEB package."
+msgstr "%s ei kelpaa DEB-paketiksi."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nimeä \"%s\" ei voitu selvittää"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Käyttö: apt-extracttemplates tdsto1 [tdsto2 ...]\n"
+"\n"
+"apt-extracttemplates on työkalu asetus- ja mallitietojen \n"
+"poimintaan debian-paketeista\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" -t Aseta väliaikaisten tiedostojen kansio\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Tilapäinen häiriö selvitettäessä \"%s\""
+msgid "Unable to write to %s"
+msgstr "Tiedostoon %s kirjoittaminen ei onnistu"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Paketin laajennuslista on liian pitkä"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Avainrengasta \"%s\" ei saatavilla"
+msgid "Error processing directory %s"
+msgstr "Tapahtui virhe käsiteltäessa kansiota %s"
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Parametrien luettelo Acquire::gpgv::Options liian pitkä. Lopetetaan."
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lähteiden laajennuslista on liian pitkä"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
msgstr ""
-"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus."
+"Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gnupg asennettu?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n"
+msgid "Error processing contents %s"
+msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole "
-"saatavilla:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Tiedostolle %s ei toimi stat"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Putkea %s ei voitu avata"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Prosessi %s ilmoitti lukuvirheestä"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Odotetaan otsikoita"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Vastaanotettiin yksi otsikkorivi pituudeltaan yli %u merkkiä"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Virheellinen otsikkorivi"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Käyttö: apt-ftparchive [valitsimet] komento\n"
+"Komennot: packages binääripolku [poikkeustdsto [polun alku]]\n"
+" sources lähdepolku [poikkeustdsto [polun alku]]\n"
+" contents polku\n"
+" release polku\n"
+" generate asetukset [ryhmät]\n"
+" clean asetukset\n"
+"\n"
+"apt-ftparchive tuottaa hakemistoja Debianin arkistoista. Monta "
+"tuottamistapaa\n"
+"on tuettu alkaen täysin automaattisista toiminnallisesti samoihin kuin\n"
+"dpkg-scanpackages ja dpkg-scansources.\n"
+"\n"
+"apt-ftparchive tuottaa pakettitiedostoja .deb-tiedostojen puusta.\n"
+"Pakettitiedostossa on kunkin paketin kaikkien ohjauskenttien\n"
+"sisältö sekä MD5 tiiviste ja tiedoston koko. Poikkeus-\n"
+"tiedostolla voidaan arvot Priority ja Section pakottaa halutuiksi.\n"
+"\n"
+"Samaan tapaan apt-ftparchive tuottaa lähdetiedostoja\n"
+".dscs-tiedostojen puusta. Valitsimella --source-overrride voidaan\n"
+"määrittää lähteiden poikkeustiedosto.\n"
+"\n"
+"Komennot \"packages\" ja \"sources\" olisi suoritettava puun juuressa.\n"
+"Binääripolun olisi osoitettava rekursiivisen haun alkukohtaan ja\n"
+"poikkeustiedostossa olisi oltava poikkeusilmaisimet. Polun alku\n"
+"yhdistetään tiedoston nimeen jos se on annettu. Esimerkki\n"
+"käytöstä Debianin arkiston kanssa:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" --md5 MD5 luonti\n"
+" -s=? Lähteiden poikkeustdosto\n"
+" -q Ei tulostusta\n"
+" -d=? Valinnainen välimuistitietokanta\n"
+" --no-delink delinking-virheenjäljitys päälle\n"
+" --contents Sisällysluettelotiedoston luonti\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Mitkään valinnat eivät täsmänneet"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Tietokanta on turmeltunut, tiedosto nimetty %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "HTTP-palvelimen arvoaluetuki on rikki"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Tietokanta on vanha, yritetään päivittää %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Tuntematon päiväysmuoto"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Tietokannan muoto ei kelpaa. Jos tehtiin päivitys vanhasta apt:n versiosta, "
+"on tietokanta poistettava ja luotava uudelleen."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Select ei toiminut"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Tietokantatiedostoa %s ei saatu avattua: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Yhteys aikakatkaistiin"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Tiedostolle %s ei toimi stat"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arkistolla ei ole ohjaustietuetta"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Kohdistinta ei saada"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Kansiota %s ei voi lukea\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Tdstolle %s ei toimi stat\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Tapahtui virhe luettaessa palvelimelta"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Virheellinen otsikkotieto"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Yhteys ei toiminut"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Tiedostossa virheitä "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Sisäinen virhe"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Osoitteen %s selvitys ei onnistunut"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Puun läpikäynti ei onnistunut"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Ei voitu tehdä %lu tavun mmap:ia"
+msgid "Failed to open %s"
+msgstr "Tiedoston %s avaaminen ei onnistunut"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Valintaa %s ei löydy"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Tuntematon tyypin lyhenne: \"%c\""
+msgid "Failed to readlink %s"
+msgstr "readlink %s ei onnistunut"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Avataan asetustiedosto %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Rivi %d on liian pitkä (enintään %d)"
+msgid "Failed to unlink %s"
+msgstr "unlink %s ei onnistunut"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä."
+msgid "*** Failed to link %s to %s"
+msgstr "*** Linkin %s -> %s luonti ei onnistunut"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLinkin yläraja %st saavutettu.\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arkistossa ei ollut pakettikenttää"
+
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa"
+msgid " %s has no override entry\n"
+msgstr " %s:llä ei ole poikkeustietuetta\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s ylläpitäjä on %s eikä %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea"
+msgid " %s has no source override entry\n"
+msgstr " %s:llä ei ole poikkeustietuetta\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä"
+msgid " %s has no binary override entry either\n"
+msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\""
+msgid "Internal error, could not locate member %s"
+msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Muistin varaaminen ei onnistunut"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Unable to read %s"
-msgstr "Tiedostoa %s ei voi lukea"
+msgid "Unable to open %s"
+msgstr "Tiedoston %s avaaminen ei onnistunut"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Virhe!"
+msgid "Malformed override %s line %lu #1"
+msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 1"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Valmis"
+msgid "Malformed override %s line %lu #2"
+msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 2"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon."
+msgid "Malformed override %s line %lu #3"
+msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 3"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Komentorivin valitsin %s on tuntematon"
+msgid "Failed to read the override file %s"
+msgstr "Poikkeustiedoston %s lukeminen ei onnistunut"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Komentorivin valitsin %s ei ole totuusarvoinen"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Tuntematon pakkausalgoritmi \"%s\""
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Valitsin %s tarvitsee parametrin"
+msgid "Compressed output %s needs a compression set"
+msgstr "Pakattu tulostus %s tarvitsee pakkausjoukon"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "IPC-putken luominen aliprosessiin ei onnistunut"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\""
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "FILE* luominen ei onnistunut"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Valitsin \"%s\" on liian pitkä"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "fork ei onnistunut"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi."
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Compress-lapsiprosessi"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Invalid operation %s"
-msgstr "Virheellinen toiminto %s"
+msgid "Internal error, failed to create %s"
+msgstr "Sisäinen virhe, prosessin %s luominen ei onnistunut"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Komento stat ei toiminut liitoskohdalle %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Kansioon %s vaihto ei onnistu"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Pakkaajan käynnistäminen ei onnistunut"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Komento stat ei toiminut rompulle"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "purkaja"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Syöttö/tulostus aliprosessiin/tiedostoon ei onnistunut"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Lukkotiedostoa %s ei voitu avata"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s"
+msgid "Problem unlinking %s"
+msgstr "Ilmeni pulmia poistettaessa tiedosto %s"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not get lock %s"
-msgstr "Lukkoa %s ei saada"
+msgid "Failed to rename %s to %s"
+msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Odotettiin %s, mutta sitä ei ollut"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "K"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Aliprosessi %s aiheutti suojausvirheen."
+msgid "Regex compilation error - %s"
+msgstr "Käännösvirhe lausekkeessa - %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Aliprosessi %s palautti virhekoodin (%u)"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Aliprosessi %s lopetti odottamatta"
+msgid "but %s is installed"
+msgstr "mutta %s on asennettu"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Could not open file %s"
-msgstr "Tiedostoa %s ei voitu avata"
+msgid "but %s is to be installed"
+msgstr "mutta %s on merkitty asennettavaksi"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "read, vielä %lu lukematta mutta tiedosto loppui"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "mutta ei ole asennuskelpoinen"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "mutta on näennäispaketti"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Pulmia tiedoston sulkemisessa"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "mutta ei ole asennettu"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Pulmia tehtäessä tiedostolle unlink"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "mutta ei ole merkitty asennettavaksi"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Pulmia tehtäessä tiedostolle sync"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " tai"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Pakettivarasto on tyhjä"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Seuraavat UUDET paketit asennetaan:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Pakettivarasto on turmeltunut"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Seuraavat paketit POISTETAAN:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Pakettivaraston versio on yhteensopimaton"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Nämä paketit on jätetty odottamaan:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\""
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Nämä paketit päivitetään:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Pakettivarasto on tehty muulle arkkitehtuurille"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Nämä paketit VARHENNETAAN:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Riippuvuudet"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Seuraavat pysytetyt paketit muutetaan:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Esiriippuvuudet"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (syynä %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Ehdotukset"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n"
+"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Suosittelut"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu päivitetty, %lu uutta asennusta, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Ristiriidat"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu uudelleen asennettua, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Korvaavuudet"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu varhennettua, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Täydet korvaavuudet"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ei asennettu kokonaan tai poistettiin.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "tärkeä"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Korjataan riippuvuuksia..."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "välttämätön"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " ei onnistunut."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "perus"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Riippuvuuksien korjaus ei onnistu"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "valinnainen"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Päivitysjoukon minimointi ei onnistu"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "ylimääräinen"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Valmis"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Muodostetaan riippuvuussuhteiden puu"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Mahdolliset versiot"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Luodaan riippuvuudet"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Yhdistetään saatavuustiedot"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Varoitus varmistamisesta on ohitettu.\n"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Tiedoston %s avaaminen ei onnistunut"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Asennetaanko nämä paketit ilman todennusta [y/N]? "
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Tiedoston %s kirjoittaminen ei onnistunut"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Pakettitiedostoa %s (2) ei voi jäsentää"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Noutokansiota ei saatu lukittua"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Lähteiden luetteloa ei pystynyt lukemaan."
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Opening %s"
-msgstr "Avataan %s"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Noudettavaa arkistoa %st/%st.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Rivi %u on liian pitkä lähdeluettelossa %s."
+msgid "Need to get %sB of archives.\n"
+msgstr "Noudettavaa arkistoa %st.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Purkamisen jälkeen käytetään %st lisää levytilaa.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Purkamisen jälkeen vapautuu %st levytilaa.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Kansion %s vapaan tilan määrä ei selvinnyt"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Rivi %u on väärän muotoinen lähdeluettelossa%s (toimittajan tunniste)"
+msgid "You don't have enough free space in %s."
+msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Kyllä, tee kuten käsketään!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin %"
-"s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, mutta "
-"jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta."
+"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n"
+"Jatka kirjoittamalla \"%s\"\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Keskeytä."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Haluatko jatkaa [K/e]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy."
+msgid "Failed to fetch %s %s\n"
+msgstr "Tiedoston %s nouto ei onnistunut %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Joidenkin tiedostojen nouto ei onnistunut"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Nouto on valmis ja määrätty vain nouto"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt "
-"paketit."
+"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai "
+"kokeile --fix-missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Puuttuvia paketteja ei voi korjata."
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Asennus keskeytetään."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Luettelokansio %spartial puuttuu."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Huomautus, valitaan %s eikä %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Arkistokansio %spartial puuttuu."
+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"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Noudetaan tiedosto %li / %li"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Paketti %s on näennäispaketti, jonka kattaa:\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Asennettu]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Yksi pitää valita asennettavaksi."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Menetelmän ajuria %s ei löytynyt"
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Seuraavat paketit kuitenkin korvaavat sen:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Menetelmä %s ei käynnistynyt oikein"
+msgid "Package %s has no installation candidate"
+msgstr "Paketilla %s ei ole asennettavaa valintaa"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter."
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu"
+msgid "%s is already the newest version.\n"
+msgstr "%s on jo uusin versio.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "stat %s ei onnistu."
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Valittiin versio %s (%s) paketille %s\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Lähteiden luetteloa ei pystynyt lukemaan."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Komento update ei käytä parametreja"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Luettelokansiota ei voitu lukita"
+
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui."
+"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai "
+"käytetty vanhoja. "
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Seuraavat UUDET paketit asennetaan:"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Tunnistetyyppi %s on tuntematon"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewPackage)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Sisäinen virhe, resolver rikkoi jotain"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
+msgid "Couldn't find task %s"
+msgstr "Pakettia %s ei löytynyt"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage2)"
+msgid "Couldn't find package %s"
+msgstr "Pakettia %s ei löytynyt"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion1)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "mutta %s on merkitty asennettavaksi"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage3)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion2)"
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n"
+"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n"
+"vielä luotu tai siirretty Incoming-kansiosta."
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä."
+"Koska komennettiin vain yksi toimenpide, erittäin todennäköisesti\n"
+"paketti ei lainkaan ole asennettavissa ja olisi tehtävä vikailmoitus\n"
+"tuosta paketista."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Rikkinäiset paketit"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä."
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Ehdotetut paketit:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Suositellut paketit:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Käsitellään päivitystä ... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Ei onnistunut"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Valmis"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Sisäinen virhe, resolver rikkoi jotain"
+
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Paketin %s lähdekoodipakettia ei löytynyt"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Tapahtui virhe käsiteltäessä %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia."
+msgid "You don't have enough free space in %s"
+msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "stat ei toiminut lähdepakettiluettelolle %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Luetaan pakettiluetteloita"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "On noudettava %st lähdekoodiarkistoja.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Kootaan tiedostojen tarjoamistietoja"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Nouda lähdekoodi %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Joidenkin arkistojen noutaminen ei onnistunut."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Tiedostoon %s kirjoittaminen ei onnistu"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Purkukomento \"%s\" ei onnistunut.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ei täsmää"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Paketointikomento \"%s\" ei onnistunut.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum ei täsmää"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Lapsiprosessi kaatui"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan "
-"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Paketille %s ei ole saatavilla riippuvuustietoja"
+
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan "
-"tämän paketin itse."
+"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-"
-"kenttää."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Koko ei täsmää"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Toimittajan lohkosta %s puuttuu sormenjälki"
+"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio "
+"ei vastaa versioriippuvuuksia"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-"Käytetään rompun liitoskohtaa %s\n"
-"Liitetään romppu\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Tunnistetaan... "
+"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian "
+"uusi"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Tallennettu nimio: %s \n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Käytetään rompun liitoskohtaa %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Irrotetaan romppu\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Odotetaan levyä...\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää."
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Liitetään romppu...\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Paketointiriippuvuuksien käsittely ei onnistunut"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Etsitään levyltä hakemistotiedostoja...\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Tuetut moduulit:"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Asennuspakettien hakemistoja löytyi %i, lähdekoodipakettien hakemistoja %i "
-"ja allekirjoituksia %i\n"
+"Käyttö: apt-get [valitsimet] komento\n"
+" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n"
+" apt-get [valitsimet] source pkt1 [pkt2 ...]\n"
+"\n"
+"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n"
+"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n"
+"install.\n"
+"Komennot:\n"
+" update - Nouda uusi pakettiluettelo\n"
+" upgrade - Tee päivitys\n"
+" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n"
+" remove - Poista paketteja\n"
+" source - Nouda lähdekoodiarkistoja\n"
+" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n"
+" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n"
+" dselect-upgrade - Noudata dselect:n valintoja\n"
+" clean - Poista noudetut tiedostot\n"
+" autoclean - Poista vanhat noudetut tiedostot\n"
+" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n"
+" -qq Ei lainkaan tulostusta paitsi virheistä\n"
+" -d Vain nouto - paketteja EI asenneta tai pureta\n"
+" -s Älä tee mitään. Oikean toiminnan simulaatio\n"
+" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n"
+" -f Yritä jatkaa jos eheystarkastus löysi virheen\n"
+" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n"
+" -u Näytä luettelo myös päivitetyistä paketeista\n"
+" -b Paketoi lähdekoodipaketti noudon jälkeen\n"
+" -V Näytä pitkät versionumerot\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
+"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n"
+"lisätietoja ja lisää valitsimia.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Tallennettu nimio: %s \n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Löytyi "
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Nouda:"
+
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Siv "
+
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Vrhe "
+
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Noudettiin %st ajassa %s (%st/s)\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [Työskennellään]"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/acqprogress.cc:271
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"Tämä levy on: \n"
+"Taltion vaihto: Pistä levy \n"
"\"%s\"\n"
+"asemaan \"%s\" ja paina Enter\n"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopioidaan pakettiluetteloita..."
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Tuntematon pakettitietue!"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Kirjoitetaan uusi lähdeluettelo\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Käyttö: apt-sortpkgs [valitsimet] tdsto1 [tdsto2 ...]\n"
+"\n"
+"apt-sortpkgs on yksinkertainen työkalu pakettitiedostojen lajitteluun.\n"
+"Valitsimella -s ilmaistaan minkälainen tiedosto on.\n"
+"\n"
+"Valitsimet:\n"
+" -h Tämä ohje\n"
+" -s Käytä lähdetiedostolajittelua\n"
+" -c=? Lue tämä asetustiedosto\n"
+" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Oletusasetus ei kelpaa!"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Irrotetaan romppu..."
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Jatka painamalla Enter."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Kirjoitettiin %i tietuetta.\n"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta "
-"tiedostoa\n"
+"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja "
+"[I]nstall uudestaan"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Luettelokansio %spartial puuttuu."
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Yhdistetään saatavuustiedot"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Valmistellaan %s"
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Puretaan %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Valmistaudutaan tekemään asetukset: %s"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Tehdään asetukset: %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Tapahtui virhe käsiteltäessa kansiota %s"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s asennettu"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Valmistaudutaan poistamaan %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Poistetaan %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "%s poistettu"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Valmistaudutaan poistamaan %s kokonaan"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s poistettiin kokonaan"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Tiedostoa %s ei voitu avata"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "IPC-putken luominen aliprosessiin ei onnistunut"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Yhteys katkesi ennenaikaisesti"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Putkien luonti ei onnistunut"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Putkien luonti ei onnistunut"
#: apt-inst/contrib/extracttar.cc:141
msgid "Failed to exec gzip "
msgid "The diversion path is too long"
msgstr "Korvautuspolku on liian pitkä"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Nimen muuttaminen %s -> %s ei onnistunut"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Tiedostoa %s ei voi lukea"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Kansioiden info ja temp pitää olla samassa tiedostojärjestelmässä"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Luetaan pakettiluetteloita"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Ohjaustiedosto ei jäsenny"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Pakettia %s ei löydy"
+msgid "Unable to read the cdrom database %s"
+msgstr "Rompputietokantaa %s ei voi lukea"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Pakettien kokonaismäärä : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei "
+"osaa lisätä uusia romppuja"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Tavallisia paketteja: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Väärä romppu"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Aitoja näennäispaketteja: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Yksinkertaisia näennäispaketteja: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Levyä ei löydy"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Sekanäennäispaketteja: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Tiedostoa ei löydy"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Puuttuu: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Komento stat ei toiminut"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Eri versioita yhteensä: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Eri versioita yhteensä: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Riippuvuuksia yhteensä: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Kirjaudutaan sisään"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Versio/tdsto suhteita yht: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Vastapään nimeä ei saa selville"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Versio/tdsto suhteita yht: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Paikallista nimeä ei saa selville"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Tarjoamiskuvauksia yhteensä: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Erilaisia merkkijonoja yhteensä: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER ei onnistunut, palvelimen ilmoitus: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Versioriippuvuustila yhteensä: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Löysää tilaa yhteensä: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::"
+"ftp::ProxyLogin on tyhjä."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Käytetty tila yhteensä: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakettitiedosto %s ei ole ajan tasalla."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE ei toiminut, palvelin ilmoitti: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "On annettava täsmälleen yksi lauseke"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Yhteys aikakatkaistiin"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Yhtään pakettia ei löytynyt"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Palvelin sulki yhteyden"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pakettitiedostot:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Lukuvirhe"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Vastaus aiheutti puskurin ylivuodon."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Yhteyskäytäntö on turmeltunut"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Paketit joissa tunniste:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Virhe kirjoitettaessa"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ei löydy)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Pistoketta ei voitu luoda"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Asennettu: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ei mitään)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Passiivista pistoketta ei voitu kytkeä."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Ehdokas: "
-
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Paketin tunnistenumero: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo ei saanut kuuntelupistoketta"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versiotaulukko:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Pistoketta ei voitu nimetä"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Pistoketta ei voitu kuunnella"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s laitealustalle %s %s käännöksen päiväys %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Pistokkeen nimeä ei saatu selville"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Käyttö : apt-cache [valitsimet] komento\n"
-" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n"
-" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n"
-" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n"
-"\n"
-"apt-cache on alemman tason työkalu APT:n konekielisten\n"
-"välimuistitiedostojen käsittelyyn ja tutkimiseen\n"
-"Komennot:\n"
-" add - Lisää paketti lähdevälimuistiin\n"
-" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n"
-" showpkg - Näytä joitain perustietoja yhdestä paketista\n"
-" showsrc - Näytä lähdetietueet\n"
-" stats - Näytä joitain perustilastoja\n"
-" dump - Näytä koko tiedosto suppeassa muodossa\n"
-" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n"
-" unmet - Näytä tyydyttymättömät riippuvuudet\n"
-" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n"
-" show - Näytä paketin tietue luettavassa muodossa\n"
-" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n"
-" rdepends - Näytä paketin käänteiset riippuvuudet\n"
-" pkgnames - Luettele kaikkien pakettien nimet\n"
-" dotty - Tee paketeista graafit GraphVis-muodossa\n"
-" xvcg - Tee paketeista graafit xvcg-muodossa\n"
-" policy - Näytä mistä asennuspaketteja haetaan\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" -p=? Pakettivarasto\n"
-" -s=? Lähdevälimuisti\n"
-" -q Poista edistymisen ilmaisin\n"
-" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Komennon PORT lähetys ei onnistu"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\""
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Tuntematon osoiteperhe %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Aseta levy asemaan ja paina Enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Toista tämä lopuille rompuille kasassasi."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Pistokkeen kytkeminen aikakatkaistiin"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Parametrit eivät ole pareittain"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Yhteyttä ei voitu hyväksyä"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Käyttö: apt-config [valitsimet] komento\n"
-"\n"
-"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n"
-"\n"
-"Komennot:\n"
-" shell - Muista ohjelmista käytettäväksi\n"
-" dump - Näytä asetukset\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Pulmia tiedoston hajautuksessa"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ei kelpaa DEB-paketiksi."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Käyttö: apt-extracttemplates tdsto1 [tdsto2 ...]\n"
-"\n"
-"apt-extracttemplates on työkalu asetus- ja mallitietojen \n"
-"poimintaan debian-paketeista\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" -t Aseta väliaikaisten tiedostojen kansio\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Pistoke aikakatkaistiin"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\""
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Paketin laajennuslista on liian pitkä"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Kysely"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Käynnistys ei onnistu"
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "Tapahtui virhe käsiteltäessa kansiota %s"
+msgid "Connecting to %s (%s)"
+msgstr "Avataan yhteys %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lähteiden laajennuslista on liian pitkä"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr ""
-"Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Yhteyden %s avaus ei onnistu: %s (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Käyttö: apt-ftparchive [valitsimet] komento\n"
-"Komennot: packages binääripolku [poikkeustdsto [polun alku]]\n"
-" sources lähdepolku [poikkeustdsto [polun alku]]\n"
-" contents polku\n"
-" release polku\n"
-" generate asetukset [ryhmät]\n"
-" clean asetukset\n"
-"\n"
-"apt-ftparchive tuottaa hakemistoja Debianin arkistoista. Monta "
-"tuottamistapaa\n"
-"on tuettu alkaen täysin automaattisista toiminnallisesti samoihin kuin\n"
-"dpkg-scanpackages ja dpkg-scansources.\n"
-"\n"
-"apt-ftparchive tuottaa pakettitiedostoja .deb-tiedostojen puusta.\n"
-"Pakettitiedostossa on kunkin paketin kaikkien ohjauskenttien\n"
-"sisältö sekä MD5 tiiviste ja tiedoston koko. Poikkeus-\n"
-"tiedostolla voidaan arvot Priority ja Section pakottaa halutuiksi.\n"
-"\n"
-"Samaan tapaan apt-ftparchive tuottaa lähdetiedostoja\n"
-".dscs-tiedostojen puusta. Valitsimella --source-overrride voidaan\n"
-"määrittää lähteiden poikkeustiedosto.\n"
-"\n"
-"Komennot \"packages\" ja \"sources\" olisi suoritettava puun juuressa.\n"
-"Binääripolun olisi osoitettava rekursiivisen haun alkukohtaan ja\n"
-"poikkeustiedostossa olisi oltava poikkeusilmaisimet. Polun alku\n"
-"yhdistetään tiedoston nimeen jos se on annettu. Esimerkki\n"
-"käytöstä Debianin arkiston kanssa:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" --md5 MD5 luonti\n"
-" -s=? Lähteiden poikkeustdosto\n"
-" -q Ei tulostusta\n"
-" -d=? Valinnainen välimuistitietokanta\n"
-" --no-delink delinking-virheenjäljitys päälle\n"
-" --contents Sisällysluettelotiedoston luonti\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Mitkään valinnat eivät täsmänneet"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)"
-#: ftparchive/apt-ftparchive.cc:832
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja"
+msgid "Connecting to %s"
+msgstr "Avataan yhteys %s"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:167
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Tietokanta on turmeltunut, tiedosto nimetty %s.old"
+msgid "Could not resolve '%s'"
+msgstr "Nimeä \"%s\" ei voitu selvittää"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:173
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Tietokanta on vanha, yritetään päivittää %s"
+msgid "Temporary failure resolving '%s'"
+msgstr "Tilapäinen häiriö selvitettäessä \"%s\""
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Avainrengasta \"%s\" ei saatavilla"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Parametrien luettelo Acquire::gpgv::Options liian pitkä. Lopetetaan."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Tietokannan muoto ei kelpaa. Jos tehtiin päivitys vanhasta apt:n versiosta, "
-"on tietokanta poistettava ja luotava uudelleen."
+"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Tietokantatiedostoa %s ei saatu avattua: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gnupg asennettu?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arkistolla ei ole ohjaustietuetta"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Kohdistinta ei saada"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole "
+"saatavilla:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Kansiota %s ei voi lukea\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Putkea %s ei voitu avata"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Tdstolle %s ei toimi stat\n"
+msgid "Read error from %s process"
+msgstr "Prosessi %s ilmoitti lukuvirheestä"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Odotetaan otsikoita"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Vastaanotettiin yksi otsikkorivi pituudeltaan yli %u merkkiä"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Tiedostossa virheitä "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Virheellinen otsikkorivi"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Osoitteen %s selvitys ei onnistunut"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Puun läpikäynti ei onnistunut"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Tiedoston %s avaaminen ei onnistunut"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "HTTP-palvelimen arvoaluetuki on rikki"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Tuntematon päiväysmuoto"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Select ei toiminut"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Yhteys aikakatkaistiin"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Tapahtui virhe luettaessa palvelimelta"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Virheellinen otsikkotieto"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Yhteys ei toiminut"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Sisäinen virhe"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "readlink %s ei onnistunut"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Ei voitu tehdä %lu tavun mmap:ia"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "unlink %s ei onnistunut"
+msgid "Selection %s not found"
+msgstr "Valintaa %s ei löydy"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Linkin %s -> %s luonti ei onnistunut"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Tuntematon tyypin lyhenne: \"%c\""
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLinkin yläraja %st saavutettu.\n"
+msgid "Opening configuration file %s"
+msgstr "Avataan asetustiedosto %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arkistossa ei ollut pakettikenttää"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Rivi %d on liian pitkä (enintään %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s:llä ei ole poikkeustietuetta\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s ylläpitäjä on %s eikä %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s:llä ei ole poikkeustietuetta\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy"
-
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Muistin varaaminen ei onnistunut"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "Unable to open %s"
-msgstr "Tiedoston %s avaaminen ei onnistunut"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 1"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\""
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 2"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Väärän muotoinen poikkeus %s rivi %lu n:ro 3"
+msgid "%c%s... Error!"
+msgstr "%c%s... Virhe!"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Poikkeustiedoston %s lukeminen ei onnistunut"
+msgid "%c%s... Done"
+msgstr "%c%s... Valmis"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Tuntematon pakkausalgoritmi \"%s\""
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Pakattu tulostus %s tarvitsee pakkausjoukon"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "FILE* luominen ei onnistunut"
+msgid "Command line option %s is not understood"
+msgstr "Komentorivin valitsin %s on tuntematon"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "fork ei onnistunut"
+#: apt-pkg/contrib/cmndline.cc:124
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr "Komentorivin valitsin %s ei ole totuusarvoinen"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Compress-lapsiprosessi"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Valitsin %s tarvitsee parametrin"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Sisäinen virhe, prosessin %s luominen ei onnistunut"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>."
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\""
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Pakkaajan käynnistäminen ei onnistunut"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Valitsin \"%s\" on liian pitkä"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "purkaja"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi."
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Syöttö/tulostus aliprosessiin/tiedostoon ei onnistunut"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Virheellinen toiminto %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Komento stat ei toiminut liitoskohdalle %s"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Ilmeni pulmia poistettaessa tiedosto %s"
+msgid "Unable to change to %s"
+msgstr "Kansioon %s vaihto ei onnistu"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "K"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Komento stat ei toiminut rompulle"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Käännösvirhe lausekkeessa - %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Lukkotiedostoa %s ei voitu avata"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "but %s is installed"
-msgstr "mutta %s on asennettu"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "but %s is to be installed"
-msgstr "mutta %s on merkitty asennettavaksi"
+msgid "Could not get lock %s"
+msgstr "Lukkoa %s ei saada"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "mutta ei ole asennuskelpoinen"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Odotettiin %s, mutta sitä ei ollut"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "mutta on näennäispaketti"
+#: apt-pkg/contrib/fileutl.cc:387
+#, c-format
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Aliprosessi %s aiheutti suojausvirheen."
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "mutta ei ole asennettu"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Aliprosessi %s palautti virhekoodin (%u)"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "mutta ei ole merkitty asennettavaksi"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Aliprosessi %s lopetti odottamatta"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " tai"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Tiedostoa %s ei voitu avata"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Seuraavat UUDET paketit asennetaan:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "read, vielä %lu lukematta mutta tiedosto loppui"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Seuraavat paketit POISTETAAN:"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Nämä paketit on jätetty odottamaan:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Pulmia tiedoston sulkemisessa"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Nämä paketit päivitetään:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Pulmia tehtäessä tiedostolle unlink"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Nämä paketit VARHENNETAAN:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Pulmia tehtäessä tiedostolle sync"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Seuraavat pysytetyt paketit muutetaan:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Pakettivarasto on tyhjä"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (syynä %s) "
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Pakettivarasto on turmeltunut"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n"
-"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Pakettivaraston versio on yhteensopimaton"
-#: cmdline/apt-get.cc:578
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu päivitetty, %lu uutta asennusta, "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\""
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu uudelleen asennettua, "
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Pakettivarasto on tehty muulle arkkitehtuurille"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu varhennettua, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Riippuvuudet"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Esiriippuvuudet"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ei asennettu kokonaan tai poistettiin.\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Ehdotukset"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Korjataan riippuvuuksia..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Suosittelut"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " ei onnistunut."
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Ristiriidat"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Riippuvuuksien korjaus ei onnistu"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Korvaavuudet"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Päivitysjoukon minimointi ei onnistu"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Täydet korvaavuudet"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Valmis"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "tärkeä"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "välttämätön"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "perus"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Varoitus varmistamisesta on ohitettu.\n"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "valinnainen"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Asennetaanko nämä paketit ilman todennusta [y/N]? "
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "ylimääräinen"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Muodostetaan riippuvuussuhteiden puu"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Mahdolliset versiot"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Luodaan riippuvuudet"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä."
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Yhdistetään saatavuustiedot"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Tiedoston %s avaaminen ei onnistunut"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Noutokansiota ei saatu lukittua"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Tiedoston %s kirjoittaminen ei onnistunut"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Pakettitiedostoa %s (1) ei voi jäsentää"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Noudettavaa arkistoa %st/%st.\n"
+msgid "Unable to parse package file %s (2)"
+msgstr "Pakettitiedostoa %s (2) ei voi jäsentää"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Noudettavaa arkistoa %st.\n"
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Purkamisen jälkeen käytetään %st lisää levytilaa.\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Purkamisen jälkeen vapautuu %st levytilaa.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kansion %s vapaan tilan määrä ei selvinnyt"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa."
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide."
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "Avataan %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Kyllä, tee kuten käsketään!"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
+msgstr "Rivi %u on liian pitkä lähdeluettelossa %s."
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:236
#, 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"
-" ?] "
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Keskeytä."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Haluatko jatkaa [K/e]? "
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Rivi %u on väärän muotoinen lähdeluettelossa%s (toimittajan tunniste)"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/packagemanager.cc:399
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Tiedoston %s nouto ei onnistunut %s\n"
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin %"
+"s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, mutta "
+"jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Joidenkin tiedostojen nouto ei onnistunut"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Nouto on valmis ja määrätty vain nouto"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai "
-"kokeile --fix-missing?"
+"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt "
+"paketit."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Puuttuvia paketteja ei voi korjata."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Luettelokansio %spartial puuttuu."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Asennus keskeytetään."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Arkistokansio %spartial puuttuu."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Huomautus, valitaan %s eikä %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Noudetaan tiedosto %li / %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n"
+msgid "The method driver %s could not be found."
+msgstr "Menetelmän ajuria %s ei löytynyt"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Paketti %s on näennäispaketti, jonka kattaa:\n"
+msgid "Method %s did not start correctly"
+msgstr "Menetelmä %s ei käynnistynyt oikein"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Asennettu]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Yksi pitää valita asennettavaksi."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä"
+
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "stat %s ei onnistu."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
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"
+"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Seuraavat paketit kuitenkin korvaavat sen:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Paketilla %s ei ole asennettavaa valintaa"
+msgid "Did not understand pin type %s"
+msgstr "Tunnistetyyppi %s on tuntematon"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewPackage)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s on jo uusin versio.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Valittiin versio %s (%s) paketille %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Komento update ei käytä parametreja"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Luettelokansiota ei voitu lukita"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai "
-"käytetty vanhoja. "
+"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Seuraavat UUDET paketit asennetaan:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Tapahtui virhe käsiteltäessä %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Sisäinen virhe, resolver rikkoi jotain"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia."
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "stat ei toiminut lähdepakettiluettelolle %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Pakettia %s ei löytynyt"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Kootaan tiedostojen tarjoamistietoja"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Pakettia %s ei löytynyt"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "mutta %s on merkitty asennettavaksi"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum ei täsmää"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum ei täsmää"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" "
-"ilmanpaketteja (tai ratkaise itse)."
+"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan "
+"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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."
+"Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan "
+"tämän paketin itse."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Koska komennettiin vain yksi toimenpide, erittäin todennäköisesti\n"
-"paketti ei lainkaan ole asennettavissa ja olisi tehtävä vikailmoitus\n"
-"tuosta paketista."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Rikkinäiset paketit"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Ehdotetut paketit:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Suositellut paketit:"
+"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-"
+"kenttää."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Käsitellään päivitystä ... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Koko ei täsmää"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Valmis"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Toimittajan lohkosta %s puuttuu sormenjälki"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Sisäinen virhe, resolver rikkoi jotain"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Käytetään rompun liitoskohtaa %s\n"
+"Liitetään romppu\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Tunnistetaan... "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Paketin %s lähdekoodipakettia ei löytynyt"
+msgid "Stored label: %s\n"
+msgstr "Tallennettu nimio: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Irrotetaan romppu..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Käytetään rompun liitoskohtaa %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Irrotetaan romppu\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "On noudettava %st lähdekoodiarkistoja.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Odotetaan levyä...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Nouda lähdekoodi %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Liitetään romppu...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Joidenkin arkistojen noutaminen ei onnistunut."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Etsitään levyltä hakemistotiedostoja...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Asennuspakettien hakemistoja löytyi %i, lähdekoodipakettien hakemistoja %i "
+"ja allekirjoituksia %i\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Purkukomento \"%s\" ei onnistunut.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Tallennettu nimio: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Paketointikomento \"%s\" ei onnistunut.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Tämä levy on: \n"
+"\"%s\"\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Lapsiprosessi kaatui"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopioidaan pakettiluetteloita..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Kirjoitetaan uusi lähdeluettelo\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Paketille %s ei ole saatavilla riippuvuustietoja"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n"
+msgid "Wrote %i records.\n"
+msgstr "Kirjoitettiin %i tietuetta.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio "
-"ei vastaa versioriippuvuuksia"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian "
-"uusi"
+"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta "
+"tiedostoa\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Luettelokansio %spartial puuttuu."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Paketointiriippuvuuksien käsittely ei onnistunut"
+msgid "Preparing %s"
+msgstr "Valmistellaan %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Tuetut moduulit:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Puretaan %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Käyttö: apt-get [valitsimet] komento\n"
-" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n"
-" apt-get [valitsimet] source pkt1 [pkt2 ...]\n"
-"\n"
-"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n"
-"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n"
-"install.\n"
-"Komennot:\n"
-" update - Nouda uusi pakettiluettelo\n"
-" upgrade - Tee päivitys\n"
-" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n"
-" remove - Poista paketteja\n"
-" source - Nouda lähdekoodiarkistoja\n"
-" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n"
-" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n"
-" dselect-upgrade - Noudata dselect:n valintoja\n"
-" clean - Poista noudetut tiedostot\n"
-" autoclean - Poista vanhat noudetut tiedostot\n"
-" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n"
-" -qq Ei lainkaan tulostusta paitsi virheistä\n"
-" -d Vain nouto - paketteja EI asenneta tai pureta\n"
-" -s Älä tee mitään. Oikean toiminnan simulaatio\n"
-" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n"
-" -f Yritä jatkaa jos eheystarkastus löysi virheen\n"
-" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n"
-" -u Näytä luettelo myös päivitetyistä paketeista\n"
-" -b Paketoi lähdekoodipaketti noudon jälkeen\n"
-" -V Näytä pitkät versionumerot\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n"
-"lisätietoja ja lisää valitsimia.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Valmistaudutaan tekemään asetukset: %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Löytyi "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Tehdään asetukset: %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Nouda:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Tapahtui virhe käsiteltäessa kansiota %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Siv "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s asennettu"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Vrhe "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Valmistaudutaan poistamaan %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Noudettiin %st ajassa %s (%st/s)\n"
+msgid "Removing %s"
+msgstr "Poistetaan %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Työskennellään]"
+msgid "Removed %s"
+msgstr "%s poistettu"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Valmistaudutaan poistamaan %s kokonaan"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Tuntematon pakettitietue!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s poistettiin kokonaan"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Käyttö: apt-sortpkgs [valitsimet] tdsto1 [tdsto2 ...]\n"
-"\n"
-"apt-sortpkgs on yksinkertainen työkalu pakettitiedostojen lajitteluun.\n"
-"Valitsimella -s ilmaistaan minkälainen tiedosto on.\n"
-"\n"
-"Valitsimet:\n"
-" -h Tämä ohje\n"
-" -s Käytä lähdetiedostolajittelua\n"
-" -c=? Lue tämä asetustiedosto\n"
-" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Oletusasetus ei kelpaa!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Tiedostoa %s ei voitu avata"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Jatka painamalla Enter."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Yhteys katkesi ennenaikaisesti"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Rivi %d on liian pitkä (enintään %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja "
-"[I]nstall uudestaan"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Tallennettu nimio: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Yhdistetään saatavuustiedot"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Asennuspakettien hakemistoja löytyi %i, lähdekoodipakettien hakemistoja %"
+#~ "i ja allekirjoituksia %i\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-28 07:55+0100\n"
-"PO-Revision-Date: 2007-10-26 08:13+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
+"PO-Revision-Date: 2007-12-17 10:42+0530\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"MIME-Version: 1.0\n"
#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
#, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s pour %s compilé sur %s %s\n"
#: cmdline/apt-cdrom.cc:78
msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »"
+msgstr "Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »"
#: cmdline/apt-cdrom.cc:93
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"
+msgstr "Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée"
#: cmdline/apt-cdrom.cc:117
msgid "Repeat this process for the rest of the CDs in your set."
#: cmdline/apt-extracttemplates.cc:310
msgid "Cannot get debconf version. Is debconf installed?"
-msgstr ""
-"Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?"
+msgstr "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?"
#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
msgid "Package extension list is too long"
" -o=? Set an arbitrary configuration option"
msgstr ""
"Usage : apt-ftparchive [options] commande\n"
-"Commandes : paquets binarypath [fichier d'« override » [chemin du "
-"préfixe]]\n"
+"Commandes : paquets binarypath [fichier d'« override » [chemin du préfixe]]\n"
" sources srcpath [fichier d'« override » [chemin du préfixe]]\n"
" contents path\n"
" release path\n"
#: ftparchive/apt-ftparchive.cc:832
#, c-format
msgid "Some files are missing in the package file group `%s'"
-msgstr ""
-"Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »"
+msgstr "Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »"
#: ftparchive/cachedb.cc:43
#, c-format
msgstr "Impossible d'ouvrir le fichier de base de données %s : %s"
#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
-#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 methods/gpgv.cc:272
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr "Impossible de statuer %s"
msgid " %s has no binary override entry either\n"
msgstr " %s ne possède pas également pas d'entrée « binary override »\n"
-#: ftparchive/contents.cc:317
+#: ftparchive/contents.cc:321
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Erreur interne, ne peut localiser la partie %s"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
msgid "realloc - Failed to allocate memory"
msgstr "realloc - Échec de l'allocation de mémoire"
msgid "Failed to read the override file %s"
msgstr "Impossible de lire le fichier d'« override » %s"
-#: ftparchive/multicompress.cc:71
+#: ftparchive/multicompress.cc:72
#, c-format
msgid "Unknown compression algorithm '%s'"
msgstr "Algorithme de compression « %s » inconnu"
-#: ftparchive/multicompress.cc:101
+#: ftparchive/multicompress.cc:102
#, c-format
msgid "Compressed output %s needs a compression set"
msgstr "La sortie compressée %s a besoin d'un ensemble de compression"
-#: ftparchive/multicompress.cc:168 methods/rsh.cc:91
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr "Impossible de créer le tube IPC sur le sous-processus"
-#: ftparchive/multicompress.cc:194
+#: ftparchive/multicompress.cc:195
msgid "Failed to create FILE*"
msgstr "Impossible de créer FILE*"
-#: ftparchive/multicompress.cc:197
+#: ftparchive/multicompress.cc:198
msgid "Failed to fork"
msgstr "Échec du fork"
-#: ftparchive/multicompress.cc:211
+#: ftparchive/multicompress.cc:212
msgid "Compress child"
msgstr "Fils compressé"
-#: ftparchive/multicompress.cc:234
+#: ftparchive/multicompress.cc:235
#, c-format
msgid "Internal error, failed to create %s"
msgstr "Erreur interne, impossible de créer %s"
-#: ftparchive/multicompress.cc:285
+#: ftparchive/multicompress.cc:286
msgid "Failed to create subprocess IPC"
msgstr "Impossible de créer un sous-processus IPC"
-#: ftparchive/multicompress.cc:320
+#: ftparchive/multicompress.cc:321
msgid "Failed to exec compressor "
msgstr "Impossible d'exécuter la compression "
-#: ftparchive/multicompress.cc:359
+#: ftparchive/multicompress.cc:360
msgid "decompressor"
msgstr "décompacteur"
-#: ftparchive/multicompress.cc:402
+#: ftparchive/multicompress.cc:403
msgid "IO to subprocess/file failed"
msgstr "Échec d'entrée/sortie du sous-processus sur le fichier"
-#: ftparchive/multicompress.cc:454
+#: ftparchive/multicompress.cc:455
msgid "Failed to read while computing MD5"
msgstr "Impossible de lire lors du calcul de la somme MD5"
-#: ftparchive/multicompress.cc:471
+#: ftparchive/multicompress.cc:472
#, c-format
msgid "Problem unlinking %s"
msgstr "Problème en déliant %s"
-#: ftparchive/multicompress.cc:486 apt-inst/extract.cc:185
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
msgid "Failed to rename %s to %s"
msgstr "Impossible de changer le nom %s en %s"
-#: cmdline/apt-get.cc:121
+#: cmdline/apt-get.cc:124
msgid "Y"
msgstr "O"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
msgid "Regex compilation error - %s"
msgstr "Erreur de compilation de l'expression rationnelle - %s"
-#: cmdline/apt-get.cc:238
+#: cmdline/apt-get.cc:241
msgid "The following packages have unmet dependencies:"
msgstr "Les paquets suivants contiennent des dépendances non satisfaites :"
-#: cmdline/apt-get.cc:328
+#: cmdline/apt-get.cc:331
#, c-format
msgid "but %s is installed"
msgstr "mais %s est installé"
-#: cmdline/apt-get.cc:330
+#: cmdline/apt-get.cc:333
#, c-format
msgid "but %s is to be installed"
msgstr "mais %s devra être installé"
-#: cmdline/apt-get.cc:337
+#: cmdline/apt-get.cc:340
msgid "but it is not installable"
msgstr "mais il n'est pas installable"
-#: cmdline/apt-get.cc:339
+#: cmdline/apt-get.cc:342
msgid "but it is a virtual package"
msgstr "mais c'est un paquet virtuel"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not installed"
msgstr "mais il n'est pas installé"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not going to be installed"
msgstr "mais ne sera pas installé"
-#: cmdline/apt-get.cc:347
+#: cmdline/apt-get.cc:350
msgid " or"
msgstr " ou"
-#: cmdline/apt-get.cc:376
+#: cmdline/apt-get.cc:379
msgid "The following NEW packages will be installed:"
msgstr "Les NOUVEAUX paquets suivants seront installés :"
-#: cmdline/apt-get.cc:402
+#: cmdline/apt-get.cc:405
msgid "The following packages will be REMOVED:"
msgstr "Les paquets suivants seront ENLEVÉS :"
-#: cmdline/apt-get.cc:424
+#: cmdline/apt-get.cc:427
msgid "The following packages have been kept back:"
msgstr "Les paquets suivants ont été conservés :"
-#: cmdline/apt-get.cc:445
+#: cmdline/apt-get.cc:448
msgid "The following packages will be upgraded:"
msgstr "Les paquets suivants seront mis à jour :"
-#: cmdline/apt-get.cc:466
+#: cmdline/apt-get.cc:469
msgid "The following packages will be DOWNGRADED:"
msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :"
-#: cmdline/apt-get.cc:486
+#: cmdline/apt-get.cc:489
msgid "The following held packages will be changed:"
msgstr "Les paquets retenus suivants seront changés :"
-#: cmdline/apt-get.cc:539
+#: cmdline/apt-get.cc:542
#, c-format
msgid "%s (due to %s) "
msgstr "%s (en raison de %s) "
-#: cmdline/apt-get.cc:547
+#: cmdline/apt-get.cc:550
msgid ""
"WARNING: The following essential packages will be removed.\n"
"This should NOT be done unless you know exactly what you are doing!"
"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n"
"que vous êtes en train de faire."
-#: cmdline/apt-get.cc:578
+#: cmdline/apt-get.cc:581
#, c-format
msgid "%lu upgraded, %lu newly installed, "
msgstr "%lu mis à jour, %lu nouvellement installés, "
-#: cmdline/apt-get.cc:582
+#: cmdline/apt-get.cc:585
#, c-format
msgid "%lu reinstalled, "
msgstr "%lu réinstallés, "
-#: cmdline/apt-get.cc:584
+#: cmdline/apt-get.cc:587
#, c-format
msgid "%lu downgraded, "
msgstr "%lu remis à une version inférieure, "
-#: cmdline/apt-get.cc:586
+#: cmdline/apt-get.cc:589
#, c-format
msgid "%lu to remove and %lu not upgraded.\n"
msgstr "%lu à enlever et %lu non mis à jour.\n"
-#: cmdline/apt-get.cc:590
+#: cmdline/apt-get.cc:593
#, c-format
msgid "%lu not fully installed or removed.\n"
msgstr "%lu partiellement installés ou enlevés.\n"
-#: cmdline/apt-get.cc:664
+#: cmdline/apt-get.cc:667
msgid "Correcting dependencies..."
msgstr "Correction des dépendances..."
-#: cmdline/apt-get.cc:667
+#: cmdline/apt-get.cc:670
msgid " failed."
msgstr " a échoué."
-#: cmdline/apt-get.cc:670
+#: cmdline/apt-get.cc:673
msgid "Unable to correct dependencies"
msgstr "Impossible de corriger les dépendances"
-#: cmdline/apt-get.cc:673
+#: cmdline/apt-get.cc:676
msgid "Unable to minimize the upgrade set"
msgstr "Impossible de minimiser le nombre des paquets mis à jour"
-#: cmdline/apt-get.cc:675
+#: cmdline/apt-get.cc:678
msgid " Done"
msgstr " Fait"
-#: cmdline/apt-get.cc:679
+#: cmdline/apt-get.cc:682
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:682
+#: cmdline/apt-get.cc:685
msgid "Unmet dependencies. Try using -f."
msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f."
-#: cmdline/apt-get.cc:704
+#: cmdline/apt-get.cc:707
msgid "WARNING: The following packages cannot be authenticated!"
msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés."
-#: cmdline/apt-get.cc:708
+#: cmdline/apt-get.cc:711
msgid "Authentication warning overridden.\n"
msgstr "Avertissement d'authentification ignoré.\n"
-#: cmdline/apt-get.cc:715
+#: cmdline/apt-get.cc:718
msgid "Install these packages without verification [y/N]? "
msgstr "Faut-il installer ces paquets sans vérification (o/N) ? "
-#: cmdline/apt-get.cc:717
+#: cmdline/apt-get.cc:720
msgid "Some packages could not be authenticated"
msgstr "Certains paquets n'ont pas pu être authentifiés"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
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:770
+#: cmdline/apt-get.cc:773
msgid "Internal error, InstallPackages was called with broken packages!"
msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés."
-#: cmdline/apt-get.cc:779
+#: cmdline/apt-get.cc:782
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."
+msgstr "Les paquets doivent être enlevés mais la désinstallation est désactivée."
-#: cmdline/apt-get.cc:790
+#: cmdline/apt-get.cc:793
msgid "Internal error, Ordering didn't finish"
msgstr "Erreur interne. Le tri a été interrompu."
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
msgid "Unable to lock the download directory"
msgstr "Impossible de verrouiller le répertoire de téléchargement"
-#: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2093 cmdline/apt-get.cc:2334
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
#: apt-pkg/cachefile.cc:63
msgid "The list of sources could not be read."
msgstr "La liste des sources ne peut être lue."
-#: cmdline/apt-get.cc:831
+#: cmdline/apt-get.cc:834
msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par "
"courriel à apt@packages.debian.org."
-#: cmdline/apt-get.cc:836
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Need to get %sB/%sB of archives.\n"
msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n"
-#: cmdline/apt-get.cc:839
+#: cmdline/apt-get.cc:842
#, c-format
msgid "Need to get %sB of archives.\n"
msgstr "Il est nécessaire de prendre %so dans les archives.\n"
-#: cmdline/apt-get.cc:844
+#: cmdline/apt-get.cc:847
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr ""
-"Après dépaquetage, %so d'espace disque supplémentaires seront utilisés.\n"
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n"
-#: cmdline/apt-get.cc:847
+#: cmdline/apt-get.cc:850
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Après dépaquetage, %so d'espace disque seront libérés.\n"
+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:861 cmdline/apt-get.cc:2188
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
msgid "Couldn't determine free space in %s"
msgstr "Impossible de déterminer l'espace disponible sur %s"
-#: cmdline/apt-get.cc:864
+#: cmdline/apt-get.cc:871
#, c-format
msgid "You don't have enough free space in %s."
msgstr "Pas assez d'espace disponible sur %s"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
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 "
# The space before the exclamation mark must not be a non-breaking space; this
# sentence is supposed to be typed by a user who cannot see the difference.
-#: cmdline/apt-get.cc:881
+#: cmdline/apt-get.cc:889
msgid "Yes, do as I say!"
msgstr "Oui, faites ce que je vous dis !"
-#: cmdline/apt-get.cc:883
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
"You are about to do something potentially harmful.\n"
"Pour continuer, tapez la phrase « %s »\n"
" ?]"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
msgid "Abort."
msgstr "Annulation."
-#: cmdline/apt-get.cc:904
+#: cmdline/apt-get.cc:912
msgid "Do you want to continue [Y/n]? "
msgstr "Souhaitez-vous continuer [O/n] ? "
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
msgid "Failed to fetch %s %s\n"
msgstr "Impossible de récupérer %s %s\n"
-#: cmdline/apt-get.cc:994
+#: cmdline/apt-get.cc:1002
msgid "Some files failed to download"
msgstr "Certains fichiers n'ont pu être téléchargés."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
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:1001
+#: cmdline/apt-get.cc:1009
msgid ""
"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
"missing?"
"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-"
"get update ou essayer avec --fix-missing ?"
-#: cmdline/apt-get.cc:1005
+#: cmdline/apt-get.cc:1013
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."
+msgstr "l'option --fix-missing et l'échange de support ne sont pas encore reconnus."
-#: cmdline/apt-get.cc:1010
+#: cmdline/apt-get.cc:1018
msgid "Unable to correct missing packages."
msgstr "Impossible de corriger le fait que les paquets manquent."
-#: cmdline/apt-get.cc:1011
+#: cmdline/apt-get.cc:1019
msgid "Aborting install."
msgstr "Annulation de l'installation."
-#: cmdline/apt-get.cc:1045
+#: cmdline/apt-get.cc:1053
#, 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:1055
+#: cmdline/apt-get.cc:1063
#, 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:1073
+#: cmdline/apt-get.cc:1081
#, 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:1084
+#: cmdline/apt-get.cc:1092
#, 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:1096
+#: cmdline/apt-get.cc:1104
msgid " [Installed]"
msgstr " [Installé]"
-#: cmdline/apt-get.cc:1101
+#: cmdline/apt-get.cc:1109
msgid "You should explicitly select one to install."
msgstr "Vous devez explicitement sélectionner un paquet à installer."
-#: cmdline/apt-get.cc:1106
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
"Package %s is not available, but is referred to by another package.\n"
"devenu obsolète\n"
"ou qu'il n'est disponible que sur une autre source\n"
-#: cmdline/apt-get.cc:1125
+#: cmdline/apt-get.cc:1133
msgid "However the following packages replace it:"
msgstr "Cependant les paquets suivants le remplacent :"
-#: cmdline/apt-get.cc:1128
+#: cmdline/apt-get.cc:1136
#, c-format
msgid "Package %s has no installation candidate"
msgstr "Aucun paquet ne correspond au paquet %s"
-#: cmdline/apt-get.cc:1148
+#: cmdline/apt-get.cc:1156
#, 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"
+msgstr "La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n"
-#: cmdline/apt-get.cc:1156
+#: cmdline/apt-get.cc:1164
#, 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:1185
+#: cmdline/apt-get.cc:1193
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "La version « %s » de « %s » est introuvable"
-#: cmdline/apt-get.cc:1187
+#: cmdline/apt-get.cc:1195
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "La version « %s » de « %s » n'a pu être trouvée"
-#: cmdline/apt-get.cc:1193
+#: cmdline/apt-get.cc:1201
#, c-format
msgid "Selected version %s (%s) for %s\n"
msgstr "Version choisie %s (%s) pour %s\n"
-#: cmdline/apt-get.cc:1330
+#: cmdline/apt-get.cc:1338
msgid "The update command takes no arguments"
msgstr "La commande de mise à jour ne prend pas d'argument"
-#: cmdline/apt-get.cc:1343
+#: cmdline/apt-get.cc:1351
msgid "Unable to lock the list directory"
msgstr "Impossible de verrouiller le répertoire de liste"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
msgid ""
"Some index files failed to download, they have been ignored, or old ones "
"used instead."
"Le téléchargement de quelques fichiers d'index a échoué, ils ont été "
"ignorés, ou les anciens ont été utilisés à la place."
-#: cmdline/apt-get.cc:1433
+#: cmdline/apt-get.cc:1441
msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
"Aucune suppression n'est sensée se produire : impossible de lancer "
"« Autoremover »"
-#: cmdline/apt-get.cc:1465
+#: cmdline/apt-get.cc:1473
msgid ""
"The following packages were automatically installed and are no longer "
"required:"
"Les paquets suivants ont été installés automatiquement et ne sont plus "
"nécessaires :"
-#: cmdline/apt-get.cc:1467
+#: cmdline/apt-get.cc:1475
msgid "Use 'apt-get autoremove' to remove them."
msgstr "Veuillez utiliser « apt-get autoremove » pour les supprimer."
-#: cmdline/apt-get.cc:1472
+#: cmdline/apt-get.cc:1480
msgid ""
"Hmm, seems like the AutoRemover destroyed something which really\n"
"shouldn't happen. Please file a bug report against apt."
"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n"
"rapport de bogue pour le paquet « apt »."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
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:1479
+#: cmdline/apt-get.cc:1487
msgid "Internal Error, AutoRemover broke stuff"
-msgstr ""
-"Erreur interne, l'outil de suppression automatique a cassé quelque chose."
+msgstr "Erreur interne, l'outil de suppression automatique a cassé quelque chose."
-#: cmdline/apt-get.cc:1498
+#: cmdline/apt-get.cc:1506
msgid "Internal error, AllUpgrade broke stuff"
msgstr "Erreur interne, AllUpgrade a cassé le boulot !"
-#: cmdline/apt-get.cc:1545
+#: cmdline/apt-get.cc:1553
#, c-format
msgid "Couldn't find task %s"
msgstr "Impossible de trouver la tâche %s"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
msgid "Couldn't find package %s"
msgstr "Impossible de trouver le paquet %s"
-#: cmdline/apt-get.cc:1683
+#: cmdline/apt-get.cc:1691
#, c-format
msgid "Note, selecting %s for regex '%s'\n"
msgstr "Note, sélectionne %s pour l'expression rationnelle « %s »\n"
-#: cmdline/apt-get.cc:1714
+#: cmdline/apt-get.cc:1722
#, c-format
-msgid "%s set to manual installed.\n"
+msgid "%s set to manually installed.\n"
msgstr "%s passé en « installé manuellement ».\n"
-#: cmdline/apt-get.cc:1727
+#: cmdline/apt-get.cc:1735
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 :"
+msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :"
-#: cmdline/apt-get.cc:1730
+#: cmdline/apt-get.cc:1738
msgid ""
"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
"solution)."
"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n"
"(ou indiquez une solution)."
-#: cmdline/apt-get.cc:1742
+#: cmdline/apt-get.cc:1750
msgid ""
"Some packages could not be installed. This may mean that you have\n"
"requested an impossible situation or if you are using the unstable\n"
"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:1750
+#: cmdline/apt-get.cc:1758
msgid ""
"Since you only requested a single operation it is extremely likely that\n"
"the package is simply not installable and a bug report against\n"
"Puisque vous n'avez demandé qu'une seule opération, le paquet n'est\n"
"probablement pas installable et vous devriez envoyer un rapport de bogue."
-#: cmdline/apt-get.cc:1758
+#: cmdline/apt-get.cc:1766
msgid "Broken packages"
msgstr "Paquets défectueux"
-#: cmdline/apt-get.cc:1787
+#: cmdline/apt-get.cc:1795
msgid "The following extra packages will be installed:"
msgstr "Les paquets supplémentaires suivants seront installés : "
-#: cmdline/apt-get.cc:1876
+#: cmdline/apt-get.cc:1884
msgid "Suggested packages:"
msgstr "Paquets suggérés :"
-#: cmdline/apt-get.cc:1877
+#: cmdline/apt-get.cc:1885
msgid "Recommended packages:"
msgstr "Paquets recommandés :"
-#: cmdline/apt-get.cc:1905
+#: cmdline/apt-get.cc:1913
msgid "Calculating upgrade... "
msgstr "Calcul de la mise à jour... "
-#: cmdline/apt-get.cc:1908 methods/ftp.cc:702 methods/connect.cc:101
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr "Échec"
-#: cmdline/apt-get.cc:1913
+#: cmdline/apt-get.cc:1921
msgid "Done"
msgstr "Fait"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
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:2088
+#: cmdline/apt-get.cc:2096
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:2118 cmdline/apt-get.cc:2352
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, 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:2167
+#: cmdline/apt-get.cc:2175
#, 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:2191
+#: cmdline/apt-get.cc:2203
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Pas assez d'espace disponible sur %s"
-#: cmdline/apt-get.cc:2196
+#: cmdline/apt-get.cc:2209
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Nécessité de prendre %so/%so dans les sources.\n"
-#: cmdline/apt-get.cc:2199
+#: cmdline/apt-get.cc:2212
#, 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:2205
+#: cmdline/apt-get.cc:2218
#, c-format
msgid "Fetch source %s\n"
msgstr "Récupération des sources %s\n"
-#: cmdline/apt-get.cc:2236
+#: cmdline/apt-get.cc:2249
msgid "Failed to fetch some archives."
msgstr "Échec lors de la récupération de quelques archives."
-#: cmdline/apt-get.cc:2264
+#: cmdline/apt-get.cc:2277
#, 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:2276
+#: cmdline/apt-get.cc:2289
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "La commande de décompactage « %s » a échoué.\n"
-#: cmdline/apt-get.cc:2277
+#: cmdline/apt-get.cc:2290
#, 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:2294
+#: cmdline/apt-get.cc:2307
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "La commande de construction « %s » a échoué.\n"
-#: cmdline/apt-get.cc:2313
+#: cmdline/apt-get.cc:2326
msgid "Child process failed"
msgstr "Échec du processus fils"
-#: cmdline/apt-get.cc:2329
+#: cmdline/apt-get.cc:2342
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:2357
+#: cmdline/apt-get.cc:2370
#, 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:2377
+#: cmdline/apt-get.cc:2390
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s n'a pas de dépendance de construction.\n"
-#: cmdline/apt-get.cc:2429
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne "
"peut être trouvé"
-#: cmdline/apt-get.cc:2482
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because no available versions of "
"La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version "
"du paquet %s ne peut satisfaire à la version requise"
-#: cmdline/apt-get.cc:2518
+#: cmdline/apt-get.cc:2531
#, 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:2543
+#: cmdline/apt-get.cc:2556
#, 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:2557
+#: cmdline/apt-get.cc:2570
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
-msgstr ""
-"Les dépendances de compilation pour %s ne peuvent pas être satisfaites."
+msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites."
-#: cmdline/apt-get.cc:2561
+#: cmdline/apt-get.cc:2574
msgid "Failed to process build dependencies"
msgstr "Impossible d'activer les dépendances de construction"
-#: cmdline/apt-get.cc:2593
+#: cmdline/apt-get.cc:2606
msgid "Supported modules:"
msgstr "Modules reconnus :"
-#: cmdline/apt-get.cc:2634
+#: cmdline/apt-get.cc:2647
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
" upgrade - Réalise une mise à jour\n"
" install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n"
" remove - Supprime des paquets\n"
-" autoremove - Supprime automatiquement les paquets inutilisés\n"
+" autoremove - Supprime tous les paquets installés automatiquement\n"
" source - Télécharge les archives de sources\n"
" build-dep - Configure build-dependencies pour les paquets sources\n"
" dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n"
"seules les erreurs"
#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
+msgid "above this message are important. Please fix them and run [I]nstall again"
msgstr ""
"précédant ce message sont importantes. Veuillez les corriger et\n"
"démarrer l'[I]nstallation une nouvelle fois."
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s"
-#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:748
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
#, c-format
#: apt-inst/deb/debfile.cc:50
#, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr ""
-"Ce n'est pas une archive DEB valide, elle n'a pas de membre « %s », « %s » "
-"ou « %s »"
+msgstr "Ce n'est pas une archive DEB valide, elle n'a pas de membre « %s », « %s » ou « %s »"
#: apt-inst/deb/debfile.cc:110
#, c-format
msgid "File not found"
msgstr "Fichier non trouvé"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
msgid "Failed to stat"
msgstr "Impossible de statuer"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
msgid "Failed to set modification time"
msgstr "Impossible de modifier l'heure "
#: methods/ftp.cc:265
#, c-format
msgid "Login script command '%s' failed, server said: %s"
-msgstr ""
-"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s"
+msgstr "La commande « %s » du script de connexion a échoué, le serveur a répondu : %s"
#: methods/ftp.cc:291
#, c-format
#: methods/ftp.cc:698
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é"
+msgstr "Impossible de se connecter sur le port de données, délai de connexion dépassé"
#: methods/ftp.cc:704
msgid "Could not connect passive socket."
msgid "Couldn't access keyring: '%s'"
msgstr "Impossible d'accéder au porte-clés : « %s »"
-#: methods/gpgv.cc:100
+#: methods/gpgv.cc:101
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: liste de paramètres trop longue pour Acquire::gpgv::Options. Abandon."
+msgstr "E: liste de paramètres trop longue pour Acquire::gpgv::Options. Abandon."
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: methods/gpgv.cc:205
+msgid "Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
"Erreur interne : signature correcte, mais il est impossible de déterminer "
"l'empreinte de la clé."
-#: methods/gpgv.cc:209
+#: methods/gpgv.cc:210
msgid "At least one invalid signature was encountered."
msgstr "Au moins une signature non valable a été rencontrée."
-#: methods/gpgv.cc:213
+#: methods/gpgv.cc:214
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""
"Impossible d'exécuter « %s » pour contrôler la signature\n"
"(veuillez vérifier si gnupg est installé)."
-#: methods/gpgv.cc:218
+#: methods/gpgv.cc:219
msgid "Unknown error executing gpgv"
msgstr "Erreur inconnue à l'exécution de gpgv"
-#: methods/gpgv.cc:249
+#: methods/gpgv.cc:250
msgid "The following signatures were invalid:\n"
msgstr "Les signatures suivantes ne sont pas valables :\n"
-#: methods/gpgv.cc:256
+#: methods/gpgv.cc:257
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgid "Selection %s not found"
msgstr "La sélection %s n'a pu être trouvée"
-#: apt-pkg/contrib/configuration.cc:434
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Type d'abréviation non reconnue : « %c »"
-#: apt-pkg/contrib/configuration.cc:492
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
msgid "Opening configuration file %s"
msgstr "Ouverture du fichier de configuration %s"
-#: apt-pkg/contrib/configuration.cc:510
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
msgid "Line %d too long (max %u)"
msgstr "Ligne %d trop longue (maxi %u)"
-#: apt-pkg/contrib/configuration.cc:606
+#: apt-pkg/contrib/configuration.cc:611
#, 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:625
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Erreur syntaxique %s:%u : balise mal formée"
-#: apt-pkg/contrib/configuration.cc:642
+#: apt-pkg/contrib/configuration.cc:647
#, 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:682
+#: apt-pkg/contrib/configuration.cc:687
#, 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:689
+#: apt-pkg/contrib/configuration.cc:694
#, 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:693 apt-pkg/contrib/configuration.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici"
-#: apt-pkg/contrib/configuration.cc:702
+#: apt-pkg/contrib/configuration.cc:707
#, 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:736
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier"
#: apt-pkg/sourcelist.cc:101
#, c-format
msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr ""
-"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)"
+msgstr "Ligne %lu mal formée dans la liste des sources %s (distribution absolue)"
#: apt-pkg/sourcelist.cc:108
#, c-format
msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr ""
-"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)"
+msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)"
#: apt-pkg/sourcelist.cc:199
#, c-format
#: apt-pkg/sourcelist.cc:240
#, c-format
msgid "Type '%s' is not known on line %u in source list %s"
-msgstr ""
-"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s"
+msgstr "Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s"
#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
msgid "Malformed line %u in source list %s (vendor id)"
-msgstr ""
-"Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)"
+msgstr "Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)"
#: apt-pkg/packagemanager.cc:399
#, c-format
#: apt-pkg/algorithms.cc:247
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgid "The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
"Le paquet %s doit être réinstallé, mais je ne parviens pas à trouver son "
"archive."
#: apt-pkg/srcrecords.cc:44
msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-"Vous devez insérer quelques adresses « sources » dans votre sources.list"
+msgstr "Vous devez insérer quelques adresses « sources » dans votre sources.list"
#: apt-pkg/cachefile.cc:69
msgid "The package lists or status file could not be parsed or opened."
#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
msgid "IO Error saving source cache"
-msgstr ""
-"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources"
+msgstr "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources"
#: apt-pkg/acquire-item.cc:127
#, c-format
msgid "MD5Sum mismatch"
msgstr "Somme de contrôle MD5 incohérente"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
msgid "Hash Sum mismatch"
msgstr "Somme de contrôle de hachage incohérente"
-#: apt-pkg/acquire-item.cc:1091
+#: apt-pkg/acquire-item.cc:1100
msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
-"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n"
+msgstr "Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n"
-#: apt-pkg/acquire-item.cc:1204
+#: apt-pkg/acquire-item.cc:1213
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
"sans doute que vous devrez corriger ce paquet manuellement (absence "
"d'architecture)."
-#: apt-pkg/acquire-item.cc:1263
+#: apt-pkg/acquire-item.cc:1272
#, c-format
msgid ""
"I wasn't able to locate file for the %s package. This might mean you need to "
"Je ne suis pas parvenu à localiser un fichier du paquet %s. Ceci signifie "
"que vous devrez corriger manuellement ce paquet."
-#: apt-pkg/acquire-item.cc:1304
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+msgid "The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » "
"pour le paquet %s."
-#: apt-pkg/acquire-item.cc:1391
+#: apt-pkg/acquire-item.cc:1400
msgid "Size mismatch"
msgstr "Taille incohérente"
"Utilisation du point de montage %s pour le cédérom\n"
"Montage du cédérom\n"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
msgid "Identifying.. "
msgstr "Identification..."
msgid "Stored label: %s\n"
msgstr "Étiquette stockée : %s\n"
-#: apt-pkg/cdrom.cc:583
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "Démontage du cédérom...\n"
+
+#: apt-pkg/cdrom.cc:590
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr "Utilisation du point de montage %s pour le cédérom\n"
-#: apt-pkg/cdrom.cc:601
+#: apt-pkg/cdrom.cc:608
msgid "Unmounting CD-ROM\n"
msgstr "Démontage du cédérom\n"
-#: apt-pkg/cdrom.cc:605
+#: apt-pkg/cdrom.cc:612
msgid "Waiting for disc...\n"
msgstr "Attente du disque...\n"
#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
+#: apt-pkg/cdrom.cc:620
msgid "Mounting CD-ROM...\n"
msgstr "Montage du cédérom...\n"
-#: apt-pkg/cdrom.cc:631
+#: apt-pkg/cdrom.cc:638
msgid "Scanning disc for index files..\n"
msgstr "Examen du disque à la recherche de fichiers d'index...\n"
-#: apt-pkg/cdrom.cc:671
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
"Found %u package indexes, %u source indexes, %u translation indexes and %u "
"%u index de paquets trouvés, %u index de sources, %u index de traductions et "
"%u signatures\n"
-#: apt-pkg/cdrom.cc:708
+#: apt-pkg/cdrom.cc:715
#, c-format
msgid "Found label '%s'\n"
msgstr "Étiquette « %s » trouvée\n"
-#: apt-pkg/cdrom.cc:737
+#: apt-pkg/cdrom.cc:744
msgid "That is not a valid name, try again.\n"
msgstr "Ce nom n'est pas valable, veuillez recommencer.\n"
-#: apt-pkg/cdrom.cc:753
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
"This disc is called: \n"
"Ce disque s'appelle :\n"
"« %s »\n"
-#: apt-pkg/cdrom.cc:757
+#: apt-pkg/cdrom.cc:764
msgid "Copying package lists..."
msgstr "Copie des listes de paquets..."
-#: apt-pkg/cdrom.cc:783
+#: apt-pkg/cdrom.cc:790
msgid "Writing new source list\n"
msgstr "Écriture de la nouvelle liste de sources\n"
-#: apt-pkg/cdrom.cc:792
+#: apt-pkg/cdrom.cc:799
msgid "Source list entries for this disc are:\n"
msgstr "Les entrées de listes de sources pour ce disque sont :\n"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "Démontage du cédérom...\n"
-
#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
msgid "Wrote %i records.\n"
"%i enregistrements écrits avec %i fichiers manquants et %i qui ne "
"correspondent pas\n"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
msgid "Directory '%s' missing"
msgstr "Répertoire %s inexistant"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
msgid "Preparing %s"
msgstr "Préparation de %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
msgid "Unpacking %s"
msgstr "Décompression de %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
msgid "Preparing to configure %s"
msgstr "Préparation de la configuration de %s"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
msgid "Configuring %s"
msgstr "Configuration de %s"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
#, c-format
msgid "Processing triggers for %s"
msgstr "Traitement des déclencheurs (« triggers ») pour %s"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
msgid "Installed %s"
msgstr "%s installé"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
msgid "Preparing for removal of %s"
msgstr "Préparation de la suppression de %s"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
msgid "Removed %s"
msgstr "%s supprimé"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
msgid "Preparing to completely remove %s"
msgstr "Préparation de la suppression complète de %s"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: apt-pkg/deb/dpkgpm.cc:625
#, c-format
msgid "Completely removed %s"
msgstr "%s complètement supprimé"
-#: apt-pkg/deb/dpkgpm.cc:749
+#: apt-pkg/deb/dpkgpm.cc:775
msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
"Impossible d'écrire le journal, échec d'openpty()\n"
#: methods/rsh.cc:330
msgid "Connection closed prematurely"
msgstr "Connexion fermée prématurément"
+
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-28 07:55+0100\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-10-29 14:02+0000\n"
"Last-Translator: Jacobo Tarrío <jtarrio@debian.org>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, c-format
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s para %s compilado en %s %s\n"
msgstr "Non se puido abrir o ficheiro de base de datos %s: %s"
#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
-#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 methods/gpgv.cc:272
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr "Non se atopou %s"
msgid " %s has no binary override entry either\n"
msgstr " %s tampouco ten unha entrada de \"override\" de binarios\n"
-#: ftparchive/contents.cc:317
+#: ftparchive/contents.cc:321
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "Erro interno, non se puido atopar o membro %s"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
msgid "realloc - Failed to allocate memory"
msgstr "realloc - Non se puido reservar memoria"
msgid "Failed to read the override file %s"
msgstr "Non se puido ler o ficheiro de \"overrides\" %s"
-#: ftparchive/multicompress.cc:71
+#: ftparchive/multicompress.cc:72
#, c-format
msgid "Unknown compression algorithm '%s'"
msgstr "Algoritmo de compresión \"%s\" descoñecido"
-#: ftparchive/multicompress.cc:101
+#: ftparchive/multicompress.cc:102
#, c-format
msgid "Compressed output %s needs a compression set"
msgstr "A saída comprimida %s precisa dun xogo de compresión"
-#: ftparchive/multicompress.cc:168 methods/rsh.cc:91
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr "Non se puido crear a canle IPC ao subproceso"
-#: ftparchive/multicompress.cc:194
+#: ftparchive/multicompress.cc:195
msgid "Failed to create FILE*"
msgstr "Non se puido crear o FILE*"
-#: ftparchive/multicompress.cc:197
+#: ftparchive/multicompress.cc:198
msgid "Failed to fork"
msgstr "Non se puido chamar a fork"
-#: ftparchive/multicompress.cc:211
+#: ftparchive/multicompress.cc:212
msgid "Compress child"
msgstr "Fillo de compresión"
-#: ftparchive/multicompress.cc:234
+#: ftparchive/multicompress.cc:235
#, c-format
msgid "Internal error, failed to create %s"
msgstr "Erro interno, non se puido crear %s"
-#: ftparchive/multicompress.cc:285
+#: ftparchive/multicompress.cc:286
msgid "Failed to create subprocess IPC"
msgstr "Non se puido crear o IPC do subproceso"
-#: ftparchive/multicompress.cc:320
+#: ftparchive/multicompress.cc:321
msgid "Failed to exec compressor "
msgstr "Non se puido executar o compresor "
-#: ftparchive/multicompress.cc:359
+#: ftparchive/multicompress.cc:360
msgid "decompressor"
msgstr "descompresor"
-#: ftparchive/multicompress.cc:402
+#: ftparchive/multicompress.cc:403
msgid "IO to subprocess/file failed"
msgstr "A E/S ao subproceso/ficheiro fallou"
-#: ftparchive/multicompress.cc:454
+#: ftparchive/multicompress.cc:455
msgid "Failed to read while computing MD5"
msgstr "Non se puido ler ao calcular o MD5"
-#: ftparchive/multicompress.cc:471
+#: ftparchive/multicompress.cc:472
#, c-format
msgid "Problem unlinking %s"
msgstr "Problema ao borrar %s"
-#: ftparchive/multicompress.cc:486 apt-inst/extract.cc:185
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
msgid "Failed to rename %s to %s"
msgstr "Non se puido cambiar o nome de %s a %s"
-#: cmdline/apt-get.cc:121
+#: cmdline/apt-get.cc:124
msgid "Y"
msgstr "S"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
msgid "Regex compilation error - %s"
msgstr "Erro na compilación da expresión regular - %s"
-#: cmdline/apt-get.cc:238
+#: cmdline/apt-get.cc:241
msgid "The following packages have unmet dependencies:"
msgstr "Os seguintes paquetes teñen dependencias sen cumprir:"
-#: cmdline/apt-get.cc:328
+#: cmdline/apt-get.cc:331
#, c-format
msgid "but %s is installed"
msgstr "pero %s está instalado"
-#: cmdline/apt-get.cc:330
+#: cmdline/apt-get.cc:333
#, c-format
msgid "but %s is to be installed"
msgstr "pero hase instalar %s"
-#: cmdline/apt-get.cc:337
+#: cmdline/apt-get.cc:340
msgid "but it is not installable"
msgstr "pero non é instalable"
-#: cmdline/apt-get.cc:339
+#: cmdline/apt-get.cc:342
msgid "but it is a virtual package"
msgstr "pero é un paquete virtual"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not installed"
msgstr "pero non está instalado"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not going to be installed"
msgstr "pero non se ha instalar"
-#: cmdline/apt-get.cc:347
+#: cmdline/apt-get.cc:350
msgid " or"
msgstr " ou"
-#: cmdline/apt-get.cc:376
+#: cmdline/apt-get.cc:379
msgid "The following NEW packages will be installed:"
msgstr "Os seguintes paquetes NOVOS hanse instalar:"
-#: cmdline/apt-get.cc:402
+#: cmdline/apt-get.cc:405
msgid "The following packages will be REMOVED:"
msgstr "Os seguintes paquetes hanse ELIMINAR:"
-#: cmdline/apt-get.cc:424
+#: cmdline/apt-get.cc:427
msgid "The following packages have been kept back:"
msgstr "Os seguintes paquetes consérvanse:"
-#: cmdline/apt-get.cc:445
+#: cmdline/apt-get.cc:448
msgid "The following packages will be upgraded:"
msgstr "Os seguintes paquetes hanse actualizar:"
-#: cmdline/apt-get.cc:466
+#: cmdline/apt-get.cc:469
msgid "The following packages will be DOWNGRADED:"
msgstr "Os seguintes paquetes hanse DESACTUALIZAR:"
-#: cmdline/apt-get.cc:486
+#: cmdline/apt-get.cc:489
msgid "The following held packages will be changed:"
msgstr "Os seguintes paquetes retidos hanse modificar:"
-#: cmdline/apt-get.cc:539
+#: cmdline/apt-get.cc:542
#, c-format
msgid "%s (due to %s) "
msgstr "%s (debido a %s) "
-#: cmdline/apt-get.cc:547
+#: cmdline/apt-get.cc:550
msgid ""
"WARNING: The following essential packages will be removed.\n"
"This should NOT be done unless you know exactly what you are doing!"
"AVISO: Hanse eliminar os seguintes paquetes esenciais.\n"
"¡Isto NON se debe facer a menos que saiba exactamente o que está a facer!"
-#: cmdline/apt-get.cc:578
+#: cmdline/apt-get.cc:581
#, c-format
msgid "%lu upgraded, %lu newly installed, "
msgstr "%lu actualizados, %lu instalados, "
-#: cmdline/apt-get.cc:582
+#: cmdline/apt-get.cc:585
#, c-format
msgid "%lu reinstalled, "
msgstr "%lu reinstalados, "
-#: cmdline/apt-get.cc:584
+#: cmdline/apt-get.cc:587
#, c-format
msgid "%lu downgraded, "
msgstr "%lu desactualizados, "
-#: cmdline/apt-get.cc:586
+#: cmdline/apt-get.cc:589
#, c-format
msgid "%lu to remove and %lu not upgraded.\n"
msgstr "%lu hanse eliminar e %lu sen actualizar.\n"
-#: cmdline/apt-get.cc:590
+#: cmdline/apt-get.cc:593
#, c-format
msgid "%lu not fully installed or removed.\n"
msgstr "%lu non instalados ou eliminados de todo.\n"
-#: cmdline/apt-get.cc:664
+#: cmdline/apt-get.cc:667
msgid "Correcting dependencies..."
msgstr "A corrixir as dependencias..."
-#: cmdline/apt-get.cc:667
+#: cmdline/apt-get.cc:670
msgid " failed."
msgstr " fallou."
-#: cmdline/apt-get.cc:670
+#: cmdline/apt-get.cc:673
msgid "Unable to correct dependencies"
msgstr "Non se puido corrixir as dependencias."
-#: cmdline/apt-get.cc:673
+#: cmdline/apt-get.cc:676
msgid "Unable to minimize the upgrade set"
msgstr "Non se puido minimizar o xogo de actualizacións"
-#: cmdline/apt-get.cc:675
+#: cmdline/apt-get.cc:678
msgid " Done"
msgstr " Rematado"
-#: cmdline/apt-get.cc:679
+#: cmdline/apt-get.cc:682
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:682
+#: cmdline/apt-get.cc:685
msgid "Unmet dependencies. Try using -f."
msgstr "Dependencias incumpridas. Probe a empregar -f."
-#: cmdline/apt-get.cc:704
+#: cmdline/apt-get.cc:707
msgid "WARNING: The following packages cannot be authenticated!"
msgstr "AVISO: ¡Non se poden autenticar os seguintes paquetes!"
-#: cmdline/apt-get.cc:708
+#: cmdline/apt-get.cc:711
msgid "Authentication warning overridden.\n"
msgstr "Ignórase o aviso de autenticación.\n"
-#: cmdline/apt-get.cc:715
+#: cmdline/apt-get.cc:718
msgid "Install these packages without verification [y/N]? "
msgstr "¿Instalar estes paquetes sen verificación [s/N]? "
-#: cmdline/apt-get.cc:717
+#: cmdline/apt-get.cc:720
msgid "Some packages could not be authenticated"
msgstr "Non se puido autenticar algúns paquetes"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
msgid "There are problems and -y was used without --force-yes"
msgstr "Houbo problemas e empregouse -y sen --force-yes"
-#: cmdline/apt-get.cc:770
+#: cmdline/apt-get.cc:773
msgid "Internal error, InstallPackages was called with broken packages!"
msgstr "Erro interno, chamouse a InstallPackages con paquetes rotos."
-#: cmdline/apt-get.cc:779
+#: cmdline/apt-get.cc:782
msgid "Packages need to be removed but remove is disabled."
msgstr "Hai que eliminar paquetes pero a eliminación está desactivada."
-#: cmdline/apt-get.cc:790
+#: cmdline/apt-get.cc:793
msgid "Internal error, Ordering didn't finish"
msgstr "Erro interno, a ordeación non rematou"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
msgid "Unable to lock the download directory"
msgstr "Non se puido bloquear o directorio de descargas"
-#: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2093 cmdline/apt-get.cc:2334
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
#: apt-pkg/cachefile.cc:63
msgid "The list of sources could not be read."
msgstr "Non se puido ler a lista de orixes."
-#: cmdline/apt-get.cc:831
+#: cmdline/apt-get.cc:834
msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
"Que raro... Os tamaños non coinciden, envíe email a apt@packages.debian.org"
-#: cmdline/apt-get.cc:836
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Need to get %sB/%sB of archives.\n"
msgstr "Hai que recibir %sB/%sB de arquivos.\n"
-#: cmdline/apt-get.cc:839
+#: cmdline/apt-get.cc:842
#, c-format
msgid "Need to get %sB of archives.\n"
msgstr "Hai que recibir %sB de arquivos.\n"
-#: cmdline/apt-get.cc:844
-#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr "Despois de desempaquetar hanse ocupar %sB de disco adicionais.\n"
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr "Despois de desempaquetar hanse liberar %sB de disco.\n"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
msgid "Couldn't determine free space in %s"
msgstr "Non se puido determinar o espazo libre en %s"
-#: cmdline/apt-get.cc:864
+#: cmdline/apt-get.cc:871
#, c-format
msgid "You don't have enough free space in %s."
msgstr "Non hai espazo libre de abondo en %s."
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
msgid "Trivial Only specified but this is not a trivial operation."
msgstr "Especificouse \"Só Triviais\" pero esta non é unha operación trivial."
-#: cmdline/apt-get.cc:881
+#: cmdline/apt-get.cc:889
msgid "Yes, do as I say!"
msgstr "¡Si, fai o que digo!"
-#: cmdline/apt-get.cc:883
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
"You are about to do something potentially harmful.\n"
"Para continuar escriba a frase \"%s\"\n"
" ?] "
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
msgid "Abort."
msgstr "Abortar."
-#: cmdline/apt-get.cc:904
+#: cmdline/apt-get.cc:912
msgid "Do you want to continue [Y/n]? "
msgstr "¿Quere continuar [S/n]? "
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
msgid "Failed to fetch %s %s\n"
msgstr "Non se puido obter %s %s\n"
-#: cmdline/apt-get.cc:994
+#: cmdline/apt-get.cc:1002
msgid "Some files failed to download"
msgstr "Non se puido descargar algúns ficheiros"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
msgid "Download complete and in download only mode"
msgstr "Completouse a descarga no modo de só descargas"
-#: cmdline/apt-get.cc:1001
+#: cmdline/apt-get.cc:1009
msgid ""
"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
"missing?"
"Non se puido obter algúns arquivos; probe con apt-get update ou --fix-"
"missing."
-#: cmdline/apt-get.cc:1005
+#: cmdline/apt-get.cc:1013
msgid "--fix-missing and media swapping is not currently supported"
msgstr ""
"O emprego conxunto de --fix-missing e intercambio de discos non está "
"soportado"
-#: cmdline/apt-get.cc:1010
+#: cmdline/apt-get.cc:1018
msgid "Unable to correct missing packages."
msgstr "Non se puido corrixir os paquetes non dispoñibles."
-#: cmdline/apt-get.cc:1011
+#: cmdline/apt-get.cc:1019
msgid "Aborting install."
msgstr "A abortar a instalación."
-#: cmdline/apt-get.cc:1045
+#: cmdline/apt-get.cc:1053
#, c-format
msgid "Note, selecting %s instead of %s\n"
msgstr "Nota, escóllese %s no canto de %s\n"
-#: cmdline/apt-get.cc:1055
+#: cmdline/apt-get.cc:1063
#, c-format
msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr "Omítese %s, xa está instalado e non se especificou a actualización.\n"
-#: cmdline/apt-get.cc:1073
+#: cmdline/apt-get.cc:1081
#, c-format
msgid "Package %s is not installed, so not removed\n"
msgstr "O paquete %s non está instalado, así que non se eliminou\n"
-#: cmdline/apt-get.cc:1084
+#: cmdline/apt-get.cc:1092
#, 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:1096
+#: cmdline/apt-get.cc:1104
msgid " [Installed]"
msgstr " [Instalado]"
-#: cmdline/apt-get.cc:1101
+#: cmdline/apt-get.cc:1109
msgid "You should explicitly select one to install."
msgstr "Debería escoller un para instalar."
-#: cmdline/apt-get.cc:1106
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
"Package %s is not available, but is referred to by another package.\n"
"Isto pode significar que o paquete falla, está obsoleto ou só está\n"
"dispoñible noutra fonte.\n"
-#: cmdline/apt-get.cc:1125
+#: cmdline/apt-get.cc:1133
msgid "However the following packages replace it:"
msgstr "Nembargantes, os seguintes paquetes substitúeno:"
-#: cmdline/apt-get.cc:1128
+#: cmdline/apt-get.cc:1136
#, c-format
msgid "Package %s has no installation candidate"
msgstr "O paquete %s non ten un candidato para a instalación"
-#: cmdline/apt-get.cc:1148
+#: cmdline/apt-get.cc:1156
#, c-format
msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr "A reinstalación de %s non é posible, non se pode descargar.\n"
-#: cmdline/apt-get.cc:1156
+#: cmdline/apt-get.cc:1164
#, c-format
msgid "%s is already the newest version.\n"
msgstr "%s xa é a versión máis recente.\n"
-#: cmdline/apt-get.cc:1185
+#: cmdline/apt-get.cc:1193
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "Non se atopou a versión \"%s\" de \"%s\""
-#: cmdline/apt-get.cc:1187
+#: cmdline/apt-get.cc:1195
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "Non se atopou a versión \"%s\" de \"%s\""
-#: cmdline/apt-get.cc:1193
+#: cmdline/apt-get.cc:1201
#, c-format
msgid "Selected version %s (%s) for %s\n"
msgstr "Escolleuse a versión %s (%s) de %s\n"
-#: cmdline/apt-get.cc:1330
+#: cmdline/apt-get.cc:1338
msgid "The update command takes no arguments"
msgstr "A orde \"update\" non toma argumentos"
-#: cmdline/apt-get.cc:1343
+#: cmdline/apt-get.cc:1351
msgid "Unable to lock the list directory"
msgstr "Non se puido bloquear o directorio de listas"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
msgid ""
"Some index files failed to download, they have been ignored, or old ones "
"used instead."
"Non se puido descargar algúns ficheiros de índices; ignoráronse ou "
"empregáronse uns vellos no seu lugar."
-#: cmdline/apt-get.cc:1433
+#: cmdline/apt-get.cc:1441
msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
"Non se supón que se deban eliminar cousas; non se pode iniciar o "
"autoeliminador"
-#: cmdline/apt-get.cc:1465
+#: cmdline/apt-get.cc:1473
msgid ""
"The following packages were automatically installed and are no longer "
"required:"
msgstr ""
"Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:"
-#: cmdline/apt-get.cc:1467
+#: cmdline/apt-get.cc:1475
msgid "Use 'apt-get autoremove' to remove them."
msgstr "Empregue \"apt-get autoremove\" para eliminalos."
-#: cmdline/apt-get.cc:1472
+#: cmdline/apt-get.cc:1480
msgid ""
"Hmm, seems like the AutoRemover destroyed something which really\n"
"shouldn't happen. Please file a bug report against apt."
"Hum, semella que o autoeliminadir destruiu algo, o que non debería\n"
"ter ocorrido. Envíe un informe de erro sobre apt."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
msgid "The following information may help to resolve the situation:"
msgstr "A seguinte información pode axudar a resolver a situación:"
-#: cmdline/apt-get.cc:1479
+#: cmdline/apt-get.cc:1487
msgid "Internal Error, AutoRemover broke stuff"
msgstr "Erro interno, o autoeliminador rompeu cousas"
-#: cmdline/apt-get.cc:1498
+#: cmdline/apt-get.cc:1506
msgid "Internal error, AllUpgrade broke stuff"
msgstr "Erro interno, AllUpgrade rompeu cousas"
-#: cmdline/apt-get.cc:1545
+#: cmdline/apt-get.cc:1553
#, c-format
msgid "Couldn't find task %s"
msgstr "Non se puido atopar a tarefa %s"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
msgid "Couldn't find package %s"
msgstr "Non se puido atopar o paquete %s"
-#: cmdline/apt-get.cc:1683
+#: cmdline/apt-get.cc:1691
#, c-format
msgid "Note, selecting %s for regex '%s'\n"
msgstr "Nota, escóllese %s para a expresión regular \"%s\"\n"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
msgstr "%s cambiado a instalado manualmente.\n"
-#: cmdline/apt-get.cc:1727
+#: cmdline/apt-get.cc:1735
msgid "You might want to run `apt-get -f install' to correct these:"
msgstr "Pode querer executar \"apt-get -f install\" corrixir isto:"
-#: cmdline/apt-get.cc:1730
+#: cmdline/apt-get.cc:1738
msgid ""
"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
"solution)."
"Dependencias incumpridas. Probe \"apt-get -f install\" sen paquetes (ou "
"especifique unha solución)."
-#: cmdline/apt-get.cc:1742
+#: cmdline/apt-get.cc:1750
msgid ""
"Some packages could not be installed. This may mean that you have\n"
"requested an impossible situation or if you are using the unstable\n"
"unha situación imposible ou, se emprega a distribución inestable, que\n"
"algúns paquetes solicitados aínda non se crearon ou moveron de Incoming."
-#: cmdline/apt-get.cc:1750
+#: cmdline/apt-get.cc:1758
msgid ""
"Since you only requested a single operation it is extremely likely that\n"
"the package is simply not installable and a bug report against\n"
"Xa que só solicitou unha soa operación, é bastante probable que o\n"
"paquete non sea instalable e que se deba informar dun erro no paquete."
-#: cmdline/apt-get.cc:1758
+#: cmdline/apt-get.cc:1766
msgid "Broken packages"
msgstr "Paquetes rotos"
-#: cmdline/apt-get.cc:1787
+#: cmdline/apt-get.cc:1795
msgid "The following extra packages will be installed:"
msgstr "Hanse instalar os seguintes paquetes extra:"
-#: cmdline/apt-get.cc:1876
+#: cmdline/apt-get.cc:1884
msgid "Suggested packages:"
msgstr "Paquetes suxiridos:"
-#: cmdline/apt-get.cc:1877
+#: cmdline/apt-get.cc:1885
msgid "Recommended packages:"
msgstr "Paquetes recomendados:"
-#: cmdline/apt-get.cc:1905
+#: cmdline/apt-get.cc:1913
msgid "Calculating upgrade... "
msgstr "A calcular a actualización... "
-#: cmdline/apt-get.cc:1908 methods/ftp.cc:702 methods/connect.cc:101
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr "Fallou"
-#: cmdline/apt-get.cc:1913
+#: cmdline/apt-get.cc:1921
msgid "Done"
msgstr "Rematado"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
msgid "Internal error, problem resolver broke stuff"
msgstr "Erro interno, o resolvedor interno rompeu cousas"
-#: cmdline/apt-get.cc:2088
+#: cmdline/apt-get.cc:2096
msgid "Must specify at least one package to fetch source for"
msgstr ""
"Ten que especificar alomenos un paquete para lle descargar o código fonte"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
msgid "Unable to find a source package for %s"
msgstr "Non se puido atopar un paquete fonte para %s"
-#: cmdline/apt-get.cc:2167
+#: cmdline/apt-get.cc:2175
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "Omítese o ficheiro xa descargado \"%s\"\n"
-#: cmdline/apt-get.cc:2191
+#: cmdline/apt-get.cc:2203
#, c-format
msgid "You don't have enough free space in %s"
msgstr "Non hai espazo libre de abondo en %s"
-#: cmdline/apt-get.cc:2196
+#: cmdline/apt-get.cc:2209
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "Hai que recibir %sB/%sB de arquivos de fonte.\n"
-#: cmdline/apt-get.cc:2199
+#: cmdline/apt-get.cc:2212
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "Hai que recibir %sB de arquivos de fonte.\n"
-#: cmdline/apt-get.cc:2205
+#: cmdline/apt-get.cc:2218
#, c-format
msgid "Fetch source %s\n"
msgstr "Obter fonte %s\n"
-#: cmdline/apt-get.cc:2236
+#: cmdline/apt-get.cc:2249
msgid "Failed to fetch some archives."
msgstr "Non se puido recibir algúns arquivos."
-#: cmdline/apt-get.cc:2264
+#: cmdline/apt-get.cc:2277
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "Omítese o desempaquetamento do código fonte xa desempaquetado en %s\n"
-#: cmdline/apt-get.cc:2276
+#: cmdline/apt-get.cc:2289
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "Fallou a orde de desempaquetamento \"%s\".\n"
-#: cmdline/apt-get.cc:2277
+#: cmdline/apt-get.cc:2290
#, 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:2294
+#: cmdline/apt-get.cc:2307
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "Fallou a codificación de %s.\n"
-#: cmdline/apt-get.cc:2313
+#: cmdline/apt-get.cc:2326
msgid "Child process failed"
msgstr "O proceso fillo fallou"
-#: cmdline/apt-get.cc:2329
+#: cmdline/apt-get.cc:2342
msgid "Must specify at least one package to check builddeps for"
msgstr ""
"Ten que especificar alomenos un paquete para lle comprobar as dependencias "
"de compilación"
-#: cmdline/apt-get.cc:2357
+#: cmdline/apt-get.cc:2370
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "Non se puido obter a información de dependencias de compilación de %s"
-#: cmdline/apt-get.cc:2377
+#: cmdline/apt-get.cc:2390
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s non ten dependencias de compilación.\n"
-#: cmdline/apt-get.cc:2429
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"A dependencia \"%s\" de %s non se pode satisfacer porque non se pode atopar "
"o paquete %s"
-#: cmdline/apt-get.cc:2482
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because no available versions of "
"A dependencia \"%s\" de %s non se pode satisfacer porque ningunha versión "
"dispoñible do paquete %s satisfai os requirimentos de versión"
-#: cmdline/apt-get.cc:2518
+#: cmdline/apt-get.cc:2531
#, c-format
msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
"Non se puido satisfacer a dependencia \"%s\" de %s: O paquete instalado %s é "
"novo de máis"
-#: cmdline/apt-get.cc:2543
+#: cmdline/apt-get.cc:2556
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "Non se puido satisfacer a dependencia \"%s\" de %s: %s"
-#: cmdline/apt-get.cc:2557
+#: cmdline/apt-get.cc:2570
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "Non se puideron satisfacer as dependencias de compilación de %s."
-#: cmdline/apt-get.cc:2561
+#: cmdline/apt-get.cc:2574
msgid "Failed to process build dependencies"
msgstr "Non se puido procesar as dependencias de compilación"
-#: cmdline/apt-get.cc:2593
+#: cmdline/apt-get.cc:2606
msgid "Supported modules:"
msgstr "Módulos soportados:"
-#: cmdline/apt-get.cc:2634
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "O ficheiro %s/%s sobrescribe o do paquete %s"
-#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:748
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
#, c-format
msgstr "Este non é un arquivo DEB válido, falla o membro \"%s\""
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr ""
"Este non é un arquivo DEB válido, non ten un membro \"%s\", \"%s\" ou \"%s\""
msgid "File not found"
msgstr "Non se atopou o ficheiro"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
msgid "Failed to stat"
msgstr "Non se atopou"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
msgid "Failed to set modification time"
msgstr "Non se puido estabrecer a hora de modificación"
msgid "Couldn't access keyring: '%s'"
msgstr "Non se puido acceder ao chaveiro: \"%s\""
-#: methods/gpgv.cc:100
+#: methods/gpgv.cc:101
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr ""
"E: A lista de argumentos de Acquire:gpgv::Options é longa de máis. Sáese."
-#: methods/gpgv.cc:204
+#: methods/gpgv.cc:205
msgid ""
"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
"Erro interno: Sinatura correcta, pero non se puido determinar a pegada "
"dixital da chave"
-#: methods/gpgv.cc:209
+#: methods/gpgv.cc:210
msgid "At least one invalid signature was encountered."
msgstr "Atopouse alomenos unha sinatura non válida."
-#: methods/gpgv.cc:213
+#: methods/gpgv.cc:214
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""
"Non se puido executar \"%s\" para verificar a sinatura (¿está gnupg "
"instalado?)"
-#: methods/gpgv.cc:218
+#: methods/gpgv.cc:219
msgid "Unknown error executing gpgv"
msgstr "Erro descoñecido ao executar gpgv"
-#: methods/gpgv.cc:249
+#: methods/gpgv.cc:250
msgid "The following signatures were invalid:\n"
msgstr "As seguintes sinaturas non eran válidas:\n"
-#: methods/gpgv.cc:256
+#: methods/gpgv.cc:257
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgid "Selection %s not found"
msgstr "Non se atopou a selección %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "Abreviatura de tipo \"%c\" descoñecida"
-#: apt-pkg/contrib/configuration.cc:492
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
msgid "Opening configuration file %s"
msgstr "A abrir o ficheiro de configuración %s"
-#: apt-pkg/contrib/configuration.cc:510
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
msgid "Line %d too long (max %u)"
msgstr "Liña %d longa de máis (máximo %u)"
-#: apt-pkg/contrib/configuration.cc:606
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "Erro de sintaxe %s:%u: O bloque comeza sen un nome."
-#: apt-pkg/contrib/configuration.cc:625
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "Erro de sintaxe %s:%u: Etiqueta mal formada"
-#: apt-pkg/contrib/configuration.cc:642
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "Erro de sintaxe %s:%u: Lixo extra despois do valor"
-#: apt-pkg/contrib/configuration.cc:682
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "Erro de sintaxe %s:%u: Só se poden facer directivas no nivel superior"
-#: apt-pkg/contrib/configuration.cc:689
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "Erro de sintaxe %s:%u: Includes aniñados de máis"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "Erro de sintaxe %s:%u: Incluído de aquí"
-#: apt-pkg/contrib/configuration.cc:702
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "Erro de sintaxe %s:%u: Non se soporta a directiva \"%s\""
-#: apt-pkg/contrib/configuration.cc:736
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "Erro de sintaxe %s:%u: Lixo extra á fin da liña"
msgid "MD5Sum mismatch"
msgstr "Os MD5Sum non coinciden"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
msgid "Hash Sum mismatch"
msgstr "Os \"hashes\" non coinciden"
-#: apt-pkg/acquire-item.cc:1091
+#: apt-pkg/acquire-item.cc:1100
msgid "There is no public key available for the following key IDs:\n"
msgstr ""
"Non hai unha clave pública dispoñible para os seguintes IDs de clave:\n"
-#: apt-pkg/acquire-item.cc:1204
+#: apt-pkg/acquire-item.cc:1213
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
"Non se puido atopar un ficheiro para o paquete %s. Isto pode significar que "
"ten que arranxar este paquete a man. (Falla a arquitectura)"
-#: apt-pkg/acquire-item.cc:1263
+#: apt-pkg/acquire-item.cc:1272
#, c-format
msgid ""
"I wasn't able to locate file for the %s package. This might mean you need to "
"Non se puido atopar un ficheiro para o paquete %s. Isto pode significar que "
"ten que arranxar este paquete a man."
-#: apt-pkg/acquire-item.cc:1304
+#: apt-pkg/acquire-item.cc:1313
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
"Os ficheiros de índices de paquetes están corrompidos. Non hai un campo "
"Filename: para o paquete %s."
-#: apt-pkg/acquire-item.cc:1391
+#: apt-pkg/acquire-item.cc:1400
msgid "Size mismatch"
msgstr "Os tamaños non coinciden"
"A empregar o punto de montaxe de CD-ROMs %s\n"
"A montar o CD-ROM\n"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
msgid "Identifying.. "
msgstr "A identificar.. "
msgid "Stored label: %s\n"
msgstr "Etiqueta armacenada: %s \n"
-#: apt-pkg/cdrom.cc:583
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "A desmontar o CD-ROM...\n"
+
+#: apt-pkg/cdrom.cc:590
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr "A empregar o punto de montaxe de CD-ROMs %s\n"
-#: apt-pkg/cdrom.cc:601
+#: apt-pkg/cdrom.cc:608
msgid "Unmounting CD-ROM\n"
msgstr "A desmontar o CD-ROM\n"
-#: apt-pkg/cdrom.cc:605
+#: apt-pkg/cdrom.cc:612
msgid "Waiting for disc...\n"
msgstr "A agardar polo disco...\n"
#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
+#: apt-pkg/cdrom.cc:620
msgid "Mounting CD-ROM...\n"
msgstr "A montar o CD-ROM...\n"
-#: apt-pkg/cdrom.cc:631
+#: apt-pkg/cdrom.cc:638
msgid "Scanning disc for index files..\n"
msgstr "A buscar os ficheiros de índices no disco..\n"
-#: apt-pkg/cdrom.cc:671
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
"Found %u package indexes, %u source indexes, %u translation indexes and %u "
"Atopáronse %u índices de paquetes, %u índices de fontes, %u índices de "
"traducións e %u sinaturas\n"
-#: apt-pkg/cdrom.cc:708
+#: apt-pkg/cdrom.cc:715
#, c-format
msgid "Found label '%s'\n"
msgstr "Atopouse a etiqueta \"%s\"\n"
-#: apt-pkg/cdrom.cc:737
+#: apt-pkg/cdrom.cc:744
msgid "That is not a valid name, try again.\n"
msgstr "Ese non é un nome válido, volva tentalo.\n"
-#: apt-pkg/cdrom.cc:753
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
"This disc is called: \n"
"Este disco chámase: \n"
"\"%s\"\n"
-#: apt-pkg/cdrom.cc:757
+#: apt-pkg/cdrom.cc:764
msgid "Copying package lists..."
msgstr "A copiar as listas de paquetes..."
-#: apt-pkg/cdrom.cc:783
+#: apt-pkg/cdrom.cc:790
msgid "Writing new source list\n"
msgstr "A gravar a nova lista de fontes\n"
-#: apt-pkg/cdrom.cc:792
+#: apt-pkg/cdrom.cc:799
msgid "Source list entries for this disc are:\n"
msgstr "As entradas da lista de fontes deste disco son:\n"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "A desmontar o CD-ROM...\n"
-
#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
msgid "Wrote %i records.\n"
"Graváronse %i rexistros con %i ficheiros que fallan e %i ficheiros que non "
"coinciden\n"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
msgid "Directory '%s' missing"
msgstr "O directorio \"%s\" falla"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
msgid "Preparing %s"
msgstr "A preparar %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
msgid "Unpacking %s"
msgstr "A desempaquetar %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
msgid "Preparing to configure %s"
msgstr "A se preparar para configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
msgid "Configuring %s"
msgstr "A configurar %s"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
#, c-format
msgid "Processing triggers for %s"
msgstr "A procesar os disparadores de %s"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
msgid "Installed %s"
msgstr "Instalouse %s"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
msgid "Preparing for removal of %s"
msgstr "A se preparar para a eliminación de %s"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
msgid "Removing %s"
msgstr "A eliminar %s"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
msgid "Removed %s"
msgstr "Eliminouse %s"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
msgid "Preparing to completely remove %s"
msgstr "A se preparar para eliminar %s completamente"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: apt-pkg/deb/dpkgpm.cc:625
#, c-format
msgid "Completely removed %s"
msgstr "Eliminouse %s completamente"
-#: apt-pkg/deb/dpkgpm.cc:749
+#: apt-pkg/deb/dpkgpm.cc:775
msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
"Non se puido escribir no rexistro, a chamada a openpty() fallou (¿/dev/pts "
msgid "Connection closed prematurely"
msgstr "A conexión pechouse prematuramente"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Liña %d longa de máis (máximo %u)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Ocorreu un erro ao procesar %s (NewFileDesc1)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Ocorreu un erro ao procesar %s (NewFileDesc2)"
+
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Etiqueta armacenada: %s \n"
+
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Atopáronse %u índices de paquetes, %u índices de fontes, %u índices de "
+#~ "traducións e %u sinaturas\n"
+
#~ msgid "openpty failed\n"
#~ msgstr "Fallou a chamada a openpty\n"
# English translation of apt_po.
# This file is put in the public domain.
# Lior Kaplan <webmaster@guides.co.il>, 2004.
-#
-#
+#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.25\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2004-06-10 19:58+0300\n"
"Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n"
"Language-Team: Hebrew\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr ""
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr ""
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "לחבילה %s בגרסה %s יש תלויות שלא נענו:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-
-#: methods/cdrom.cc:171
-#, fuzzy
-msgid "Disk not found."
-msgstr "(לא נמצא)"
+msgid "Unable to locate package %s"
+msgstr "לא מצליח לאתר את החבילה %s"
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
msgstr ""
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr ""
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr "חבילות נורמליות:"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr ""
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr "חבילות וירטואליות לחלוטין:"
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
msgstr ""
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
msgstr ""
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr ""
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr "חסרות:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
msgstr ""
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
msgstr ""
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
msgstr ""
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
msgstr ""
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
msgstr ""
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
msgstr ""
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
msgstr ""
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
msgstr ""
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
msgstr ""
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
msgstr ""
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr ""
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "קובץ החבילה %s לא מסונכרן."
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr ""
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "אתה חייב לתת בדיוק תבנית אחת"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr ""
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "לא נמצאו חבילות"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "קבצי חבילה:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr ""
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr ""
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "חבילות נעוצות:"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(לא נמצא)"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr ""
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr "מותקן:"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr ""
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(none)"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr ""
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr "מועמדים:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr ""
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr "נעץ חבילה:"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
msgstr ""
-#: methods/ftp.cc:798
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr ""
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr ""
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s בשביל %s %s קומפל על %s %s\n"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
msgstr ""
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
msgstr ""
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
msgstr ""
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr ""
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/connect.cc:64
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s (%s)"
-msgstr ""
+msgid "%s not a valid DEB package."
+msgstr "%s הוא לא חבילת DEB תקינה."
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/connect.cc:80
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgid "Unable to write to %s"
+msgstr "לא מצליח לכתוב ל-%s"
+
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "לא מצליח לקבל את גרסת debconf. האם debconf מותקן?"
+
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
msgstr ""
-#: methods/connect.cc:86
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
+msgid "Error processing directory %s"
+msgstr "שגיאה בעיבוד ספריה %s"
+
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
msgstr ""
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
msgstr ""
-#: methods/connect.cc:108
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not connect to %s:%s (%s)."
+msgid "Error processing contents %s"
msgstr ""
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
-#: methods/connect.cc:167
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "אין התאמות"
+
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Could not resolve '%s'"
-msgstr ""
+msgid "Some files are missing in the package file group `%s'"
+msgstr "חלק מהקבצים חסרים בקבוצת קבצי החבילה `%s'"
-#: methods/connect.cc:173
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr ""
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "מסד הנתונים אינו תקין, הקובץ הועבר ל-%s.old"
-#: methods/connect.cc:176
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "מסד הנתונים ישן, מנסה לשדרג ל-%s"
+
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-#: methods/connect.cc:223
+#: ftparchive/cachedb.cc:77
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr ""
+msgid "Unable to open DB file %s: %s"
+msgstr "לא מצליח לפתוח את קובץ מסד הנתונים %s: %s"
-#: methods/gpgv.cc:65
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Couldn't access keyring: '%s'"
+msgid "Failed to stat %s"
msgstr ""
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
msgstr ""
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
msgstr ""
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr ""
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: לא מצליח לקרוא את הספריה %s\n"
-#: methods/gpgv.cc:213
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgid "W: Unable to stat %s\n"
msgstr ""
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr ""
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/gpgv.cc:249
-#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: שגיאות תקפות לקובץ"
-#: methods/gpgv.cc:272
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Failed to stat %s"
+msgid "Failed to resolve %s"
+msgstr "כשלון בפענוח %s"
+
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
msgstr ""
-#: methods/gzip.cc:64
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr ""
+msgid "Failed to open %s"
+msgstr "כשלון בפתיחת %s"
-#: methods/gzip.cc:109
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Read error from %s process"
+msgid " DeLink %s [%s]\n"
msgstr ""
-#: methods/http.cc:377
-msgid "Waiting for headers"
+#: ftparchive/writer.cc:262
+#, c-format
+msgid "Failed to readlink %s"
msgstr ""
-#: methods/http.cc:523
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Got a single header line over %u chars"
+msgid "Failed to unlink %s"
msgstr ""
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr ""
+#: ftparchive/writer.cc:273
+#, c-format
+msgid "*** Failed to link %s to %s"
+msgstr "*** כשלון בקישור %s ל-%s"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
+#: ftparchive/writer.cc:283
+#, c-format
+msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
msgstr ""
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#, c-format
+msgid " %s has no override entry\n"
msgstr ""
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr ""
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#, c-format
+msgid " %s maintainer is %s not %s\n"
+msgstr "המתחזק של %s הוא %s ולא %s\n"
-#: methods/http.cc:627
-msgid "Unknown date format"
+#: ftparchive/writer.cc:620
+#, c-format
+msgid " %s has no source override entry\n"
msgstr ""
-#: methods/http.cc:774
-msgid "Select failed"
+#: ftparchive/writer.cc:624
+#, c-format
+msgid " %s has no binary override entry either\n"
msgstr ""
-#: methods/http.cc:779
-msgid "Connection timed out"
+#: ftparchive/contents.cc:321
+#, c-format
+msgid "Internal error, could not locate member %s"
msgstr ""
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr ""
-
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr ""
-
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr ""
-
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr ""
-
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr ""
-
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr ""
-
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr ""
-
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr ""
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - כשלון בהקצאת זיכרון"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr ""
+msgid "Unable to open %s"
+msgstr "לא מצליח לפתוח את %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Selection %s not found"
+msgid "Malformed override %s line %lu #1"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
+msgid "Malformed override %s line %lu #2"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Opening configuration file %s"
+msgid "Malformed override %s line %lu #3"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:510
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Line %d too long (max %u)"
+msgid "Failed to read the override file %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr ""
+msgid "Unknown compression algorithm '%s'"
+msgstr "'%s' אלגוריתם דחיה לא ידוע"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
+msgid "Compressed output %s needs a compression set"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:682
-#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:689
-#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr ""
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "כשלון בביצוע fork"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr ""
+msgid "Internal error, failed to create %s"
+msgstr "שגיאה פנימית, כלשון ביצירת %s"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
msgstr ""
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Command line option %s is not understood"
+msgid "Problem unlinking %s"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr ""
+msgid "Failed to rename %s to %s"
+msgstr "כשלון בשינוי השם %s ל-%s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr ""
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
+msgid "Regex compilation error - %s"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr ""
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "לחבילות הבאות יש תלויות שלא נענו:"
-#: apt-pkg/contrib/cmndline.cc:265
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Option '%s' is too long"
-msgstr ""
+msgid "but %s is installed"
+msgstr "אבל %s מותקנת"
-#: apt-pkg/contrib/cmndline.cc:298
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr ""
+msgid "but %s is to be installed"
+msgstr "אבל %s הולכת להיות מותקנת"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr ""
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "אבל היא אינה ניתנת להתקנה"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr ""
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "אבל היא חבילה וירטואלית"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr ""
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "אבל היא לא מותקנת"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr ""
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "אבל היא אינה הולכת להיות מותקנת"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr "או"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr ""
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "החבילות הבאות יוסרו:"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr ""
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "החבילות הבאות מעובות:"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr ""
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "החבילות הבאות ישודרגו:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "החבילות הבאות ישודרגו מטה:"
+
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "החבילות המחוזקות הבאות ישונו:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Sub-process %s received a segmentation fault."
+msgid "%s (due to %s) "
+msgstr "%s (בגלל %s) "
+
+#: cmdline/apt-get.cc:550
+#, 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 ""
+"א ז ה ר ה: החבילות החיוניות הבאות יוסרו\n"
+"על הפעולה להעשות *רק* אם אתה יודע מה אתה עושה!"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr ""
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu משודרגים, %lu מותקנים חדשים, "
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr ""
+msgid "%lu reinstalled, "
+msgstr "%lu מותקנות מחדש, "
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "Could not open file %s"
-msgstr ""
+msgid "%lu downgraded, "
+msgstr "%lu משודרגות מטה, "
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr ""
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu יוסרו ו-%lu לא ישודרגו.\n"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:593
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr ""
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu לא מותקנות לחלוטין או הוסרו.\n"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr ""
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "מתקן תלויות..."
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr ""
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr "כשלון."
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "לא מצליח לתקן תלויות"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr ""
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "א ז ה ר ה: החבילות החיוניות הבאות יוסרו"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr ""
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr "סיום"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr ""
-
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr ""
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "אולי תרצה להריץ 'apt-get -f install' כדי לתקן את אלו."
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr ""
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "תלויות שלא נענו. נסה להשתמש באפשרות -f."
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr ""
+#: cmdline/apt-get.cc:707
+#, fuzzy
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "החבילות הבאות ישודרגו:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
msgstr ""
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
msgstr ""
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "היו בעיות והאפשרות -y היתה בשימוש ללא האפשרות --force-yes"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr ""
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "לא מצליח לנעול את ספרית ההורדה."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr ""
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "רשימת המקורות לא ניתנת לקריאה."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr ""
+#: cmdline/apt-get.cc:839
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "צריך לקבל %sB/%sB מתוך הארכיונים.\n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr ""
+#: cmdline/apt-get.cc:842
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "צריך לקבל %sB מתוך הארכיונים.\n"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr ""
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "אחרי פריסה %sB נוספים יהיו בשימוש.\n"
-#: apt-pkg/depcache.cc:219
+#: cmdline/apt-get.cc:850
#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "×\9bש×\9c×\95×\9f ×\91פת×\99×\97ת %s"
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "×\90×\97ר×\99 פר×\99ס×\94 %sB × ×\95ספ×\99×\9d ×\99ש×\95×\97רר×\95.\n"
-#: apt-pkg/depcache.cc:225
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "×\9bש×\9c×\95×\9f ×\91×¤×¢× ×\95×\97 %s"
+msgid "Couldn't determine free space in %s"
+msgstr "×\90×\99×\9f ×\9c×\9a ×\9eספ×\99×§ ×\9e×§×\95×\9d ×¤× ×\95×\99 ×\91-%s."
-#: apt-pkg/tagfile.cc:102
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr ""
+msgid "You don't have enough free space in %s."
+msgstr "אין לך מספיק מקום פנוי ב-%s."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr ""
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "כן, עשה כפי שאני אומר!"
-#: apt-pkg/sourcelist.cc:92
+#: cmdline/apt-get.cc:891
#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr ""
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "בטל."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr ""
+#: cmdline/apt-get.cc:912
+#, fuzzy
+msgid "Do you want to continue [Y/n]? "
+msgstr "האם אתה רוצה להמשיך? [Y/n]"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr ""
+msgid "Failed to fetch %s %s\n"
+msgstr "כשלון בהבאת %s %s\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "כשלון בהורדת חלק מהקבצים"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "ההורדה הסתיימה במסגרת מצב הורדה בלבד."
+
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
msgstr ""
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
msgstr ""
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
msgstr ""
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
+msgid "Note, selecting %s instead of %s\n"
msgstr ""
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Index file type '%s' is not supported"
+msgid "Package %s is not installed, so not removed\n"
msgstr ""
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgid "Package %s is a virtual package provided by:\n"
msgstr ""
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
msgstr ""
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
msgstr ""
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Lists directory %spartial is missing."
+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 ""
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
msgstr ""
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
+msgid "Package %s has no installation candidate"
msgstr ""
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Retrieving file %li of %li"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr ""
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "The method driver %s could not be found."
+msgid "%s is already the newest version.\n"
msgstr ""
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Method %s did not start correctly"
+msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Packaging system '%s' is not supported"
+msgid "Selected version %s (%s) for %s\n"
msgstr ""
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
msgstr ""
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
msgstr ""
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "רשימת המקורות לא ניתנת לקריאה."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr ""
-
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr ""
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "שגיאה פנימית, כלשון ביצירת %s"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
+msgid "Couldn't find task %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
+msgid "Couldn't find package %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
+msgid "Note, selecting %s for regex '%s'\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr ""
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "אבל %s הולכת להיות מותקנת"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
msgstr ""
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr ""
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+#, fuzzy
+msgid "Internal error, problem resolver broke stuff"
+msgstr "שגיאה פנימית, כלשון ביצירת %s"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Unable to write to %s"
-msgstr "לא מצליח לכתוב ל-%s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
+msgid "Unable to find a source package for %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr ""
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr ""
-
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
+msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
+msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+msgid "Fetch source %s\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
msgstr ""
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
+msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
+msgid "Unpack command '%s' failed.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
+msgid "Build command '%s' failed.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
msgstr ""
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
msgstr ""
-#: apt-pkg/cdrom.cc:671
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Found label '%s'\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
+#: cmdline/apt-get.cc:2556
+#, c-format
+msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
msgstr ""
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
msgstr ""
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
+#: cmdline/apt-get.cc:2647
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
msgstr ""
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
msgstr ""
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:510
-#, c-format
-msgid "Directory '%s' missing"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Preparing %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Unpacking %s"
+msgid " [Working]"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Preparing to configure %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "שגיאה בעיבוד ספריה %s"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr "מותקן:"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
+#: dselect/install:32
+msgid "Bad default setting!"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
msgstr ""
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
msgstr ""
-#: methods/rred.cc:219
-msgid "Could not patch file"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
+#: dselect/update:30
+msgid "Merging available information"
msgstr ""
#: apt-inst/contrib/extracttar.cc:114
msgid "The diversion path is too long"
msgstr ""
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "כשלון בשינוי השם %s ל-%s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr ""
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr ""
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr ""
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr ""
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr ""
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "לחבילה %s בגרסה %s יש תלויות שלא נענו:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr ""
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "לא מצליח לאתר את החבילה %s"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
msgstr ""
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr "חבילות נורמליות:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr "חבילות וירטואליות לחלוטין:"
+#: methods/cdrom.cc:171
+#, fuzzy
+msgid "Disk not found."
+msgstr "(לא נמצא)"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
msgstr ""
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
msgstr ""
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr "חסרות:"
-
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
msgstr ""
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
msgstr ""
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
msgstr ""
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
msgstr ""
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
msgstr ""
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
msgstr ""
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "קובץ החבילה %s לא מסונכרן."
+msgid "TYPE failed, server said: %s"
+msgstr ""
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "אתה חייב לתת בדיוק תבנית אחת"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr ""
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "לא נמצאו חבילות"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr ""
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "קבצי חבילה:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr ""
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
msgstr ""
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr ""
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "חבילות נעוצות:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr ""
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(לא נמצא)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr ""
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr "מותקן:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(none)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr ""
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr "מועמדים:"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr ""
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr "נעץ חבילה:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr ""
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
msgstr ""
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr ""
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s בשביל %s %s קומפל על %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr ""
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
msgstr ""
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
msgstr ""
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
msgstr ""
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
msgstr ""
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
msgstr ""
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr ""
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s הוא לא חבילת DEB תקינה."
+msgid "Data transfer failed, server said '%s'"
+msgstr ""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "לא מצליח לקבל את גרסת debconf. האם debconf מותקן?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "שגיאה בעיבוד ספריה %s"
+msgid "[IP: %s %s]"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
msgstr ""
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
msgstr ""
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "אין התאמות"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:167
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "חלק מהקבצים חסרים בקבוצת קבצי החבילה `%s'"
+msgid "Could not resolve '%s'"
+msgstr ""
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:173
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "מסד הנתונים אינו תקין, הקובץ הועבר ל-%s.old"
+msgid "Temporary failure resolving '%s'"
+msgstr ""
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:176
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "מסד הנתונים ישן, מנסה לשדרג ל-%s"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr ""
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr ""
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr ""
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "לא מצליח לפתוח את קובץ מסד הנתונים %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
msgstr ""
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-#: ftparchive/writer.cc:76
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: לא מצליח לקרוא את הספריה %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr ""
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
+msgid "Read error from %s process"
msgstr ""
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr ""
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr ""
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: שגיאות תקפות לקובץ"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr ""
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr ""
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr ""
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr ""
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr ""
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr ""
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr ""
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr ""
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr ""
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr ""
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr ""
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr ""
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr ""
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr ""
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "כשלון בפענוח %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr ""
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
msgstr ""
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "כשלון בפתיחת %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr ""
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:515
+#, c-format
+msgid "Line %d too long (max %u)"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:611
+#, c-format
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:630
+#, c-format
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr ""
+
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid "Failed to readlink %s"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Failed to unlink %s"
+msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** כשלון בקישור %s ל-%s"
+msgid "Syntax error %s:%u: Included from here"
+msgstr ""
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " DeLink limit of %sB hit.\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr ""
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid " %s has no override entry\n"
+msgid "%c%s... Error!"
msgstr ""
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr "המתחזק של %s הוא %s ולא %s\n"
+msgid "%c%s... Done"
+msgstr ""
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid " %s has no source override entry\n"
+msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid " %s has no binary override entry either\n"
+msgid "Command line option %s is not understood"
msgstr ""
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Internal error, could not locate member %s"
+msgid "Command line option %s is not boolean"
msgstr ""
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - כשלון בהקצאת זיכרון"
-
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Unable to open %s"
-msgstr "לא מצליח לפתוח את %s"
+msgid "Option %s requires an argument."
+msgstr ""
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Malformed override %s line %lu #1"
+msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #2"
+msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Malformed override %s line %lu #3"
+msgid "Option '%s' is too long"
msgstr ""
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Failed to read the override file %s"
+msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "'%s' אלגוריתם דחיה לא ידוע"
+msgid "Invalid operation %s"
+msgstr ""
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Compressed output %s needs a compression set"
+msgid "Unable to stat the mount point %s"
msgstr ""
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
msgstr ""
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "כשלון בביצוע fork"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
msgstr ""
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "שגיאה פנימית, כלשון ביצירת %s"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
+msgid "Not using locking for read only lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
msgstr ""
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
msgstr ""
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Problem unlinking %s"
+msgid "Sub-process %s received a segmentation fault."
msgstr ""
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
-
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "Regex compilation error - %s"
+msgid "Sub-process %s returned an error code (%u)"
msgstr ""
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "לחבילות הבאות יש תלויות שלא נענו:"
-
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "אבל %s מותקנת"
+msgid "Sub-process %s exited unexpectedly"
+msgstr ""
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "אבל %s הולכת להיות מותקנת"
-
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "אבל היא אינה ניתנת להתקנה"
-
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "אבל היא חבילה וירטואלית"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "אבל היא לא מותקנת"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "אבל היא אינה הולכת להיות מותקנת"
-
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr "או"
-
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
-
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "החבילות הבאות יוסרו:"
-
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "החבילות הבאות מעובות:"
-
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "החבילות הבאות ישודרגו:"
-
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "החבילות הבאות ישודרגו מטה:"
+msgid "Could not open file %s"
+msgstr ""
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "החבילות המחוזקות הבאות ישונו:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
-#: cmdline/apt-get.cc:539
+#: apt-pkg/contrib/fileutl.cc:522
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (בגלל %s) "
+msgid "write, still have %lu to write but couldn't"
+msgstr ""
-#: cmdline/apt-get.cc:547
-#, fuzzy
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
msgstr ""
-"א ז ה ר ה: החבילות החיוניות הבאות יוסרו\n"
-"על הפעולה להעשות *רק* אם אתה יודע מה אתה עושה!"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu משודרגים, %lu מותקנים חדשים, "
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr ""
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu מותקנות מחדש, "
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr ""
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu משודרגות מטה, "
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr ""
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu יוסרו ו-%lu לא ישודרגו.\n"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr ""
+
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr ""
-#: cmdline/apt-get.cc:590
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu לא מותקנות לחלוטין או הוסרו.\n"
+msgid "This APT does not support the versioning system '%s'"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "מתקן תלויות..."
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr ""
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr "כשלון."
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr ""
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "לא מצליח לתקן תלויות"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "א ז ה ר ה: החבילות החיוניות הבאות יוסרו"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr ""
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr "סיום"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr ""
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "אולי תרצה להריץ 'apt-get -f install' כדי לתקן את אלו."
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr ""
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "תלויות שלא נענו. נסה להשתמש באפשרות -f."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr ""
-#: cmdline/apt-get.cc:704
-#, fuzzy
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "החבילות הבאות ישודרגו:"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr ""
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
msgstr ""
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
msgstr ""
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
msgstr ""
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "היו בעיות והאפשרות -y היתה בשימוש ללא האפשרות --force-yes"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr ""
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
msgstr ""
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
msgstr ""
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
msgstr ""
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "לא מצליח לנעול את ספרית ההורדה."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr ""
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr ""
+
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
msgstr ""
-#: cmdline/apt-get.cc:836
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "כשלון בפתיחת %s"
+
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "כשלון בפענוח %s"
+
+#: apt-pkg/tagfile.cc:102
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "צריך לקבל %sB/%sB מתוך הארכיונים.\n"
+msgid "Unable to parse package file %s (1)"
+msgstr ""
-#: cmdline/apt-get.cc:839
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "צריך לקבל %sB מתוך הארכיונים.\n"
+msgid "Unable to parse package file %s (2)"
+msgstr ""
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "אחרי פריסה %sB נוספים יהיו בשימוש.\n"
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr ""
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "אחרי פריסה %sB נוספים ישוחררו.\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
-#, fuzzy, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "אין לך מספיק מקום פנוי ב-%s."
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr ""
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "אין לך מספיק מקום פנוי ב-%s."
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr ""
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/sourcelist.cc:108
+#, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "כן, עשה כפי שאני אומר!"
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr ""
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Line %u too long in source list %s."
msgstr ""
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "בטל."
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr ""
-#: cmdline/apt-get.cc:904
-#, fuzzy
-msgid "Do you want to continue [Y/n]? "
-msgstr "האם אתה רוצה להמשיך? [Y/n]"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr ""
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "כשלון בהבאת %s %s\n"
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr ""
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "כשלון בהורדת חלק מהקבצים"
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "ההורדה הסתיימה במסגרת מצב הורדה בלבד."
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr ""
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:247
+#, c-format
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "Note, selecting %s instead of %s\n"
+msgid "Archive directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1055
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Package %s is not installed, so not removed\n"
+msgid "Retrieving file %li of %li"
msgstr ""
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
+msgid "The method driver %s could not be found."
msgstr ""
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
msgstr ""
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:124
#, 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"
+msgid "Packaging system '%s' is not supported"
msgstr ""
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
msgstr ""
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s has no installation candidate"
+msgid "Unable to stat %s."
msgstr ""
-#: cmdline/apt-get.cc:1148
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-#: cmdline/apt-get.cc:1156
-#, c-format
-msgid "%s is already the newest version.\n"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-#: cmdline/apt-get.cc:1185
-#, c-format
-msgid "Release '%s' for '%s' was not found"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-#: cmdline/apt-get.cc:1187
-#, c-format
-msgid "Version '%s' for '%s' was not found"
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
msgstr ""
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Selected version %s (%s) for %s\n"
+msgid "Did not understand pin type %s"
msgstr ""
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
msgstr ""
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
msgstr ""
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
msgstr ""
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
msgstr ""
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:153
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
msgstr ""
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
msgstr ""
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:182
+#, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
msgstr ""
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "שגיאה פנימית, כלשון ביצירת %s"
-
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
+#: apt-pkg/pkgcachegen.cc:213
+#, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
msgstr ""
-#: cmdline/apt-get.cc:1545
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Couldn't find task %s"
+msgid "Error occurred while processing %s (UsePackage3)"
msgstr ""
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Couldn't find package %s"
+msgid "Error occurred while processing %s (NewVersion2)"
msgstr ""
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
+msgid "Error occurred while processing %s (NewFileDesc2)"
msgstr ""
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "אבל %s הולכת להיות מותקנת"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1742
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1750
-msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
msgstr ""
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
msgstr ""
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
msgstr ""
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
msgstr ""
-#: cmdline/apt-get.cc:1913
-msgid "Done"
+#: apt-pkg/acquire-item.cc:127
+#, c-format
+msgid "rename failed, %s (%s -> %s)."
msgstr ""
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-#, fuzzy
-msgid "Internal error, problem resolver broke stuff"
-msgstr "שגיאה פנימית, כלשון ביצירת %s"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr ""
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/acquire-item.cc:1213
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/acquire-item.cc:1272
#, c-format
-msgid "You don't have enough free space in %s"
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Fetch source %s\n"
+msgid "Vendor block %s contains no fingerprint"
msgstr ""
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
msgstr ""
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unpack command '%s' failed.\n"
+msgid "Stored label: %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
msgstr ""
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Build command '%s' failed.\n"
+msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
msgstr ""
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
msgstr ""
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
msgstr ""
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
msgstr ""
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Found label '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
msgstr ""
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2557
-#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
msgstr ""
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
msgstr ""
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
msgstr ""
-#: cmdline/apt-get.cc:2634
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#, c-format
+msgid "Wrote %i records.\n"
msgstr ""
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#, c-format
+msgid "Wrote %i records with %i missing files.\n"
msgstr ""
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#, c-format
+msgid "Wrote %i records with %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#, c-format
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:114
-msgid "Err "
+#: apt-pkg/deb/dpkgpm.cc:513
+#, c-format
+msgid "Directory '%s' missing"
msgstr ""
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
+msgid "Preparing %s"
msgstr ""
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid " [Working]"
+msgid "Unpacking %s"
msgstr ""
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
+msgid "Preparing to configure %s"
msgstr ""
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
msgstr ""
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "שגיאה בעיבוד ספריה %s"
+
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr "מותקן:"
+
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
msgstr ""
-#: dselect/install:32
-msgid "Bad default setting!"
+#: apt-pkg/deb/dpkgpm.cc:618
+#, c-format
+msgid "Removing %s"
msgstr ""
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
+#: apt-pkg/deb/dpkgpm.cc:619
+#, c-format
+msgid "Removed %s"
msgstr ""
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
msgstr ""
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
msgstr ""
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
+#: methods/rred.cc:219
+msgid "Could not patch file"
msgstr ""
-#: dselect/update:30
-msgid "Merging available information"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
msgstr ""
#, fuzzy
msgstr ""
"Project-Id-Version: hu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-21 11:04+0100\n"
"Last-Translator: SZERVÁC Attila <sas@321.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian>\n"
"X-Poedit-Language: Hungarian\n"
"X-Poedit-Country: HUNGARY\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "%s CD-ROM adatbázis nem olvasható"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Kérlek használd az apt-cdrom parancsot a CD felismertetésére. Az apt-get "
-"update nem használható új CD-k hozzáadására"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Hibás CD"
+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"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Nem lehet lecsatolni az itt lévő CD-ROM-ot: %s, talán még használod."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Nem találom a lemezt"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Nem találom a fájlt"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Nem érhető el"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "A módosítási időt beállítása sikertelen"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Érvénytelen URI, helyi URIk nem kezdődhetnek //-el"
+msgid "Unable to locate package %s"
+msgstr "Az alábbi csomag nem található: %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Bejelentkezés a kiszolgálóra:"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Csomagnevek összesen : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Nem lehet a társ nevét megállapítani"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normális csomagok: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Nem lehet a helyi nevet megállapítani"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Teljesen virtuális csomagok: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "A kiszolgáló megtagadta a kapcsolatot: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Egyedi virtuális csomagok: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Hibás USER, a kiszolgáló üzenete: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Vegyes virtuális csomagok: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Hibás PASS, a kiszolgáló üzenete: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Hiányzik: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Egy proxy kiszolgáló meg lett adva login szkript nélkül, és az Acquire::ftp::"
-"ProxyLogin üres."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Különböző verziók összesen: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "A login szkript '%s' parancsa hibázott, a kiszolgáló üzenete: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "Összes külső leírás: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Hibás TYPE, a kiszolgáló üzenete: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Függőségek összesen: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Időtúllépés a kapcsolatban"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Verzió/Fájl kapcsolatok összesen: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "A kiszolgáló lezárta a kapcsolatot"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "Összes Leírás/Fájl kapcsolat: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Olvasási hiba"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "\"Előkészít\" kapcsolatok összesen: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "A válasz túlcsordította a puffert."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Minták összesen: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokoll hiba"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Függőségi-verzió terület összesen: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Írási hiba"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Slack terület összesen: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Nem lehet létrehozni a socket-et"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Terület összesen: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Nem lehet kapcsolódni az adat sockethez, a kapcsolat túllépte az időt"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "%s csomag fájl szinkronon kívül."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Sikertelen"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Pontosan egy mintát kell megadnod"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Nem lehet kapcsolódni a passzív sockethez."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nem találtam csomagokat"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "A getaddrinfo nem talált figyelő socketet"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Csomagfájlok:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Nem lehet összekapcsolódni a sockettel"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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 csomag fájlra"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Nem lehet figyelni a socketen"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Nem lehet megállapítani a socket nevét"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Rögzített csomagok:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Nem lehet PORT parancsot küldeni"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nem találtam)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Ismeretlen %u címcsalád (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Telepítve: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Hibás EPRT, a kiszolgáló üzenete: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(nincs)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Az adat sockethez kapcsolódás túllépte az időt"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Jelölt: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Nem lehet elfogadni a kapcsolatot"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Csomag Tű: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Probléma a fájl hash értékének meghatározásakor"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Verziótáblázat:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Az adat socket túllépte az időt"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Adatátvitel sikertelen, a kiszolgáló üzenete: '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s ehhez: %s %s fordítás ideje: %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Lekérdezés"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Nem lehet meghívni "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Csatlakozás: %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Használat: apt-cache [opciók] parancs\n"
+" apt-cache [opciók] add fájl1 [fájl2 ...]\n"
+" apt-cache [opciók] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [opciók] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"Az apt-cache egy alacsony szintű eszköz az APT bináris gyorsítótár-"
+"fájljainak\n"
+"a kezelésére, és azokból információk lekérdezésére\n"
+"\n"
+"Parancsok:\n"
+" add - Hozzávesz egy csomagfájlt a forrás gyorsítótárhoz\n"
+" gencaches - Felépíti a csomag és a forrás gyorsítótárat\n"
+" showpkg - Megmutatja az általános információkat egy csomagról\n"
+" stats - Alapvető statisztikákat mutat\n"
+" dump - A teljes fájlt megmutatja tömör formában\n"
+" dumpavail - Kinyomtat egy elérhető fájlt az stdoutra\n"
+" unmet - Megmutatja a teljesítetlen függőségeket\n"
+" search - A csomaglistában keres reguláris kifejezéseket\n"
+" show - Egy leírást mutat a csomagról\n"
+" depends - Nyers függőségi információt mutat a csomagról\n"
+" rdepends - Fordított függőségi információkat mutat a csomagról\n"
+" pkgnames - Kilistázza az összes csomag nevét\n"
+" dotty - GraphVishez való csomaggrafikonokat generál\n"
+" xvcg - xvcg-hez való csomaggrafikonokat generál\n"
+" policy - Megmutatja a policy beállításokat\n"
+"\n"
+"Opciók:\n"
+" -h Ez a súgó szöveg.\n"
+" -p=? A csomag gyorsítótár.\n"
+" -s=? A forrás gyorsítótár.\n"
+" -q Letiltja az állapotjelzőt.\n"
+" -i Csak a fontos függőségeket mutatja az unmet parancsnál.\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
+"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további információért.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Adj egy nevet e lemezhez, mint például 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "socket létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Tégy be egy lemezt a meghajtóba és üss enter-t"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)."
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Ismételd meg e folyamatot készleted többi CD-jével is."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Az argumentumok nincsenek párban"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Nem tudtam kapcsolódni ehhez: %s: %s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Használat: apt-config [opciók] parancs\n"
+"\n"
+"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n"
+"\n"
+"Parancsok:\n"
+" shell - Shell mód\n"
+" dump - Megmutatja a konfigurációt\n"
+"Opciók:\n"
+" -h Ez a súgó szöveg\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Kapcsolódás: %s"
+msgid "%s not a valid DEB package."
+msgstr "%s nem egy érvényes DEB csomag."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nem lehet feloldani a következőt: '%s' "
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Használat:apt-extracttemplates fájl1 [fájl2 ...]\n"
+"\n"
+"Az apt-extracttemplates egy eszköz konfigurációs- és minta-információk "
+"debian-\n"
+"csomagokból való kibontására\n"
+"\n"
+"Opciók:\n"
+" -h Ez a súgó szöveg\n"
+" -t Beállítja az átmeneti könyvtárat\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Átmeneti hiba '%s' feloldása közben"
+msgid "Unable to write to %s"
+msgstr "Nem lehet írni ebbe: %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Valami rossz történt '%s: %s' feloldásakor (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Nem lehet megállapítani a debconf verziót. A debconf telepítve van?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Sikertelen kapcsolódás ide: %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "A csomagkiterjesztések listája túl hosszú"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "%s kulcstartó nem érhető el"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "H: Az Acquire::gpgv::Options argumentum lista túl hosszú. Kilépek."
+msgid "Error processing directory %s"
+msgstr "Hiba a(z) %s könyvtár feldolgozásakor"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "Belső hiba: Jó aláírás, de meghatározhatatlan kulcs ujjlenyomat?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "A forráskiterjesztések listája túl hosszú"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "1 vagy több érvénytelen aláírást találtam."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Hiba a tartalom fájl fejlécének írásakor"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "'%s' nem futtatható az aláírás ellenőrzéséhez (a gnupg telepítve van?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Ismeretlen gpgv futtatási hiba"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Az alábbi aláírások érvénytelenek voltak:\n"
+msgid "Error processing contents %s"
+msgstr "Hiba %s tartalmának feldolgozásakor"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Az alábbi aláírások nem igazolhatók, mert a nyilvános kulcs nem elérhető:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "%s elérése sikertelen"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Nem lehet csövet nyitni ehhez: %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Olvasási hiba %s folyamattól"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Várakozás a fejlécekre"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Egyetlen fejléc sort kaptam, ami több mint %u karakteres"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Rossz fejléc sor"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Használat: apt-ftparchive [opciók] parancs\n"
+"Parancsok: packages binarypath [felülbírálófájl [útvonal-előtag]]\n"
+" sources srcpath [felülbírálófájl [útvonal-előtag]]\n"
+" contents path\n"
+" release path\n"
+" generate config [csoportok]\n"
+" clean config\n"
+"\n"
+"Az apt-ftparchive indexfájlokat generál a Debian archívokhoz. A generálás\n"
+"sok stílusát támogatja, a teljesen automatizálttól kezdve a\n"
+"dpkg-scanpackages és a dpkg-scansources funkcionális helyettesítéséig.\n"
+"\n"
+"Az apt-ftparchive Package fájlokat generál a .deb-ek fájából. A Package\n"
+"fájl minden vezérlő mezőt tartalmaz minden egyes csomagról úgy az MD5\n"
+"hasht mint a fájlméretet. Az override (felülbíráló) fájl támogatott a\n"
+"Prioritás és Szekció mezők értékének kényszerítésére.\n"
+"\n"
+"Hasonlóképpen az apt-ftparchive Sources fájlokat generál .dsc-k fájából.\n"
+"A --source-override opció használható forrás-felülbíráló fájlok megadására\n"
+"\n"
+"A 'packages' és 'sources' parancsokat a fa gyökeréből kell futtatni.\n"
+"A BinaryPath-nak a rekurzív keresés kiindulópontjára kell mutatni és\n"
+"a felülbírálófájlnak a felülbíráló jelzőket kell tartalmaznia. Az útvonal-"
+"előtag\n"
+"hozzáadódik a fájlnév mezőkhöz, ha meg van adva. Felhasználására egy példa "
+"a\n"
+"Debian archívumból:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opciók:\n"
+" -h E súgó szöveg\n"
+" --md5 MD5 generálás vezérlése\n"
+" -s=? Forrás felülbíráló fájl\n"
+" -q Szűkszavú mód\n"
+" -d=? Opcionális gyorsítótár-adatbázis kiválasztása\n"
+" --no-delink \"delink\" hibakereső mód bekapcsolása\n"
+" --contents Tartalom fájl generálásának ellenőrzése\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "A http kiszolgáló egy érvénytelen válaszfejlécet küldött"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nincs illeszkedő kiválasztás"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "A http kiszolgáló egy érvénytelen Content-Length fejlécet küldött"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Néhány fájl hiányzik a(z) '%s' csomagfájl-csoportból"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "A http kiszolgáló egy érvénytelen Content-Range fejlécet küldött"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB megsérült, a fájl átnevezve %s.old-ra"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Ez a http szerver támogatja a sérült tartományokat "
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB régi, megkísérlem frissíteni erre: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Ismeretlen dátum formátum"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB formátum érvénytelen. Ha az apt régebbi változatáról frissítettél, töröld "
+"és hozd újra létre az adatbázist."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Sikertelen kiválasztás"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Időtúllépés a kapcsolatban"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "%s elérése sikertelen"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Hiba a kimeneti fájl írásakor"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Az archívumnak nincs vezérlő rekordja"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Hiba fájl írásakor"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Nem sikerült egy mutatóhoz jutni"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Hiba a fájl írásakor"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "F: nem lehet a(z) %s könyvtárat olvasni\n"
-#: methods/http.cc:875
-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"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "F: %s nem érhető el\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Hiba a kiszolgálóról olvasáskor"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "H: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Rossz fejlécadat"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "F: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Sikertelen kapcsolódás"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "H: Hibás a fájl "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Belső hiba"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Nem sikerült feloldani ezt: %s"
-# FIXME
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Nem lehet mmap-olni egy üres fájlt"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Fabejárás nem sikerült"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Nem sikerült %lu bájtot mmap-olni"
+msgid "Failed to open %s"
+msgstr "%s megnyitása sikertelen"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "%s kiválasztás nem található"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Ismeretlen típusrövidítés: '%c'"
+msgid "Failed to readlink %s"
+msgstr "readlink nem hajtható végre erre: %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "%s konfigurációs fájl megnyitása"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "A(z) %d. sor túl hosszú (maximum %d)"
+msgid "Failed to unlink %s"
+msgstr "unlink nem hajtható végre erre: %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik"
+msgid "*** Failed to link %s to %s"
+msgstr "*** %s linkelése ehhez: %s sikertelen"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Szintaktikai hiba %s: %u: hibás formátumú címke"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink elérte %sB korlátját.\n"
-#: apt-pkg/contrib/configuration.cc:642
-#, 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"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Az archívumnak nem volt csomag mezője"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások"
+msgid " %s has no override entry\n"
+msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s karbantartója %s, nem %s\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva"
+msgid " %s has no source override entry\n"
+msgstr " %s nem rendelkezik forrás felülbíráló bejegyzéssel\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Szintaktikai hiba %s: %u: '%s' nem támogatott előírás"
+msgid " %s has no binary override entry either\n"
+msgstr " %s nem rendelkezik bináris felülbíráló bejegyzéssel sem\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén"
+msgid "Internal error, could not locate member %s"
+msgstr "Belső hiba, %s tag nem található"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "%s nem olvasható"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Nem sikerült memóriát lefoglalni"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Hiba!"
+msgid "Unable to open %s"
+msgstr "%s megnyitása sikertelen"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Kész"
+msgid "Malformed override %s line %lu #1"
+msgstr "Deformált felülbírálás %s %lu. sorában #1"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "A(z) '%c' parancssori opció [a következőből: %s] ismeretlen."
+msgid "Malformed override %s line %lu #2"
+msgstr "Deformált felülbírálás %s %lu. sorában #2"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "%s parancssori opció értelmezhetetlen"
+msgid "Malformed override %s line %lu #3"
+msgstr "Deformált felülbírálás %s %lu. sorában #3"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "%s parancssori opció nem logikai"
+msgid "Failed to read the override file %s"
+msgstr "Nem lehet a(z)%s felülbírálófájlt olvasni"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an argument."
-msgstr "%s opcióhoz szükséges egy argumentum"
+msgid "Unknown compression algorithm '%s'"
+msgstr "'%s' tömörítési algoritmus ismeretlen"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"%s opció: a konfigurációs elem specifikációhoz szükséges egy =<érték> rész."
+msgid "Compressed output %s needs a compression set"
+msgstr "%s tömörített kimenetnek egy tömörítő készletre van szüksége"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "%s opció egész és nem %s típusú argumentumot követel meg"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Nem sikerült IPC csövet létrehozni az alfolyamathoz"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Túl hosszú %s opció"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Nem sikerült FILE*-ot létrehozni"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "%s jelentés nem értelmezhető, próbáld a true vagy false értékeket"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Nem sikerült forkolni"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "%s érvénytelen művelet"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Gyermekfolyamat tömörítése"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "%s csatolási pont nem érhető el"
+msgid "Internal error, failed to create %s"
+msgstr "Belső hiba, %s létrehozása sikertelen"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Nem sikerült ide váltani: %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Nem sikerült az alfolyamat IPC-t létrehozni"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Nem sikerült elérni a CD-ROM-ot."
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Nem sikerült elindítani a tömörítőt "
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Nem zárolom '%s' csak olvasható zárolási fájlt"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "kicsomagoló"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "%s zárolási fájl nem nyitható meg"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO az alfolyamathoz/fájlhoz nem sikerült"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Nem zárolom '%s' NFS-csatlakoztatású zárolási fájlt"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Olvasási hiba az MD5 kiszámításakor"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not get lock %s"
-msgstr "Nem sikerült zárolni: %s"
+msgid "Problem unlinking %s"
+msgstr "Hiba %s elláncolásakor"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "%s nem volt itt, ahogy vártam"
+msgid "Failed to rename %s to %s"
+msgstr "Nem sikerült átnevezni %s-t erre: %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "%s alfolyamat szegmentálási hibát okozott."
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "I"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "%s alfolyamat hibakóddal tért vissza (%u)"
+msgid "Regex compilation error - %s"
+msgstr "Regex fordítási hiba - %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "%s alfolyamat váratlanul kilépett"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Could not open file %s"
-msgstr "Nem lehet megnyitni %s fájlt"
+msgid "but %s is installed"
+msgstr "de %s van telepítve"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "olvasás, még kellene %lu, de már az összes elfogyott"
+msgid "but %s is to be installed"
+msgstr "de csak %s telepíthető"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "írás, még kiírandó %lu de ez nem lehetséges"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "de az nem telepíthető"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Hiba a fájl bezárásakor"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "de az egy virtuális csomag"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Hiba a fájl leválasztásával"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "de az nincs telepítve"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Hiba a fájl szinkronizálásakor"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "de az nincs telepítésre megjelölve"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Üres csomag-gyorstár"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " vagy"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "A csomag-gyorstár fájl megsérült"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "A csomag-gyorstár fájl inkompatibilis verziójú"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Ez az APT nem támogatja a(z) '%s' verziórendszert"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Az alábbi csomagok vissza lesznek tartva:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "A csomag-gyorstár egy másik architektúrához készült"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Az alábbi csomagok frissítve lesznek:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Függ ettől"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Az alábbi csomagok ÖREGBÍTÉSRE kerülnek:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Függ ettől (előfüggés)"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Az alábbi visszafogott csomagokat cserélem:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Javasolja"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s miatt) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Ajánlja"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"FIGYELEM: Az alábbi alapvető csomagok lesznek eltávolítva\n"
+"NE tedd ezt, míg nem tudod pontosan, mit csinálsz!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Ütközik"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu frissített, %lu újonnan telepített, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Kicseréli"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu újratelepítendő, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Elavulttá teszi"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu kerül öregbítésre, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu eltávolítandó és %lu nem frissített.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "fontos"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nincs teljesen telepítve/eltávolítva.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "szükséges"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Függőségek javítása..."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "szabványos"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " sikertelen."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcionális"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Nem lehet javítani a függőségeket"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Függőségi fa építése"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Kész"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Lehetséges verziók"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Ezek kijavításához próbáld futtatni az 'apt-get -f install'-t ."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Függőség-generálás"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Teljesítetlen függőségek. Próbáld a -f használatával."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Elérhető információk egyesítése"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "FIGYELEM: Az alábbi csomagok nem hitelesíthetők!"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "%s megnyitása sikertelen"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "A hitelesítési figyelmeztetést átléptem.\n"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "%s fájl írása sikertelen"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Valóban telepíted e csomagokat ellenőrzés nélkül (i/N)? "
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Néhány csomag nem hitelesíthető"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Problémák vannak és a -y -t használtad --force-yes nélkül"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "A(z) %lu. sor hibás %s forráslistában (URI)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "A(z) %lu. sor hibás %s forráslistában (dist)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Csomagokat kellene eltávolítani, de az Eltávolítás nem engedélyezett."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "A(z) %lu. sor hibás %s forráslistában (URI feldolgozó)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Belső hiba, a rendezés nem zárult"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "A(z) %lu. sor hibás %s forráslistában (Abszolút dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Nem tudom zárolni a letöltési könyvtárat"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "A(z) %lu. sor hibás %s forráslistában (dist feldolgozó)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "A források listája olvashatatlan."
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "%s megnyitása"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Ez durva... A méretek nem egyeznek, írj ide:apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "A(z) %u. sor túl hosszú %s forráslistában."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Letöltendő az archívumokból: %sB/%sB\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "A(z) %u. sor hibás %s forráslistában (típus)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Letöltés az archívumokból: %sB\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Kicsomagolás után %sB lemezterületet használok fel\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Kicsomagolás után %sB lemezterület szabadul fel.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "'%s' típus nem ismert a(z) %u. sorban a(z) %s forráslistában"
+msgid "Couldn't determine free space in %s"
+msgstr "Nem határozható meg a szabad hely itt: %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "A(z) %u. sor hibás %s forráslistában (terjesztő id)"
+msgid "You don't have enough free space in %s."
+msgstr "Nincs elég szabad hely itt: %s."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "A 'Trivial Only' meg van adva, de ez nem egy triviális művelet."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Igen, tedd amit mondok!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Ez a telepítési lépés átmenetileg megköveteli, hogy eltávolítsd a(z) %s "
-"alapvető csomagot ami Ütközési/Elő-függőségi hurkot okoz. Ez gyakran rossz, "
-"de ha tényleg ezt akarod tenni, aktiváld az APT::Force-LoopBreak opciót."
+"Ártalmasnak tűnő műveletet készülsz végrehajtani.\n"
+"A folytatáshoz írd be ezt: '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "A(z) '%s' indexfájltípus nem támogatott"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Megszakítva."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Folytatni akarod [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"A(z) %s csomagot újra kell telepíteni, de nem találok archívumot hozzá."
+msgid "Failed to fetch %s %s\n"
+msgstr "Sikertelen letöltés: %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Néhány fájlt nem sikerült letölteni"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+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:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott "
-"csomagok okozhatják."
+"Nem lehet letölteni néhány archívumot.\n"
+" Próbáld ki az apt-get update -et vagy a --fix-missing -et."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"A problémák nem javíthatók, sérült visszafogott csomagok vannak a rendszeren."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing és média csere jelenleg nem támogatott"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "%spartial listakönyvtár hiányzik."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Nem lehet javítani a hiányzó csomagokat."
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Telepítés megszakítása."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "%spartial archívumkönyvtár hiányzik."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Megjegyzés: %s kiválasztása %s helyett\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "%li/%li fájl letöltése (%s marad)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "%s kihagyása, ez már telepítve van és a frissítés nincs beállítva.\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "%li/%li fájl letöltése"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "A megadott %s csomag nincs telepítve, így hát nem is töröltem\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "A(z) %s metódus vezérlő nem található."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "%s egy virtuális csomag, melyet az alábbi csomagok adnak:\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Telepítve]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Egyet név szerint ki kell jelölnöd a telepítésre."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "A(z) %s metódus nem indult el helyesen"
+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 tehát: hiányzik, elavult vagy csak más forrásból érhető el\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "De az alábbi csomagok felváltják:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Tedd be a(z) %s címkéjű lemezt a(z) %s meghajtóba és üss entert"
+msgid "Package %s has no installation candidate"
+msgstr "%s csomagnak nincs e telepítéshez kijelölhető változata"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "A(z) '%s' csomagrendszer nem támogatott"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "A megfelelő csomagrendszer típus nem határozható meg"
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s már a legújabb verzió.\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Unable to stat %s."
-msgstr "%s nem érhető el."
+msgid "Release '%s' for '%s' was not found"
+msgstr "'%s' kiadás ehhez: '%s' nem található"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Néhány 'source' URI-t be kell tenned a sources.list fájlba"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "A források listája olvashatatlan."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "'%s' verzió ehhez: '%s' nem található"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"A csomaglista vagy az állapot fájl nem dolgozható fel vagy nem olvasható."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "%s (%s) a kiválasztott verzió ehhez: %s\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Próbáld futtatni az apt-get update -et, hogy javítsd e hibákat"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Az update parancsnak nincsenek argumentumai"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Hibás rekord a tulajdonság fájlban, nincs csomagfejléc"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Nem tudom a listakönyvtárat zárolni"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "A(z) %s tűtípus nem értelmezhető"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Néhány index fájl letöltése meghiúsult, ezeket mellőzöm vagy régi "
+"változatukat használom."
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Nincs prioritás (vagy nulla) megadva a tűhöz"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "A gyorsítótárnak inkompatibilis verziórendszere van"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Hiba történt %s feldolgozásakor (NewPackage)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Hiba történt %s feldolgozásakor (UsePackage1)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Hiba történt %s feldolgozásakor (NewFileDesc1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Az alábbi információ segíthet megoldani a helyzetet:"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Hiba történt %s feldolgozásakor (UsePackage2)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Belső hiba, hibafeloldó gond"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Hiba történt %s feldolgozásakor (NewFileVer1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Belső hiba, AllUpgrade megsértett valamit"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Hiba történt %s feldolgozásakor (NewVersion1)"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Az alábbi csomag nem található: %s"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Hiba történt %s feldolgozásakor (UsePackage3)"
+msgid "Couldn't find package %s"
+msgstr "Az alábbi csomag nem található: %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Hiba történt %s feldolgozásakor (NewVersion2)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Megjegyzés: %s kiválasztása %s reguláris kifejezéshez\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Hiba történt %s feldolgozásakor (NewFileDesc2)"
+msgid "%s set to manually installed.\n"
+msgstr "de csak %s telepíthető"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Próbáld futtatni az 'apt-get -f install'-t az alábbiak javításához:"
+
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Ez nem semmi, túllépted a csomagnevek számát, amit ez az APT kezelni tud!"
+"Teljesítetlen függőségek. Próbáld az 'apt-get -f install'-t csomagok nélkül "
+"(vagy telepítsd a függőségeket is!)."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Ez nem semmi, túllépted a csomagverziók számát, amit ez az APT kezelni tud!"
+"Néhány csomagot nem lehetett telepíteni. Ez talán azt jelenti, hogy\n"
+"egy lehetetlen állapotot kértél vagy ha az unstable disztribúciót\n"
+"használod, akkor néhány igényelt csomag még nem készült el vagy ki\n"
+"lett mozdítva az Incoming-ból."
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Ez nem semmi, túllépted a csomagleírások számát, amit ez az APT kezelni tud!"
+"Mivel csak egyetlen műveletet kértél, ez nagy valószínűséggel arra utal\n"
+"hogy a csomag egyszerűen nem telepíthető és egy hibajelentést kellene\n"
+"kitölteni a csomaghoz."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Törött csomagok"
+
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Az alábbi extra csomagok kerülnek telepítésre:"
+
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Javasolt csomagok:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Ajánlott csomagok:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Frissítés kiszámítása... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Sikertelen"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Kész"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Belső hiba, hibafeloldó gond"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"Ez nem semmi, túllépted a függőségek számát, amit ez az APT kezelni tud."
+"Legalább egy csomagot meg kell adnod, aminek a forrását le kell tölteni"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Hiba történt %s feldolgozásakor (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Nem található forráscsomag ehhez: %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Hiba történt %s feldolgozásakor (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "A már letöltött '%s' fájl kihagyása\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr ""
-"%s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása közben"
+msgid "You don't have enough free space in %s"
+msgstr "Nincs elég szabad hely itt: %s"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "%sB/%sB forrás-archívumot kell letölteni.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Csomaglisták olvasása"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "%sB forrás-archívumot kell letölteni.\n"
-# FIXME
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "\"Előkészít\" kapcsolatok összegyűjtése"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Forrás letöltése: %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Nem sikerült néhány archívumot letölteni."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Nem lehet írni ebbe: %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO hiba a forrás-gyorsítótár mentésekor"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "'%s' kibontási parancs nem sikerült.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "sikertelen átnevezés, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Ellenőrizd, hogy a 'dpkg-dev' csomag telepítve van-e.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Az MD5Sum nem megfelelő"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "'%s' elkészítési parancs nem sikerült.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Az MD5Sum nem megfelelő"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Hiba a gyermekfolyamatnál"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Nincs elérhető nyilvános kulcs az alábbi kulcs azonosítókhoz:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Legalább egy csomagot adj meg, aminek a fordítási függőségeit ellenőrizni "
+"kell"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, 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 ""
-"Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
-"kell kijavítani a csomagot. (hiányzó arch. miatt)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Nem lehet %s fordítási-függőség információját beszerezni"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
-"kell kijavítani a csomagot."
+msgid "%s has no build depends.\n"
+msgstr "Nincs fordítási függősége a következőnek: %s.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"A csomagindex-fájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "A méret nem megfelelő"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "A(z) %s terjesztő blokk nem tartalmaz ujjlenyomatot"
+"%s függősége ennek: %s, ez nem elégíthető ki, mert a(z) %s csomag nem "
+"található"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"%s CD-ROM csatolási pont használata\n"
-"CD-ROM csatolása\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Azonosítás.. "
+"%s függősége ennek: %s, ez nem elégíthető ki, mert a(z) %s csomagnak nincs a "
+"verzió-követelményt kielégítő elérhető verziója."
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Tárolt címke: %s \n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"%s függőséget %s csomaghoz nem lehet kielégíteni: %s telepített csomag túl "
+"friss."
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "%s CD-ROM csatolási pont használata\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "CD-ROM leválasztása\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Várakozás a lemezre...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "CD-ROM felcsatolása...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Indexfájlok keresése a lemezen...\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "%s függőséget %s csomaghoz nem lehet kielégíteni: %s "
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "%i csomagindexet, %i forrásindexet és %i aláírást találtam\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "%s építési függőségei nem elégíthetőek ki."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Tárolt címke: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Nem sikerült az építési függőségeket feldolgozni"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "E név érvénytelen, próbáld újra.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Támogatott modulok:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"E lemez neve: \n"
-"%s\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Csomaglisták másolása..."
+"Használat: apt-get [opciók] parancs\n"
+" apt-get [opciók] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [opciók] source pkg1 [pkg2 ...]\n"
+"\n"
+"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez\n"
+"és telepítéséhez. A leggyakrabban használt parancsok az update és\n"
+"az install.\n"
+"\n"
+"Parancsok:\n"
+" update - Frissíti a csomaglistákat\n"
+" upgrade - Végrehajt egy frissítést\n"
+" install - Új csomagokat telepít (csomag a libc6 és nem a libc6.deb)\n"
+" remove - Csomagokat távolít el\n"
+" source - Forrás archívumokat tölt le\n"
+" build-dep - Forráscsomagok építési-függőségét konfigurálja\n"
+" dist-upgrade - Disztribúció frissítés, lásd apt-get(8)\n"
+" dselect-upgrade - Követi a dselect kijelöléseit\n"
+" clean - Törli a letöltött archívum-fájlokat\n"
+" autoclean - Törli a régi letöltött archív fájlokat\n"
+" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n"
+"\n"
+"Opciók:\n"
+" -h Ez a súgó szöveg.\n"
+" -q Naplózható kimenet - nincs folyamatjelző\n"
+" -qq Nincs kimenet, kivéve a hibákat\n"
+" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n"
+" -s Szimulációs mód.\n"
+" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n"
+" -f Próbáld folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n"
+" -m Próbáld folytatni, akkor is ha egyes archívumok nem találhatók\n"
+" -u Mutat egy listát a frissített csomagokról is\n"
+" -b Megépíti a forráscsomagot miután letöltötte\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
+"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat\n"
+"további információkért és opciókért.\n"
+" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Új forráslista írása\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Találat "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "E lemezhez tartozó forráslista-bejegyzések a következők:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Letöltés:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD-ROM leválasztása..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Mellőz "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i rekord kiírva.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Hiba "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i rekord kiírva, %i hiányzó fájllal.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Letöltve %sB %s alatt (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i rekord kiírva %i hibásan párosított fájllal\n"
+msgid " [Working]"
+msgstr " [Dolgozom]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "%i rekord kiírva %i hiányzó és %i hibásan párosított fájllal\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Kérlek tedd be a(z)\n"
+" %s\n"
+"címkéjű lemezt a(z) %s meghajtóba és üss entert\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "%spartial listakönyvtár hiányzik."
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Ismeretlen csomagbejegyzés!"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "%s előkészítése"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Használat: apt-sortpkgs [opciók] fájl1 [fájl2 ...]\n"
+"\n"
+"Az apt-sortpkgs egy egyszerű eszköz csomagfájlok rendezésére. A -s opciót\n"
+"lehet használni annak jelzésére hogy ez milyen típusú fájl.\n"
+"\n"
+"Opciók:\n"
+" -h Ez a súgó szöveg\n"
+" -s Forrásfájlrendezést használ\n"
+" -c=? Ezt a konfigurációs fájlt olvassa be\n"
+" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "%s kicsomagolása"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Hibás alapértelmezett beállítás!"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "%s konfigurálásának előkészítése"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Üss entert a folytatáshoz."
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "%s konfigurálása"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Néhány hiba adódott kibontás közben. Nekilátok konfigurálni a"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Hiba a(z) %s könyvtár feldolgozásakor"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "már telepített csomagokat. Ez a hibák duplázódását eredményezheti"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Telepített %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, 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:594
-#, c-format
-msgid "Removing %s"
-msgstr "%s eltávolítása"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Eltávolított %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "%s teljes eltávolítása előkészítése"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s teljesen eltávolítva"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "%s fájl foltozása sikertelen"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "vagy hiányzó függőségek miatti hibákat. Ez így OK, csak az ezen üzenet"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Nem sikerült IPC csövet létrehozni az alfolyamathoz"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "előtti hibák fontosak. Javítsd azokat és futtasd az [I]nstallt újra"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "A kapcsolat idő előtt lezárult"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Elérhető információk egyesítése"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Az eltérített útvonal túl hosszú"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Nem sikerült átnevezni %s-t erre: %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s nem olvasható"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Az info és temp könyvtáraknak egy fájlrendszeren kell lenniük"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Csomaglisták olvasása"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Értelmezhetetlen vezérlő fájl"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Az alábbi csomag nem található: %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "%s CD-ROM adatbázis nem olvasható"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Csomagnevek összesen : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Kérlek használd az apt-cdrom parancsot a CD felismertetésére. Az apt-get "
+"update nem használható új CD-k hozzáadására"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normális csomagok: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Hibás CD"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Teljesen virtuális csomagok: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Nem lehet lecsatolni az itt lévő CD-ROM-ot: %s, talán még használod."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Egyedi virtuális csomagok: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Nem találom a lemezt"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Vegyes virtuális csomagok: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Nem találom a fájlt"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Hiányzik: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Nem érhető el"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Különböző verziók összesen: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "A módosítási időt beállítása sikertelen"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "Ã\96sszes külsÅ\91 leÃrás: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ã\89rvénytelen URI, helyi URIk nem kezdÅ\91dhetnek //-el"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Függőségek összesen: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Bejelentkezés a kiszolgálóra:"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Verzió/Fájl kapcsolatok összesen: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Nem lehet a társ nevét megállapítani"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "Összes Leírás/Fájl kapcsolat: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Nem lehet a helyi nevet megállapítani"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "\"Előkészít\" kapcsolatok összesen: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "A kiszolgáló megtagadta a kapcsolatot: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Minták összesen: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Hibás USER, a kiszolgáló üzenete: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Függőségi-verzió terület összesen: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Hibás PASS, a kiszolgáló üzenete: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Slack terület összesen: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Egy proxy kiszolgáló meg lett adva login szkript nélkül, és az Acquire::ftp::"
+"ProxyLogin üres."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Terület összesen: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "A login szkript '%s' parancsa hibázott, a kiszolgáló üzenete: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "%s csomag fájl szinkronon kívül."
+msgid "TYPE failed, server said: %s"
+msgstr "Hibás TYPE, a kiszolgáló üzenete: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Pontosan egy mintát kell megadnod"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Időtúllépés a kapcsolatban"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nem találtam csomagokat"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "A kiszolgáló lezárta a kapcsolatot"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Csomagfájlok:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Olvasási hiba"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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 csomag fájlra"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "A válasz túlcsordította a puffert."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokoll hiba"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Rögzített csomagok:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Írási hiba"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nem találtam)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Nem lehet létrehozni a socket-et"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Telepítve: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Nem lehet kapcsolódni az adat sockethez, a kapcsolat túllépte az időt"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(nincs)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Nem lehet kapcsolódni a passzív sockethez."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Jelölt: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "A getaddrinfo nem talált figyelő socketet"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Csomag Tű: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Nem lehet összekapcsolódni a sockettel"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Verziótáblázat:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Nem lehet figyelni a socketen"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s ehhez: %s %s fordítás ideje: %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Nem lehet megállapítani a socket nevét"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Használat: apt-cache [opciók] parancs\n"
-" apt-cache [opciók] add fájl1 [fájl2 ...]\n"
-" apt-cache [opciók] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [opciók] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"Az apt-cache egy alacsony szintű eszköz az APT bináris gyorsítótár-"
-"fájljainak\n"
-"a kezelésére, és azokból információk lekérdezésére\n"
-"\n"
-"Parancsok:\n"
-" add - Hozzávesz egy csomagfájlt a forrás gyorsítótárhoz\n"
-" gencaches - Felépíti a csomag és a forrás gyorsítótárat\n"
-" showpkg - Megmutatja az általános információkat egy csomagról\n"
-" stats - Alapvető statisztikákat mutat\n"
-" dump - A teljes fájlt megmutatja tömör formában\n"
-" dumpavail - Kinyomtat egy elérhető fájlt az stdoutra\n"
-" unmet - Megmutatja a teljesítetlen függőségeket\n"
-" search - A csomaglistában keres reguláris kifejezéseket\n"
-" show - Egy leírást mutat a csomagról\n"
-" depends - Nyers függőségi információt mutat a csomagról\n"
-" rdepends - Fordított függőségi információkat mutat a csomagról\n"
-" pkgnames - Kilistázza az összes csomag nevét\n"
-" dotty - GraphVishez való csomaggrafikonokat generál\n"
-" xvcg - xvcg-hez való csomaggrafikonokat generál\n"
-" policy - Megmutatja a policy beállításokat\n"
-"\n"
-"Opciók:\n"
-" -h Ez a súgó szöveg.\n"
-" -p=? A csomag gyorsítótár.\n"
-" -s=? A forrás gyorsítótár.\n"
-" -q Letiltja az állapotjelzőt.\n"
-" -i Csak a fontos függőségeket mutatja az unmet parancsnál.\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további információért.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Nem lehet PORT parancsot küldeni"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Adj egy nevet e lemezhez, mint például 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Ismeretlen %u címcsalád (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Tégy be egy lemezt a meghajtóba és üss enter-t"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Hibás EPRT, a kiszolgáló üzenete: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Ismételd meg e folyamatot készleted többi CD-jével is."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Az adat sockethez kapcsolódás túllépte az időt"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Az argumentumok nincsenek párban"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Nem lehet elfogadni a kapcsolatot"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Használat: apt-config [opciók] parancs\n"
-"\n"
-"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n"
-"\n"
-"Parancsok:\n"
-" shell - Shell mód\n"
-" dump - Megmutatja a konfigurációt\n"
-"Opciók:\n"
-" -h Ez a súgó szöveg\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Probléma a fájl hash értékének meghatározásakor"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s nem egy érvényes DEB csomag."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Használat:apt-extracttemplates fájl1 [fájl2 ...]\n"
-"\n"
-"Az apt-extracttemplates egy eszköz konfigurációs- és minta-információk "
-"debian-\n"
-"csomagokból való kibontására\n"
-"\n"
-"Opciók:\n"
-" -h Ez a súgó szöveg\n"
-" -t Beállítja az átmeneti könyvtárat\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Az adat socket túllépte az időt"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Nem lehet megállapítani a debconf verziót. A debconf telepítve van?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Adatátvitel sikertelen, a kiszolgáló üzenete: '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "A csomagkiterjesztések listája túl hosszú"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Lekérdezés"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Nem lehet meghívni "
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "Hiba a(z) %s könyvtár feldolgozásakor"
+msgid "Connecting to %s (%s)"
+msgstr "Csatlakozás: %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "A forráskiterjesztések listája túl hosszú"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Hiba a tartalom fájl fejlécének írásakor"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "socket létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "Hiba %s tartalmának feldolgozásakor"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Használat: apt-ftparchive [opciók] parancs\n"
-"Parancsok: packages binarypath [felülbírálófájl [útvonal-előtag]]\n"
-" sources srcpath [felülbírálófájl [útvonal-előtag]]\n"
-" contents path\n"
-" release path\n"
-" generate config [csoportok]\n"
-" clean config\n"
-"\n"
-"Az apt-ftparchive indexfájlokat generál a Debian archívokhoz. A generálás\n"
-"sok stílusát támogatja, a teljesen automatizálttól kezdve a\n"
-"dpkg-scanpackages és a dpkg-scansources funkcionális helyettesítéséig.\n"
-"\n"
-"Az apt-ftparchive Package fájlokat generál a .deb-ek fájából. A Package\n"
-"fájl minden vezérlő mezőt tartalmaz minden egyes csomagról úgy az MD5\n"
-"hasht mint a fájlméretet. Az override (felülbíráló) fájl támogatott a\n"
-"Prioritás és Szekció mezők értékének kényszerítésére.\n"
-"\n"
-"Hasonlóképpen az apt-ftparchive Sources fájlokat generál .dsc-k fájából.\n"
-"A --source-override opció használható forrás-felülbíráló fájlok megadására\n"
-"\n"
-"A 'packages' és 'sources' parancsokat a fa gyökeréből kell futtatni.\n"
-"A BinaryPath-nak a rekurzív keresés kiindulópontjára kell mutatni és\n"
-"a felülbírálófájlnak a felülbíráló jelzőket kell tartalmaznia. Az útvonal-"
-"előtag\n"
-"hozzáadódik a fájlnév mezőkhöz, ha meg van adva. Felhasználására egy példa "
-"a\n"
-"Debian archívumból:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opciók:\n"
-" -h E súgó szöveg\n"
-" --md5 MD5 generálás vezérlése\n"
-" -s=? Forrás felülbíráló fájl\n"
-" -q Szűkszavú mód\n"
-" -d=? Opcionális gyorsítótár-adatbázis kiválasztása\n"
-" --no-delink \"delink\" hibakereső mód bekapcsolása\n"
-" --contents Tartalom fájl generálásának ellenőrzése\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nincs illeszkedő kiválasztás"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Nem tudtam kapcsolódni ehhez: %s: %s (%s)."
-#: ftparchive/apt-ftparchive.cc:832
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Néhány fájl hiányzik a(z) '%s' csomagfájl-csoportból"
+msgid "Connecting to %s"
+msgstr "Kapcsolódás: %s"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:167
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB megsérült, a fájl átnevezve %s.old-ra"
+msgid "Could not resolve '%s'"
+msgstr "Nem lehet feloldani a következőt: '%s' "
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:173
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB régi, megkísérlem frissíteni erre: %s"
+msgid "Temporary failure resolving '%s'"
+msgstr "Átmeneti hiba '%s' feloldása közben"
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Valami rossz történt '%s: %s' feloldásakor (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Sikertelen kapcsolódás ide: %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "%s kulcstartó nem érhető el"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "H: Az Acquire::gpgv::Options argumentum lista túl hosszú. Kilépek."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"DB formátum érvénytelen. Ha az apt régebbi változatáról frissítettél, töröld "
-"és hozd újra létre az adatbázist."
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "Belső hiba: Jó aláírás, de meghatározhatatlan kulcs ujjlenyomat?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "1 vagy több érvénytelen aláírást találtam."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "'%s' nem futtatható az aláírás ellenőrzéséhez (a gnupg telepítve van?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Az archívumnak nincs vezérlő rekordja"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Ismeretlen gpgv futtatási hiba"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Nem sikerült egy mutatóhoz jutni"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Az alábbi aláírások érvénytelenek voltak:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Az alábbi aláírások nem igazolhatók, mert a nyilvános kulcs nem elérhető:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "F: nem lehet a(z) %s könyvtárat olvasni\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Nem lehet csövet nyitni ehhez: %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "F: %s nem érhető el\n"
+msgid "Read error from %s process"
+msgstr "Olvasási hiba %s folyamattól"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "H: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Várakozás a fejlécekre"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "F: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Egyetlen fejléc sort kaptam, ami több mint %u karakteres"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "H: Hibás a fájl "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Rossz fejléc sor"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Nem sikerült feloldani ezt: %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "A http kiszolgáló egy érvénytelen válaszfejlécet küldött"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Fabejárás nem sikerült"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "A http kiszolgáló egy érvénytelen Content-Length fejlécet küldött"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "A http kiszolgáló egy érvénytelen Content-Range fejlécet küldött"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Ez a http szerver támogatja a sérült tartományokat "
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Ismeretlen dátum formátum"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Sikertelen kiválasztás"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Időtúllépés a kapcsolatban"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Hiba a kimeneti fájl írásakor"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Hiba fájl írásakor"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Hiba a fájl írásakor"
+
+#: methods/http.cc:875
+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:877
+msgid "Error reading from server"
+msgstr "Hiba a kiszolgálóról olvasáskor"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Rossz fejlécadat"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Sikertelen kapcsolódás"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Belső hiba"
+
+# FIXME
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Nem lehet mmap-olni egy üres fájlt"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "%s megnyitása sikertelen"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Nem sikerült %lu bájtot mmap-olni"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "%s kiválasztás nem található"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "readlink nem hajtható végre erre: %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Ismeretlen típusrövidítés: '%c'"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "unlink nem hajtható végre erre: %s"
+msgid "Opening configuration file %s"
+msgstr "%s konfigurációs fájl megnyitása"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "A(z) %d. sor túl hosszú (maximum %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** %s linkelése ehhez: %s sikertelen"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink elérte %sB korlátját.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Szintaktikai hiba %s: %u: hibás formátumú címke"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Az archívumnak nem volt csomag mezője"
+#: apt-pkg/contrib/configuration.cc:647
+#, 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"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n"
+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"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s karbantartója %s, nem %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nem rendelkezik forrás felülbíráló bejegyzéssel\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, 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"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Szintaktikai hiba %s: %u: '%s' nem támogatott előírás"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Belső hiba, %s tag nem található"
+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"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Nem sikerült memóriát lefoglalni"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Hiba!"
+
+#: apt-pkg/contrib/progress.cc:155
+#, c-format
+msgid "%c%s... Done"
+msgstr "%c%s... Kész"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Unable to open %s"
-msgstr "%s megnyitása sikertelen"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "A(z) '%c' parancssori opció [a következőből: %s] ismeretlen."
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Deformált felülbírálás %s %lu. sorában #1"
+msgid "Command line option %s is not understood"
+msgstr "%s parancssori opció értelmezhetetlen"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Deformált felülbírálás %s %lu. sorában #2"
+msgid "Command line option %s is not boolean"
+msgstr "%s parancssori opció nem logikai"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Deformált felülbírálás %s %lu. sorában #3"
+msgid "Option %s requires an argument."
+msgstr "%s opcióhoz szükséges egy argumentum"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Nem lehet a(z)%s felülbírálófájlt olvasni"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"%s opció: a konfigurációs elem specifikációhoz szükséges egy =<érték> rész."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "'%s' tömörítési algoritmus ismeretlen"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "%s opció egész és nem %s típusú argumentumot követel meg"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "%s tömörített kimenetnek egy tömörítő készletre van szüksége"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Nem sikerült FILE*-ot létrehozni"
+msgid "Option '%s' is too long"
+msgstr "Túl hosszú %s opció"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Nem sikerült forkolni"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "%s jelentés nem értelmezhető, próbáld a true vagy false értékeket"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Gyermekfolyamat tömörítése"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "%s érvénytelen művelet"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Belső hiba, %s létrehozása sikertelen"
+msgid "Unable to stat the mount point %s"
+msgstr "%s csatolási pont nem érhető el"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Nem sikerült az alfolyamat IPC-t létrehozni"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Nem sikerült ide váltani: %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Nem sikerült elindítani a tömörítőt "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Nem sikerült elérni a CD-ROM-ot."
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "kicsomagoló"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Nem zárolom '%s' csak olvasható zárolási fájlt"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO az alfolyamathoz/fájlhoz nem sikerült"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "%s zárolási fájl nem nyitható meg"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Olvasási hiba az MD5 kiszámításakor"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Nem zárolom '%s' NFS-csatlakoztatású zárolási fájlt"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Hiba %s elláncolásakor"
+msgid "Could not get lock %s"
+msgstr "Nem sikerült zárolni: %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "I"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "%s nem volt itt, ahogy vártam"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex fordítási hiba - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "%s alfolyamat szegmentálási hibát okozott."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "%s alfolyamat hibakóddal tért vissza (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "de %s van telepítve"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "%s alfolyamat váratlanul kilépett"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "de csak %s telepíthető"
+msgid "Could not open file %s"
+msgstr "Nem lehet megnyitni %s fájlt"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "de az nem telepíthető"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "olvasás, még kellene %lu, de már az összes elfogyott"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "de az egy virtuális csomag"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "írás, még kiírandó %lu de ez nem lehetséges"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "de az nincs telepítve"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Hiba a fájl bezárásakor"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "de az nincs telepítésre megjelölve"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Hiba a fájl leválasztásával"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " vagy"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Hiba a fájl szinkronizálásakor"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Üres csomag-gyorstár"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "A csomag-gyorstár fájl megsérült"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Az alábbi csomagok vissza lesznek tartva:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "A csomag-gyorstár fájl inkompatibilis verziójú"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Az alábbi csomagok frissítve lesznek:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Ez az APT nem támogatja a(z) '%s' verziórendszert"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Az alábbi csomagok ÖREGBÍTÉSRE kerülnek:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "A csomag-gyorstár egy másik architektúrához készült"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Az alábbi visszafogott csomagokat cserélem:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Függ ettől"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s miatt) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Függ ettől (előfüggés)"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"FIGYELEM: Az alábbi alapvető csomagok lesznek eltávolítva\n"
-"NE tedd ezt, míg nem tudod pontosan, mit csinálsz!"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Javasolja"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu frissített, %lu újonnan telepített, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Ajánlja"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu újratelepítendő, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Ütközik"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu kerül öregbítésre, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Kicseréli"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu eltávolítandó és %lu nem frissített.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Elavulttá teszi"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nincs teljesen telepítve/eltávolítva.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Függőségek javítása..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "fontos"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " sikertelen."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "szükséges"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Nem lehet javítani a függőségeket"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "szabványos"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcionális"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Kész"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Ezek kijavításához próbáld futtatni az 'apt-get -f install'-t ."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Függőségi fa építése"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Teljesítetlen függőségek. Próbáld a -f használatával."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Lehetséges verziók"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "FIGYELEM: Az alábbi csomagok nem hitelesíthetők!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Függőség-generálás"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "A hitelesítési figyelmeztetést átléptem.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Elérhető információk egyesítése"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Valóban telepíted e csomagokat ellenőrzés nélkül (i/N)? "
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s megnyitása sikertelen"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Néhány csomag nem hitelesíthető"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "%s fájl írása sikertelen"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Problémák vannak és a -y -t használtad --force-yes nélkül"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Csomagokat kellene eltávolítani, de az Eltávolítás nem engedélyezett."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "A(z) %lu. sor hibás %s forráslistában (URI)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Belső hiba, a rendezés nem zárult"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "A(z) %lu. sor hibás %s forráslistában (dist)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Nem tudom zárolni a letöltési könyvtárat"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "A(z) %lu. sor hibás %s forráslistában (URI feldolgozó)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Ez durva... A méretek nem egyeznek, írj ide:apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "A(z) %lu. sor hibás %s forráslistában (Abszolút dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Letöltendő az archívumokból: %sB/%sB\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "A(z) %lu. sor hibás %s forráslistában (dist feldolgozó)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Letöltés az archívumokból: %sB\n"
+msgid "Opening %s"
+msgstr "%s megnyitása"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Kicsomagolás után %sB lemezterületet használok fel\n"
+msgid "Line %u too long in source list %s."
+msgstr "A(z) %u. sor túl hosszú %s forráslistában."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Kicsomagolás után %sB lemezterület szabadul fel.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "A(z) %u. sor hibás %s forráslistában (típus)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nem határozható meg a szabad hely itt: %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "'%s' típus nem ismert a(z) %u. sorban a(z) %s forráslistában"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Nincs elég szabad hely itt: %s."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "A(z) %u. sor hibás %s forráslistában (terjesztő id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "A 'Trivial Only' meg van adva, de ez nem egy triviális művelet."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"Ez a telepítési lépés átmenetileg megköveteli, hogy eltávolítsd a(z) %s "
+"alapvető csomagot ami Ütközési/Elő-függőségi hurkot okoz. Ez gyakran rossz, "
+"de ha tényleg ezt akarod tenni, aktiváld az APT::Force-LoopBreak opciót."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Igen, tedd amit mondok!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "A(z) '%s' indexfájltípus nem támogatott"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Ártalmasnak tűnő műveletet készülsz végrehajtani.\n"
-"A folytatáshoz írd be ezt: '%s'\n"
-" ?] "
+"A(z) %s csomagot újra kell telepíteni, de nem találok archívumot hozzá."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Megszakítva."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott "
+"csomagok okozhatják."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Folytatni akarod [Y/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"A problémák nem javíthatók, sérült visszafogott csomagok vannak a rendszeren."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Sikertelen letöltés: %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Néhány fájlt nem sikerült letölteni"
+msgid "Lists directory %spartial is missing."
+msgstr "%spartial listakönyvtár hiányzik."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "A letöltés befejeződött a 'csak letöltés' módban"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "%spartial archívumkönyvtár hiányzik."
-#: cmdline/apt-get.cc:1001
-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.\n"
-" Próbáld ki az apt-get update -et vagy a --fix-missing -et."
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "%li/%li fájl letöltése (%s marad)"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing és média csere jelenleg nem támogatott"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "%li/%li fájl letöltése"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Nem lehet javítani a hiányzó csomagokat."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "A(z) %s metódus vezérlő nem található."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Telepítés megszakítása."
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "A(z) %s metódus nem indult el helyesen"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Megjegyzés: %s kiválasztása %s helyett\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Tedd be a(z) %s címkéjű lemezt a(z) %s meghajtóba és üss entert"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/init.cc:124
#, 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"
+msgid "Packaging system '%s' is not supported"
+msgstr "A(z) '%s' csomagrendszer nem támogatott"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "A megfelelő csomagrendszer típus nem határozható meg"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "A megadott %s csomag nincs telepítve, így hát nem is töröltem\n"
+msgid "Unable to stat %s."
+msgstr "%s nem érhető el."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Néhány 'source' URI-t be kell tenned a sources.list fájlba"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+"A csomaglista vagy az állapot fájl nem dolgozható fel vagy nem olvasható."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Próbáld futtatni az apt-get update -et, hogy javítsd e hibákat"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Hibás rekord a tulajdonság fájlban, nincs csomagfejléc"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s egy virtuális csomag, melyet az alábbi csomagok adnak:\n"
+msgid "Did not understand pin type %s"
+msgstr "A(z) %s tűtípus nem értelmezhető"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Telepítve]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Nincs prioritás (vagy nulla) megadva a tűhöz"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Egyet név szerint ki kell jelölnöd a telepítésre."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "A gyorsítótárnak inkompatibilis verziórendszere van"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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 tehát: hiányzik, elavult vagy csak más forrásból érhető el\n"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Hiba történt %s feldolgozásakor (NewPackage)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "De az alábbi csomagok felváltják:"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Hiba történt %s feldolgozásakor (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Hiba történt %s feldolgozásakor (NewFileDesc1)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "%s csomagnak nincs e telepítéshez kijelölhető változata"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Hiba történt %s feldolgozásakor (UsePackage2)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:182
#, 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"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Hiba történt %s feldolgozásakor (NewFileVer1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s már a legújabb verzió.\n"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Hiba történt %s feldolgozásakor (NewVersion1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "'%s' kiadás ehhez: '%s' nem található"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Hiba történt %s feldolgozásakor (UsePackage3)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "'%s' verzió ehhez: '%s' nem található"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Hiba történt %s feldolgozásakor (NewVersion2)"
-#: cmdline/apt-get.cc:1193
-#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "%s (%s) a kiválasztott verzió ehhez: %s\n"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Hiba történt %s feldolgozásakor (NewFileDesc2)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Az update parancsnak nincsenek argumentumai"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr ""
+"Ez nem semmi, túllépted a csomagnevek számát, amit ez az APT kezelni tud!"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Nem tudom a listakönyvtárat zárolni"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr ""
+"Ez nem semmi, túllépted a csomagverziók számát, amit ez az APT kezelni tud!"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
-"Néhány index fájl letöltése meghiúsult, ezeket mellőzöm vagy régi "
-"változatukat használom."
+"Ez nem semmi, túllépted a csomagleírások számát, amit ez az APT kezelni tud!"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Ez nem semmi, túllépted a függőségek számát, amit ez az APT kezelni tud."
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Hiba történt %s feldolgozásakor (FindPkg)"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Hiba történt %s feldolgozásakor (CollectFileProvides)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
+"%s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása közben"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Az alábbi információ segíthet megoldani a helyzetet:"
-
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Belső hiba, hibafeloldó gond"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Belső hiba, AllUpgrade megsértett valamit"
+# FIXME
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "\"Előkészít\" kapcsolatok összegyűjtése"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Az alábbi csomag nem található: %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO hiba a forrás-gyorsítótár mentésekor"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Az alábbi csomag nem található: %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "sikertelen átnevezés, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Megjegyzés: %s kiválasztása %s reguláris kifejezéshez\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Az MD5Sum nem megfelelő"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "de csak %s telepíthető"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Az MD5Sum nem megfelelő"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Próbáld futtatni az 'apt-get -f install'-t az alábbiak javításához:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Nincs elérhető nyilvános kulcs az alábbi kulcs azonosítókhoz:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Teljesítetlen függőségek. Próbáld az 'apt-get -f install'-t csomagok nélkül "
-"(vagy telepítsd a függőségeket is!)."
+"Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
+"kell kijavítani a csomagot. (hiányzó arch. miatt)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Néhány csomagot nem lehetett telepíteni. Ez talán azt jelenti, hogy\n"
-"egy lehetetlen állapotot kértél vagy ha az unstable disztribúciót\n"
-"használod, akkor néhány igényelt csomag még nem készült el vagy ki\n"
-"lett mozdítva az Incoming-ból."
+"Nem találtam egy fájlt a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
+"kell kijavítani a csomagot."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Mivel csak egyetlen műveletet kértél, ez nagy valószínűséggel arra utal\n"
-"hogy a csomag egyszerűen nem telepíthető és egy hibajelentést kellene\n"
-"kitölteni a csomaghoz."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Törött csomagok"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Az alábbi extra csomagok kerülnek telepítésre:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Javasolt csomagok:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Ajánlott csomagok:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Frissítés kiszámítása... "
+"A csomagindex-fájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz."
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Kész"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "A méret nem megfelelő"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Belső hiba, hibafeloldó gond"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "A(z) %s terjesztő blokk nem tartalmaz ujjlenyomatot"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"Legalább egy csomagot meg kell adnod, aminek a forrását le kell tölteni"
+"%s CD-ROM csatolási pont használata\n"
+"CD-ROM csatolása\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Nem található forráscsomag ehhez: %s"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Azonosítás.. "
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "A már letöltött '%s' fájl kihagyása\n"
+msgid "Stored label: %s\n"
+msgstr "Tárolt címke: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Nincs elég szabad hely itt: %s"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD-ROM leválasztása..."
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "%sB/%sB forrás-archívumot kell letölteni.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "%s CD-ROM csatolási pont használata\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "%sB forrás-archívumot kell letölteni.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "CD-ROM leválasztása\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Forrás letöltése: %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Várakozás a lemezre...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Nem sikerült néhány archívumot letölteni."
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "CD-ROM felcsatolása...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Indexfájlok keresése a lemezen...\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "'%s' kibontási parancs nem sikerült.\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "%i csomagindexet, %i forrásindexet és %i aláírást találtam\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Tárolt címke: %s \n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "E név érvénytelen, próbáld újra.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Ellenőrizd, hogy a 'dpkg-dev' csomag telepítve van-e.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"E lemez neve: \n"
+"%s\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "'%s' elkészítési parancs nem sikerült.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Csomaglisták másolása..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Hiba a gyermekfolyamatnál"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Új forráslista írása\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Legalább egy csomagot adj meg, aminek a fordítási függőségeit ellenőrizni "
-"kell"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "E lemezhez tartozó forráslista-bejegyzések a következők:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Nem lehet %s fordítási-függőség információját beszerezni"
+msgid "Wrote %i records.\n"
+msgstr "%i rekord kiírva.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "Nincs fordítási függősége a következőnek: %s.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i rekord kiírva, %i hiányzó fájllal.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"%s függősége ennek: %s, ez nem elégíthető ki, mert a(z) %s csomag nem "
-"található"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i rekord kiírva %i hibásan párosított fájllal\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s függősége ennek: %s, ez nem elégíthető ki, mert a(z) %s csomagnak nincs a "
-"verzió-követelményt kielégítő elérhető verziója."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "%i rekord kiírva %i hiányzó és %i hibásan párosított fájllal\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"%s függőséget %s csomaghoz nem lehet kielégíteni: %s telepített csomag túl "
-"friss."
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "%spartial listakönyvtár hiányzik."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "%s függőséget %s csomaghoz nem lehet kielégíteni: %s "
+msgid "Preparing %s"
+msgstr "%s előkészítése"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "%s építési függőségei nem elégíthetőek ki."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Nem sikerült az építési függőségeket feldolgozni"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Támogatott modulok:"
+msgid "Unpacking %s"
+msgstr "%s kicsomagolása"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Használat: apt-get [opciók] parancs\n"
-" apt-get [opciók] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [opciók] source pkg1 [pkg2 ...]\n"
-"\n"
-"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez\n"
-"és telepítéséhez. A leggyakrabban használt parancsok az update és\n"
-"az install.\n"
-"\n"
-"Parancsok:\n"
-" update - Frissíti a csomaglistákat\n"
-" upgrade - Végrehajt egy frissítést\n"
-" install - Új csomagokat telepít (csomag a libc6 és nem a libc6.deb)\n"
-" remove - Csomagokat távolít el\n"
-" source - Forrás archívumokat tölt le\n"
-" build-dep - Forráscsomagok építési-függőségét konfigurálja\n"
-" dist-upgrade - Disztribúció frissítés, lásd apt-get(8)\n"
-" dselect-upgrade - Követi a dselect kijelöléseit\n"
-" clean - Törli a letöltött archívum-fájlokat\n"
-" autoclean - Törli a régi letöltött archív fájlokat\n"
-" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n"
-"\n"
-"Opciók:\n"
-" -h Ez a súgó szöveg.\n"
-" -q Naplózható kimenet - nincs folyamatjelző\n"
-" -qq Nincs kimenet, kivéve a hibákat\n"
-" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n"
-" -s Szimulációs mód.\n"
-" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n"
-" -f Próbáld folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n"
-" -m Próbáld folytatni, akkor is ha egyes archívumok nem találhatók\n"
-" -u Mutat egy listát a frissített csomagokról is\n"
-" -b Megépíti a forráscsomagot miután letöltötte\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat\n"
-"további információkért és opciókért.\n"
-" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "%s konfigurálásának előkészítése"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Találat "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "%s konfigurálása"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Letöltés:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Hiba a(z) %s könyvtár feldolgozásakor"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Mellőz "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Telepített %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Hiba "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "%s eltávolításának előkészítése"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Letöltve %sB %s alatt (%sB/s)\n"
+msgid "Removing %s"
+msgstr "%s eltávolítása"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Dolgozom]"
+msgid "Removed %s"
+msgstr "Eltávolított %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Kérlek tedd be a(z)\n"
-" %s\n"
-"címkéjű lemezt a(z) %s meghajtóba és üss entert\n"
+msgid "Preparing to completely remove %s"
+msgstr "%s teljes eltávolítása előkészítése"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Ismeretlen csomagbejegyzés!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s teljesen eltávolítva"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Használat: apt-sortpkgs [opciók] fájl1 [fájl2 ...]\n"
-"\n"
-"Az apt-sortpkgs egy egyszerű eszköz csomagfájlok rendezésére. A -s opciót\n"
-"lehet használni annak jelzésére hogy ez milyen típusú fájl.\n"
-"\n"
-"Opciók:\n"
-" -h Ez a súgó szöveg\n"
-" -s Forrásfájlrendezést használ\n"
-" -c=? Ezt a konfigurációs fájlt olvassa be\n"
-" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Hibás alapértelmezett beállítás!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "%s fájl foltozása sikertelen"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Üss entert a folytatáshoz."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "A kapcsolat idő előtt lezárult"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Néhány hiba adódott kibontás közben. Nekilátok konfigurálni a"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "A(z) %d. sor túl hosszú (maximum %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "már telepített csomagokat. Ez a hibák duplázódását eredményezheti"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Hiba történt %s feldolgozásakor (NewFileDesc1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "vagy hiányzó függőségek miatti hibákat. Ez így OK, csak az ezen üzenet"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Hiba történt %s feldolgozásakor (NewFileDesc2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "előtti hibák fontosak. Javítsd azokat és futtasd az [I]nstallt újra"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Tárolt címke: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Elérhető információk egyesítése"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "%i csomagindexet, %i forrásindexet és %i aláírást találtam\n"
#, fuzzy
#~ msgid "openpty failed\n"
# Advanced Package Transfer - APT message translation catalog
# Samuele Giovanni Tonon <samu@debian.org>, 2002.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-12 09:27+0200\n"
"Last-Translator: Samuele Giovanni Tonon <samu@debian.org>\n"
"Language-Team: Italian <it@li.org>\n"
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Impossibile leggere il database del cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Si prega di usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-"
-"get update non può essere usato per aggiungere nuovi CD-ROM"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD-ROM sbagliato"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Il pacchetto %s, versione %s, ha una dipendenza non soddisfatta:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disco non trovato"
+msgid "Unable to locate package %s"
+msgstr "Impossibile trovare il pacchetto %s"
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "File non trovato"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Totale nomi dei pacchetti : "
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Impossibile analizzare"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Pacchetti normali: "
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Impossibile impostare la data di modifica (modification time)"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pacchetti virtuali puri: "
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI non valide, le URI locali non devono iniziare con //"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pacchetti virtuali singoli: "
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Accesso in corso"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Pacchetti virtuali misti: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Impossibile determinare il nome del peer"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Mancante: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Impossibile determinare il nome locale"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Totale versioni distinte: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Il server ha rifiutato la connessione e ha detto: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Totale versioni distinte: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER fallito, il server ha detto: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Totale dipendenze: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS fallito, il server ha detto: %s"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Totale relazioni ver/file: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Si è specificato un proxy server ma senza script di login, Acquire::ftp::"
-"ProxyLogin è vuoto."
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Totale relazioni ver/file: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Comando dello script di login '%s' fallito, il server ha detto: %s"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Totale corrispondenze fornite: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE fallito, il server ha detto: %s"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Totale stringhe globalizzate: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Timeout della connessione"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Totale spazio di dipendenza di versione: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Il server ha chiuso la connessione"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Totale spazio \"slack\": "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Errore di lettura"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Totale spazio occupato: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Una risposta ha superato le dimensioni del buffer."
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Il file dei pacchetti %s non è sincronizzato."
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Corruzione nel protocollo"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Bisogna specificare un singolo pattern"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Errore di scrittura"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nessun pacchetto trovato"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Impossibile creare un socket"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "File dei pacchetti:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-"Impossibile connettersi al socket dati, tempo limite di connessione esaurito"
-
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Fallito"
-
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Impossibile connettersi in modalità passiva"
-
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "È stato impossibile ottenere un socket in ascolto con getaddrinfo()"
-
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Impossibile eseguire bind() su un socket"
+"La cache non è sincronizzata, impossibile referenziare un file di pacchetti"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Impossibile eseguire listen() su un socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Impossibile determinare il nome del socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pacchetti con pin:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Impossibile inviare il comando PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(non trovato)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installato: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT fallito, il server ha detto: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(nessuno)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Tempo limite di connessione esaurito per il socket dati"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidato: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Impossibile accettare connessioni"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pin del pacchetto: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problemi nella creazione dell'hash del file"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabella versione:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Impossibile ottenere un file, il server ha detto '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Tempo limite esaurito per il socket dati"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Trasferimento dei dati fallito, il server ha detto '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s per %s %s compilato il %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Query"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Impossibile invocare "
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Utilizzo: apt-cache [opzioni] comando\n"
+" apt-cache [opzioni] add file1 [file2 ...]\n"
+" apt-cache [opzioni] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [opzioni] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache è un tool di basso livello usato per manipolare \n"
+"i file di cache dei binari di APT, e cercare informazioni in questi\n"
+"\n"
+"Comandi:\n"
+" add - Aggiunge un file di pacchetti alla cache sorgente \n"
+" gencaches - Costruisce sia la cache dei pacchetti che dei sorgenti\n"
+" showpkg - Mostra informazioni generali per un singolo pacchetto\n"
+" showsrc - Mostra i campi dei sorgenti\n"
+" stats - Mostra alcune statistiche di base\n"
+" dump - Mostra il file in forma compatta\n"
+" dumpavail - Stampa un file \"available\" in stdout\n"
+" unmet - Mostra le dipendenze non soddisfatte\n"
+" search - Cerca nella lista dei pacchetti la regex specificata\n"
+" show - Mostra un campo leggibile per il pacchetto specificato\n"
+" depends - Mostra informazioni di dipendenza per un pacchetto\n"
+" rdepends - Mostra informazioni di dipendenza all'incontrario per un "
+"pacchetto\n"
+" pkgnames - Elenca i nomi di tutti i pacchetti\n"
+" dotty - Genera un grafo dei pacchetti per GraphVis\n"
+" xvcg - Genera un grafo dei pacchetti per xvcg\n"
+" policy - Mostra le preferenze adottate\n"
+"\n"
+"Opzioni:\n"
+" -h Questo help.\n"
+" -p=? la cache pacchetti.\n"
+" -s=? la cache sorgenti.\n"
+" -q Disabilita l'indicatore di progresso\n"
+" -i Mostra solo dipendenze importanti per il comando unmet\n"
+" -c=? Legge come configurazione il file specificato\n"
+" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
+"Consultare le pagine del manuale apt-cache(8) e apt.conf(5) per maggiori "
+"informazioni\n"
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Connessione a %s (%s) in corso"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Si prega di dare un nome a questo disco, tipo 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Inserire un disco nel drive e premere invio"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Ripetere questo processo per il resto dei CD."
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Impossibile iniziare la connessione a %s:%s (%s)."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argomenti non in coppia"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Impossibile connettersi a %s:%s (%s), tempo limite di connessione esaurito"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Impossibile connettersi a %s:%s (%s)."
+"Utilizzo: apt-config [opzioni] comando\n"
+"\n"
+"apt-config è un semplice programma per leggere il file di configurazione di "
+"APT\n"
+"\n"
+"Comandi:\n"
+" shell - Modalità shell\n"
+" dump - Mostra la configurazione\n"
+"\n"
+"Opzioni\n"
+" -h Questo help.\n"
+" -c=? Legge questo file di configurazione\n"
+" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Connessione a %s in corso"
+msgid "%s not a valid DEB package."
+msgstr "%s non è un pacchetto DEB valido."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Impossibile risolvere '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilizzo: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates è un tool per estrarre configurazioni e template\n"
+"dai pacchetti debian\n"
+"\n"
+"Opzioni:\n"
+" -h Questo help.\n"
+" -t Imposta la directory temporanea\n"
+" -c=? Legge come configurazione il file specificato\n"
+" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "risoluzione di '%s' temporaneamente fallita"
+msgid "Unable to write to %s"
+msgstr "Impossibile scrivere in %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "È accaduto qualcosa di anormale nella risoluzione di '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Impossibile trovare una versione di debconf. Debconf è installato?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Impossibile connettersi a %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "L'estensione del pacchetto è troppo lunga"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Impossibile accedere al keyring '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Lista argomento da Acquire::gpgv::Options troppo lunga. Uscita in corso."
+msgid "Error processing directory %s"
+msgstr "Errore durante l'analisi della directory %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Errore interno: Firma corretta, ma non è stato possibile determinare il "
-"fingerprint della chiave?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "L'estensione del sorgente è troppo lunga"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Almeno una firma non valida è stata trovata."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Errore nella scrittura dell'header nel file contents"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Impossibile esseguire '%s' per verificare la firma (gnupg è installato?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Errore sconosciuto durante l'esecuzione di gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Le seguenti firme non erano valide:\n"
+msgid "Error processing contents %s"
+msgstr "Errore nell'analisi dei contents %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Le seguenti firme non sono state verificate perché la chiave pubblica non è "
-"disponibile:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Impossibile analizzare %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Impossibile aprire una pipe per %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Errore di lettura dal processo %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Utilizzo: apt-ftparchive [opzioni] comando\n"
+"Comandi: packages pathaibinari [filedioverride [pathprefix]\n"
+" sources pathaisorgenti [filedioverride [pathprefix]\n"
+" contents path\n"
+" release path\n"
+" generate config [gruppi]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive genera file di indice per gli archivi Debian. Supporta\n"
+"molti stili di generazione da completamente automatici a alternative\n"
+"funzionali per dpkg-scanpackages e dpkg-scansources\n"
+"\n"
+"apt-ftparchive genera file Packages da un albero di .deb. Il\n"
+"file Package contiene le informazioni di tutti i campi control da ogni\n"
+"pacchetto così come l'hash MD5 e la dimensione del file. Un file override\n"
+"è supportato per forzare il valore di Priorità e Sezione.\n"
+"\n"
+"Similarmente apt-ftparchive genera file Sources da un albero di .dscs.\n"
+"L'opzione --source-override può essere usata per specificare un file\n"
+"di override per i sorgenti\n"
+"\n"
+"I comandi 'packages' e 'sources' devono essere eseguiti nella root \n"
+"dell'albero. BinaryPath deve puntare alla base della ricerca \n"
+"ricorsiva e il file override deve contenere le opzioni di override.\n"
+"Pathprefix è\n"
+" aggiunto al campo filename se presente. Esempio di utilizzo \n"
+"dall'archivio debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages \n"
+"\n"
+"Opzioni:\n"
+" -h Questo help\n"
+" --md5 Controlla la generazione del MD5\n"
+" -s=? File override dei sorgenti\n"
+" -q Silenzioso\n"
+" -d=? Seleziona il database di cache opzionale\n"
+" --no-delink Abilita modalità di debug del delinking\n"
+" --contents Controlla la generazione del file contents\n"
+" -c=? Legge come configurazione il file specificato\n"
+" -o=? Imposta un'opzione arbitraria di configurazione"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "In attesa degli header"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nessuna selezione corrisponde"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Si è ottenuto una singola linea di header su %u caratteri"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Linea nell'header non corretta"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Mancano alcuni file nel file group di pacchetti `%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Il server HTTP ha inviato un header di risposta non valido"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB era corrotto, il file è stato rinominato in %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Il server HTTP ha inviato un Content-Length non valido"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Il DB è vecchio, tentativo di aggiornamento %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Il server HTTP ha inviato un Content-Range non valido"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Il formato DB non è valido. Se avete aggiornato da una vecchia versione di "
+"apt,rimuovete e ricreate il database."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Questo server HTTP ha il supporto del range bacato"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Impossibile aprire il file DB %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Formato della data sconosciuto"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Impossibile analizzare %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Select fallito"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "L'archivio non ha un campo control"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Tempo limite per la connessione esaurito"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Impossibile ottenere un cursore"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Errore nella scrittura del file di output"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Impossibile leggere la directory %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Errore nella scrittura nel file"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Impossibile analizzare %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Errore nella scrittura nel file"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-"Errore nella lettura dal server. Il lato remoto ha chiuso la connessione"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Errore nella lettura dal server"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Errori applicati al file "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Header dei dati malformato"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Impossibile risolvere %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Connessione fallita"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Visita dell'albero fallita"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Errore interno"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Impossibile aprire %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Impossibile eseguire mmap su un file vuoto"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Impossibile eseguire mmap di %lu byte"
+msgid "Failed to readlink %s"
+msgstr "Impossibile eseguire readlink su %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Selezione %s non trovata"
+msgid "Failed to unlink %s"
+msgstr "Impossibile eseguire unlink su %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Tipo di abbreviazione non riconosciuto: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Impossibile eseguire link tra %s e %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Apertura del file di configurazione %s in corso"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink limite di %sB raggiunto.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linea %d troppo lunga (max %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "L'archivio non ha un campo package"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Errore di sintassi %s:%u: Il blocco inizia senza nome"
+msgid " %s has no override entry\n"
+msgstr " %s non ha un campo override\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Errore di sintassi %s:%u: Tag malformato"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s maintainer è %s non %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Errore di sintassi %s:%u: Carattere extra dopo il valore"
+msgid " %s has no source override entry\n"
+msgstr " %s non ha un campo source override\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Errore di sintassi %s:%u: Le direttive possono essere fatte solo al livello "
-"più alto"
+msgid " %s has no binary override entry either\n"
+msgstr " %s non ha neppure un campo binary override\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Errore di sintassi %s:%u: Troppi include annidati"
+msgid "Internal error, could not locate member %s"
+msgstr "Errore interno, impossibile trovare il campo %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Errore di sintassi %s:%u: Incluso da qui"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Impossibile allocare memoria"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Errore di sintassi %s:%u: Direttiva non supportata '%s'"
+msgid "Unable to open %s"
+msgstr "Impossibile aprire %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file"
+msgid "Malformed override %s line %lu #1"
+msgstr "Override malformato %s linea %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Impossibile leggere %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Override malformato %s linea %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Errore!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Override malformato %s linea %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Fatto"
+msgid "Failed to read the override file %s"
+msgstr "Impossibile leggere il file override %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "L'opzione da linea di comando '%c' [da %s] è sconosciuta."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algoritmo di compressione '%s' sconosciuto"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "L'opzione da linea di comando %s non è chiara"
+msgid "Compressed output %s needs a compression set"
+msgstr "L'output compresso %s necessita di un insieme di compressione"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "L'opzione da linea di comando %s, non è booleana"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Impossibile creare un pipe IPC verso il sottoprocesso"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "L'opzione %s richiede un argomento."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Impossibile creare FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Opzione %s: la specifica di configurazione del parametro deve avere un "
-"=<valore>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Impossibile eseguire fork"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "L'opzione %s richiede un argomento intero, non '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Sottoprocesso compresso"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "L'opzione '%s' è troppo lunga"
+msgid "Internal error, failed to create %s"
+msgstr "Errore interno, impossibile creare %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Il valore %s non è chiaro, provare true o false."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Impossibile creare un sottoprocesso IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Operazione non valida %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Impossibile eseguire compressor"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Impossibile accedere al mount point %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompressore"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Impossibile raggiungere %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "I/O al sottoprocesso/file fallito"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Impossibile accedere al cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Impossibile leggere durante l'elaborazione MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Locking disabilitato per il file di lock in sola lettura %s"
+msgid "Problem unlinking %s"
+msgstr "Problema nell'unlink di %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Impossibile aprire il file di lock %s"
+msgid "Failed to rename %s to %s"
+msgstr "Impossibile rinominare %s in %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Lock disabilitato per il file di lock %s nfs montato"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "S"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Impossibile ottenere il lock %s"
+msgid "Regex compilation error - %s"
+msgstr "Errore di compilazione della regex - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "In attesa per %s ma non presente"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault."
+msgid "but %s is installed"
+msgstr "ma %s è installato"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Il sottoprocesso %s ha ritornato un codice d'errore (%u)"
+msgid "but %s is to be installed"
+msgstr "ma %s sta per essere installato"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Il sottoprocesso %s è uscito inaspettatamente"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ma non è installabile"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Impossibile aprire il file %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ma è un pacchetto virtuale"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "letto, c'erano ancora %lu da leggere ma non e' stato lasciato nulla"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ma non è installato"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "scrittura, c'erano ancora %lu da scrivere ma non era possibile"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ma non sta per essere installato"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Si è verificato un problema chiudendo il file"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " oppure"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Si è verificato un problema rimuovendo il file"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "I seguenti pacchetti NUOVI (NEW) saranno installati:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Si è verificato un problema sincronizzando il file"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "I seguenti pacchetti saranno RIMOSSI:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Cache dei pacchetti vuota"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Il file cache dei pacchetti è corrotto"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "I seguenti pacchetti saranno aggiornati:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Il file cache dei pacchetti è in una versione incompatibile"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "I seguenti pacchetti saranno RETROCESSI (DOWNGRADED):"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "I seguenti pacchetti bloccati saranno cambiati:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Questo APT non supporta il sistema di versioning '%s'"
+msgid "%s (due to %s) "
+msgstr "%s (a causa di %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
-"Il file cache dei pacchetti è stato generato per un'architettura differente"
-
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Dipende"
+"ATTENZIONE: il seguente pacchetto ESSENZIALE sta per essere rimosso\n"
+"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
+"si sta facendo!"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Predipende"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aggiornati, %lu installati, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Consiglia"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstallati, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Raccomanda"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu retrocessi (downgraded), "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Va in conflitto"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu da rimuovere e %lu non aggiornati.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Sostituisce"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu non completamente installati o rimossi.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Rende obsoleto"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Correzione delle dipendenze in corso..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " fallita."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "importante"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Impossibile correggere le dipendenze"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "richiesto"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossibile minimizzare l'insieme da aggiornare"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Fatto"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opzionale"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"È consigliabile eseguire `apt-get -f install' per correggere questi problemi."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dipendenze non trovate. Riprovare usando -f."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Generazione dell'albero delle dipendenze in corso"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati!"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versioni candidate"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Avviso di autenticazione disabilitato \n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generazione delle dipendenze"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Installare questi pacchetti senza la verifica [s/N]? "
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Aggiornamento delle informazioni disponibili"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Non è stato possibile autenticare alcuni pacchetti"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Impossibile aprire %s"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Sussistono dei problemi e -y è stata usata senza --force-yes"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Impossibile scrivere il file %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Errore interno, InstallPackages è stato chiamato con un pacchetto rotto!"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Impossibile analizzare il file dei pacchetti %s (1)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "I pacchetti devono essere rimossi ma il remove è disabilitato."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Impossibile analizzare il file dei pacchetti %s (2)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Errore interno, l'ordinamento non è terminato"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "La linea %lu in %s (URI) non è corretta"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Impossibile creare un lock sulla directory di download"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "La linea %lu in %s (dist) non è corretta"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "La lista dei sorgenti non può essere letta."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "La linea %lu in %s (URI parse) non è corretta"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Che strano... le dimensioni non corrispondono, inviare un'email a "
+"apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "La linea %lu nella lista delle fonti %s (Absolute dist) non è corretta"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "È necessario prendere %sB/%sB di archivi. \n"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "La linea %lu in %s (dist parse) non è corretta"
+msgid "Need to get %sB of archives.\n"
+msgstr "È necessario prendere %sB di archivi. \n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Apertura di %s in corso"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Dopo l'estrazione, verranno occupati %sB di spazio su disco.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linea %u troppo lunga nel source list %s."
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Dopo l'estrazione, verranno liberati %sB di spazio su disco.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "La linea %u in %s (type) non è corretta"
+msgid "Couldn't determine free space in %s"
+msgstr "Impossibile determinare lo spazio libero su %s"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Il tipo '%s' non è riconosciuto alla linea %u nella lista sorgenti %s"
+msgid "You don't have enough free space in %s."
+msgstr "Lo spazio libero in %s non è sufficiente."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "La linea %u in %s (vendor id) non è corretta"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"È stata specificata la modalità Trivial Only ma questa non è un'operazione "
+"triviale"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "SI, esegui come richiesto!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Quest'installazione necessita della rimozione temporanea del pacchetto "
-"essenziale %s a causa di un loop Conflitto/Pre-Dipendenza. Questo non è "
-"bene, ma se si vuole farlo, si attivi l'opzione APT::Force-LoopBreak "
+"Si sta per compiere un'azione potenzialmente pericolosa\n"
+"Per continuare scrivere la frase '%s' \n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Il file indice di tipo '%s' non è supportato"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Interrotto."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Continuare [S/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Il pacchetto %s deve essere reinstallato, ma non si riesce a trovare un "
-"archivio per esso."
+msgid "Failed to fetch %s %s\n"
+msgstr "Impossibile ottenere %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Il download di alcuni file è fallito"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Download completato e in modalità download-only"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Errore, pkgProblemResolver::Resolve ha generato uno stop, questo può essere "
-"causato da pacchetti bloccati "
+"Impossibile prendere alcuni archivi, forse è meglio eseguire apt-get update "
+"o provare l'opzione --fix-missing"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Impossibile correggere i problemi, ci sono pacchetti rotti bloccati"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing su media estraibili non è ancora supportato"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Manca la directory di liste %spartial."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Impossibile correggere i pacchetti mancanti"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Manca la directory di archivio %spartial."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Interruzione dell'installazione in corso."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Scaricamento file %li di %li (%s rimanente)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Nota, si sta selezionando %s al posto di %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Scaricamento file %li di %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"%s è stato saltato, perché è già installato e l'aggiornamento non è stato "
+"impostato.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Non è stato possibile trovare un driver per il metodo %s."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Il pacchetto %s non è installato, quindi non è stato rimosso\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Il metodo %s non è partito correttamente"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installato]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Bisogna esplicitamente sceglierne uno da installare."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Per favore inserire il disco chiamato '%s' nel dispositivo '%s' e premere "
-"invio."
+"Il pacchetto %s non ha versioni disponibili, ma è nominato da un altro\n"
+"pacchetto. Questo significa che il pacchetto manca, è diventato obsoleto\n"
+"o è disponibile solo all'interno di un'altra sorgente\n"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Il sistema di archiviazione (packaging) '%s' non è supportato"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Comunque il seguente pacchetto lo sostituisce:"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti"
-
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Impossibile analizzare %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Bisogna inserire alcuni URI di tipo 'source' in sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "La lista dei sorgenti non può essere letta."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"La lista dei pacchetti o il file di status non possono essere letti o aperti."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "È consigliabile eseguire apt-get update per correggere questi problemi"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Campo non valido nel file delle preferenze, Manca \"Package header\""
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Impossibile capire il tipo di pin %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Nessuna (o zero) priorità specificata per il pin"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "La cache ha un sistema incompatibile di gestione delle versioni"
-
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Errore nell'analisi di %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Il pacchetto %s non ha candidati da installare"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Errore nell'analisi di %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Errore nell'analisi di %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Errore nell'analisi di %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s è già alla versione più recente.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Errore nell'analisi di %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Non è stata trovata la release '%s' per '%s'"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Errore nell'analisi di %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Non è stata trovata la versione '%s' per '%s'"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Errore nell'analisi di %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versione selezionata %s (%s) per %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Errore nell'analisi di %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Il comando update non accetta argomenti"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Errore nell'analisi di %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Impossibile creare un lock sulla directory di list"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"WOW, si è ecceduto il numero massimo di nomi di pacchetti che questo APT è "
-"capace di gestire"
+"Impossibile scaricare alcune file di indice, essi verranno ignorati, oppure "
+"si useranno quelli precedenti."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"WOW, si è ecceduto il numero massimo di versioni che questo APT è capace di "
-"gestire"
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr ""
-"WOW, si è ecceduto il numero massimo di versioni che questo APT è capace di "
-"gestire"
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "I seguenti pacchetti NUOVI (NEW) saranno installati:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"WOW, si è ecceduto il numero massimo di dipendenze che questo APT è capace "
-"di gestire"
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Errore nell'analisi di %s (FindPkg)"
-
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Errore nell'analisi di %s (CollectFileProvides)"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"È stato impossibile trovare %s %s mentre si processava le dipendenze dei file"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Impossibile controllare la lista dei pacchetti sorgente %s"
-
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Lettura della lista dei pacchetti in corso"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione: "
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Il File Collezionato Fornisce"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Errore interno, problem resolver ha rotto qualcosa"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Impossibile scrivere in %s"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Errore interno, AllUpgrade ha rotto qualcosa"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Errore di I/O nel salvataggio del cache sorgente"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Impossibile trovare %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "rename() fallita: %s (%s -> %s)."
+msgid "Couldn't find package %s"
+msgstr "Impossibile trovare %s"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Somma MD5 non corrispondente"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Nota, si sta selezionando %s per la regex '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Somma MD5 non corrispondente"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ma %s sta per essere installato"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-"Non esiste una chiave pubblica disponibile per i seguenti ID di chiave:\n"
+"È consigliabile eseguire 'apt-get -f install' per correggere questi problemi:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Non è stato possibile trovare un file per il pacchetto %s. Questo significa "
-"che bisogna correggere manualmente l'errore. (a causa di un'architettura "
-"mancante)"
+"Dipendenze non soddisfatte. Provare 'apt-get -f install' senza pacchetti (o "
+"specificare una soluzione)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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 è stato possibile trovare file per il pacchetto %s. Questo significa che "
-"bisogna correggere manualmente l'errore."
+"Alcuni pacchetti non possono essere installati. Questo può voler\n"
+"dire che è stata richiesta una situazione impossibile oppure, se\n"
+"si sta usando la distribuzione \"unstable\", che alcuni pacchetti\n"
+"richiesti non sono ancora stati creati o rimossi da incoming."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"I file indice dei pacchetti sono corrotti. Non c'è un campo Filename: per il "
-"pacchetto %s."
+"Poiché è stata richiesta solo una singola operazione è molto facile che\n"
+"il pacchetto semplicemente non sia installabile, si consiglia\n"
+"di inviare un \"bug report\" per tale pacchetto."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Le Dimensioni non corrispondono"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pacchetto non integro"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Il blocco vendor %s non contiene dati"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "I seguenti pacchetti verranno inoltre installati:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Si userà il punto di montaggio del CD-ROM %s\n"
-"Montaggio CD-ROM\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Pacchetti suggeriti:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificazione in corso.. "
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Pacchetti raccomandati:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Etichette salvate: %s \n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calcolo dell'aggiornamento in corso... "
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Si userà il mount point del CD-ROM %s\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Fallito"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Smontaggio CD-ROM in corso\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "In attesa del disco...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Montaggio CD-ROM in corso \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Fatto"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Scansione del disco alla ricerca di file indice, in corso..\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Errore interno, problem resolver ha rotto qualcosa"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Trovati %i indici di pacchetto, %i indici di sorgenti e %i firme\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Bisogna specificare almeno un pacchetto di cui scaricare il sorgente"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Etichette salvate: %s \n"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Impossibile trovare un pacchetto sorgente per %s"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Questo non è un nome valido, riprovare.\n"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Si è saltato il file già scaricato '%s'\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Questo disco è chiamato: \n"
-"'%s'\n"
+msgid "You don't have enough free space in %s"
+msgstr "Lo spazio libero in %s non è sufficiente"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Copia della lista dei pacchetti in corso..."
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "È necessario prendere %sB/%sB di sorgenti.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Scrittura di una nuova lista sorgenti in corso\n"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "È necessario prendere %sB di sorgenti\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Le voci lista sorgenti per questo Disco sono:\n"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Prelievo del sorgente %s\n"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Smontaggio CD-ROM in corso..."
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Non è stato possibile scaricare alcuni archivi."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Scritti %i record.\n"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Si è saltata l'estrazione del sorgente già estratto in %s\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Scritti %i record con %i file mancanti.\n"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Comando di estrazione '%s' fallito.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Scritti %i record con %i file senza match\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Verificare se il pacchetto 'dpkg-dev' è installato.\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Scritti %i record con %i file mancanti e %i file senza match\n"
+msgid "Build command '%s' failed.\n"
+msgstr "Comando di costruzione '%s' fallito.\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Manca la directory di liste %spartial."
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Processo figlio fallito"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Preparazione di %s in corso"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Bisogna specificare almeno un pacchetto di cui controllare la generazione di "
+"dipendenze"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unpacking %s"
-msgstr "Scompattamento di %s in corso"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Impossibile ottenere informazioni di dipendenza di costruzione per %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Preparazione alla configurazione di %s in corso"
+msgid "%s has no build depends.\n"
+msgstr "%s non ha dipendenze di costruzione.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Configuring %s"
-msgstr "Configurazione di %s in corso"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Errore durante l'analisi della directory %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"%s dipendenze per %s non possono essere soddisfatte perché non si trova il "
+"pacchetto %s"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Installed %s"
-msgstr "%s Installato"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s dipendenze per %s non possono essere soddisfatte perché nessuna versione "
+"del pacchetto %s può soddisfare le richieste di versione"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Preparazione per la rimozione di %s in corso"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s "
+"è troppo nuovo"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Removing %s"
-msgstr "Rimozione di %s in corso"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "La dipendenza %s per %s: %s è fallita"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Removed %s"
-msgstr "%s rimosso"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Non è stato possibile soddisfare le dipendenze di costruzione per %s."
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Preparazione alla rimozione totale di %s in corso"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Il calcolo delle dipendenze per la costruzione è fallito"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Rimozione totale completata %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Moduli supportati:"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
+"Utilizzo: apt-get [opzioni] comando\n"
+" apt-get [opzioni] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [opzioni] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get è una semplice interfaccia a linea di comando per scaricare \n"
+"e installare pacchetti. I comandi più usati sono update \n"
+"e install.\n"
+"\n"
+"Comandi:\n"
+" update - Aggiorna la lista dei pacchetti\n"
+" upgrade - Esegue un aggiornamento\n"
+" install - Installa nuovi pacchetti (pkg è libc6 non libc6.deb)\n"
+" remove - Rimuove pacchetti\n"
+" source - Scarica i pacchetti sorgente\n"
+" build-dep - Configura le dipendenze di compilazione per i pacchetti "
+"sorgente\n"
+" dist-upgrade - Aggiorna la distribuzione, vedere apt-get(8)\n"
+" dselect-upgrade - Segue le selezioni di dselect\n"
+" clean - Cancella gli archivi dei pacchetti scaricati \n"
+" autoclean - Cancella gli archivi vecchi scaricati\n"
+" check - Verifica che non ci siano dipendenze rotte\n"
+"\n"
+"Opzioni:\n"
+" -h Questo help.\n"
+" -q Output registrabile - nessun indicatore di progresso\n"
+" -qq Nessun output eccetto per gli errori\n"
+" -d Solamente download - NON installa o decomprime gli archivi\n"
+" -s Nessuna azione. Simula i passi in ordine\n"
+" -y Assume sì a tutte le domande e non chiede conferma\n"
+" -f Tenta di continuare se il controllo di integrità fallisce\n"
+" -m Tenta di continuare se gli archivi non si trovano\n"
+" -u Mostra una lista dei pacchetti da aggiornare\n"
+" -b Costruisce il pacchetto sorgente dopo averlo scaricato\n"
+" -V Mostra dettagliatamente i numeri di versione\n"
+" -c=? Legge come configurazione il file specificato\n"
+" -o=? Imposta un'opzione di configurazione, es -o dir::cache=/tmp\n"
+"Consultare le pagine apt-get(8), sources.list(5) e apt.conf(5) del manuale\n"
+"per maggiori informazioni e opzioni.\n"
+" Questo APT ha i Poteri della Super Mucca.\n"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Impossibile aprire il file %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Hit "
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Impossibile creare un pipe IPC verso il sottoprocesso"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Get:"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Connessione chiusa prematuramente"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Impossibile creare delle pipe"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Impossibile eseguire gzip "
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Scaricato %sB in %s (%sB/s)\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [In corso]"
+
+#: cmdline/acqprogress.cc:271
+#, 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"
+"nel dispositivo '%s' e premere invio\n"
+
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Campo del pacchetto sconosciuto!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilizzo: apt-sortpkgs [opzioni] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs è un semplice tool per ordinare il file dei pacchetti. "
+"L'opzione -s\n"
+"è usata per indicare che tipo di file è.\n"
+"\n"
+"Opzioni:\n"
+" -h Questo help\n"
+" -s Ordina per pacchetto sorgente\n"
+" -c=? Legge come configurazione il file specificato\n"
+" -o=? Imposta un'opzione di configurazione, es -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Opzione predefinita errata!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Premere invio per continuare."
+
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Si sono verificati alcuni errori nella scompattazione. Si cercherà di "
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr ""
+"configurare i pacchetti che sono stati installati. Questo potrebbe generare "
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"errori duplicati o errori causati da dipendenze non soddisfatte. Questo va "
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+" bene solo se gli errori sopra questo messaggio sono importanti. Si prega "
+"di correggerli e di eseguire [I]nstall un'altra volta"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Aggiornamento delle informazioni disponibili"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Impossibile creare delle pipe"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Impossibile eseguire gzip "
#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
msgid "Corrupted archive"
msgid "The diversion path is too long"
msgstr "Il path della deviazione è troppo lungo"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Impossibile rinominare %s in %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Impossibile leggere %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Le directory temp e info devono essere sullo stesso filesystem"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Lettura della lista dei pacchetti in corso"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "File control non corretto"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Impossibile trovare il pacchetto %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Impossibile leggere il database del cdrom %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Totale nomi dei pacchetti : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Si prega di usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-"
+"get update non può essere usato per aggiungere nuovi CD-ROM"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Pacchetti normali: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD-ROM sbagliato"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pacchetti virtuali puri: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pacchetti virtuali singoli: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disco non trovato"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Pacchetti virtuali misti: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "File non trovato"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Mancante: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Impossibile analizzare"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Totale versioni distinte: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Impossibile impostare la data di modifica (modification time)"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Totale versioni distinte: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI non valide, le URI locali non devono iniziare con //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Totale dipendenze: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Accesso in corso"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Totale relazioni ver/file: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Impossibile determinare il nome del peer"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Totale relazioni ver/file: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Impossibile determinare il nome locale"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Totale corrispondenze fornite: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Il server ha rifiutato la connessione e ha detto: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Totale stringhe globalizzate: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER fallito, il server ha detto: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Totale spazio di dipendenza di versione: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS fallito, il server ha detto: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Totale spazio \"slack\": "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Si è specificato un proxy server ma senza script di login, Acquire::ftp::"
+"ProxyLogin è vuoto."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Totale spazio occupato: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Comando dello script di login '%s' fallito, il server ha detto: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Il file dei pacchetti %s non è sincronizzato."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE fallito, il server ha detto: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Bisogna specificare un singolo pattern"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Timeout della connessione"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nessun pacchetto trovato"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Il server ha chiuso la connessione"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "File dei pacchetti:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Errore di lettura"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr ""
-"La cache non è sincronizzata, impossibile referenziare un file di pacchetti"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Una risposta ha superato le dimensioni del buffer."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Corruzione nel protocollo"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pacchetti con pin:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Errore di scrittura"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(non trovato)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Impossibile creare un socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installato: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
+"Impossibile connettersi al socket dati, tempo limite di connessione esaurito"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(nessuno)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Impossibile connettersi in modalità passiva"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidato: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "È stato impossibile ottenere un socket in ascolto con getaddrinfo()"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pin del pacchetto: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Impossibile eseguire bind() su un socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabella versione:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Impossibile eseguire listen() su un socket"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Impossibile determinare il nome del socket"
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Impossibile inviare il comando PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s per %s %s compilato il %s %s\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT fallito, il server ha detto: %s"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Utilizzo: apt-cache [opzioni] comando\n"
-" apt-cache [opzioni] add file1 [file2 ...]\n"
-" apt-cache [opzioni] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [opzioni] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache è un tool di basso livello usato per manipolare \n"
-"i file di cache dei binari di APT, e cercare informazioni in questi\n"
-"\n"
-"Comandi:\n"
-" add - Aggiunge un file di pacchetti alla cache sorgente \n"
-" gencaches - Costruisce sia la cache dei pacchetti che dei sorgenti\n"
-" showpkg - Mostra informazioni generali per un singolo pacchetto\n"
-" showsrc - Mostra i campi dei sorgenti\n"
-" stats - Mostra alcune statistiche di base\n"
-" dump - Mostra il file in forma compatta\n"
-" dumpavail - Stampa un file \"available\" in stdout\n"
-" unmet - Mostra le dipendenze non soddisfatte\n"
-" search - Cerca nella lista dei pacchetti la regex specificata\n"
-" show - Mostra un campo leggibile per il pacchetto specificato\n"
-" depends - Mostra informazioni di dipendenza per un pacchetto\n"
-" rdepends - Mostra informazioni di dipendenza all'incontrario per un "
-"pacchetto\n"
-" pkgnames - Elenca i nomi di tutti i pacchetti\n"
-" dotty - Genera un grafo dei pacchetti per GraphVis\n"
-" xvcg - Genera un grafo dei pacchetti per xvcg\n"
-" policy - Mostra le preferenze adottate\n"
-"\n"
-"Opzioni:\n"
-" -h Questo help.\n"
-" -p=? la cache pacchetti.\n"
-" -s=? la cache sorgenti.\n"
-" -q Disabilita l'indicatore di progresso\n"
-" -i Mostra solo dipendenze importanti per il comando unmet\n"
-" -c=? Legge come configurazione il file specificato\n"
-" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
-"Consultare le pagine del manuale apt-cache(8) e apt.conf(5) per maggiori "
-"informazioni\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Tempo limite di connessione esaurito per il socket dati"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Si prega di dare un nome a questo disco, tipo 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Impossibile accettare connessioni"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Inserire un disco nel drive e premere invio"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problemi nella creazione dell'hash del file"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Ripetere questo processo per il resto dei CD."
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Impossibile ottenere un file, il server ha detto '%s'"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argomenti non in coppia"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Tempo limite esaurito per il socket dati"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Utilizzo: apt-config [opzioni] comando\n"
-"\n"
-"apt-config è un semplice programma per leggere il file di configurazione di "
-"APT\n"
-"\n"
-"Comandi:\n"
-" shell - Modalità shell\n"
-" dump - Mostra la configurazione\n"
-"\n"
-"Opzioni\n"
-" -h Questo help.\n"
-" -c=? Legge questo file di configurazione\n"
-" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Trasferimento dei dati fallito, il server ha detto '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Query"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Impossibile invocare "
+
+#: methods/connect.cc:64
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s non è un pacchetto DEB valido."
+msgid "Connecting to %s (%s)"
+msgstr "Connessione a %s (%s) in corso"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
+
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)"
+
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Impossibile iniziare la connessione a %s:%s (%s)."
+
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
msgstr ""
-"Utilizzo: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates è un tool per estrarre configurazioni e template\n"
-"dai pacchetti debian\n"
-"\n"
-"Opzioni:\n"
-" -h Questo help.\n"
-" -t Imposta la directory temporanea\n"
-" -c=? Legge come configurazione il file specificato\n"
-" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n"
+"Impossibile connettersi a %s:%s (%s), tempo limite di connessione esaurito"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Impossibile trovare una versione di debconf. Debconf è installato?"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Impossibile connettersi a %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "L'estensione del pacchetto è troppo lunga"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Connessione a %s in corso"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:167
#, c-format
-msgid "Error processing directory %s"
-msgstr "Errore durante l'analisi della directory %s"
+msgid "Could not resolve '%s'"
+msgstr "Impossibile risolvere '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "L'estensione del sorgente è troppo lunga"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "risoluzione di '%s' temporaneamente fallita"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Errore nella scrittura dell'header nel file contents"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "È accaduto qualcosa di anormale nella risoluzione di '%s:%s' (%i)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:223
#, c-format
-msgid "Error processing contents %s"
-msgstr "Errore nell'analisi dei contents %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Impossibile connettersi a %s %s:"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Utilizzo: apt-ftparchive [opzioni] comando\n"
-"Comandi: packages pathaibinari [filedioverride [pathprefix]\n"
-" sources pathaisorgenti [filedioverride [pathprefix]\n"
-" contents path\n"
-" release path\n"
-" generate config [gruppi]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive genera file di indice per gli archivi Debian. Supporta\n"
-"molti stili di generazione da completamente automatici a alternative\n"
-"funzionali per dpkg-scanpackages e dpkg-scansources\n"
-"\n"
-"apt-ftparchive genera file Packages da un albero di .deb. Il\n"
-"file Package contiene le informazioni di tutti i campi control da ogni\n"
-"pacchetto così come l'hash MD5 e la dimensione del file. Un file override\n"
-"è supportato per forzare il valore di Priorità e Sezione.\n"
-"\n"
-"Similarmente apt-ftparchive genera file Sources da un albero di .dscs.\n"
-"L'opzione --source-override può essere usata per specificare un file\n"
-"di override per i sorgenti\n"
-"\n"
-"I comandi 'packages' e 'sources' devono essere eseguiti nella root \n"
-"dell'albero. BinaryPath deve puntare alla base della ricerca \n"
-"ricorsiva e il file override deve contenere le opzioni di override.\n"
-"Pathprefix è\n"
-" aggiunto al campo filename se presente. Esempio di utilizzo \n"
-"dall'archivio debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages \n"
-"\n"
-"Opzioni:\n"
-" -h Questo help\n"
-" --md5 Controlla la generazione del MD5\n"
-" -s=? File override dei sorgenti\n"
-" -q Silenzioso\n"
-" -d=? Seleziona il database di cache opzionale\n"
-" --no-delink Abilita modalità di debug del delinking\n"
-" --contents Controlla la generazione del file contents\n"
-" -c=? Legge come configurazione il file specificato\n"
-" -o=? Imposta un'opzione arbitraria di configurazione"
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Impossibile accedere al keyring '%s'"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nessuna selezione corrisponde"
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Lista argomento da Acquire::gpgv::Options troppo lunga. Uscita in corso."
-#: ftparchive/apt-ftparchive.cc:832
-#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Mancano alcuni file nel file group di pacchetti `%s'"
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr ""
+"Errore interno: Firma corretta, ma non è stato possibile determinare il "
+"fingerprint della chiave?!"
-#: ftparchive/cachedb.cc:43
-#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB era corrotto, il file è stato rinominato in %s.old"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Almeno una firma non valida è stata trovata."
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:214
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Il DB è vecchio, tentativo di aggiornamento %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Impossibile esseguire '%s' per verificare la firma (gnupg è installato?)"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Errore sconosciuto durante l'esecuzione di gpgv"
+
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Le seguenti firme non erano valide:\n"
+
+#: methods/gpgv.cc:257
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-"Il formato DB non è valido. Se avete aggiornato da una vecchia versione di "
-"apt,rimuovete e ricreate il database."
+"Le seguenti firme non sono state verificate perché la chiave pubblica non è "
+"disponibile:\n"
-#: ftparchive/cachedb.cc:77
+#: methods/gzip.cc:64
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Impossibile aprire il file DB %s: %s"
+msgid "Couldn't open pipe for %s"
+msgstr "Impossibile aprire una pipe per %s"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "L'archivio non ha un campo control"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Errore di lettura dal processo %s"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Impossibile ottenere un cursore"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "In attesa degli header"
-#: ftparchive/writer.cc:76
+#: methods/http.cc:523
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Impossibile leggere la directory %s\n"
+msgid "Got a single header line over %u chars"
+msgstr "Si è ottenuto una singola linea di header su %u caratteri"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Impossibile analizzare %s\n"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Linea nell'header non corretta"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Il server HTTP ha inviato un header di risposta non valido"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Il server HTTP ha inviato un Content-Length non valido"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Errori applicati al file "
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Il server HTTP ha inviato un Content-Range non valido"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Questo server HTTP ha il supporto del range bacato"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Formato della data sconosciuto"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Select fallito"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Tempo limite per la connessione esaurito"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Errore nella scrittura del file di output"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Errore nella scrittura nel file"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Errore nella scrittura nel file"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Errore nella lettura dal server. Il lato remoto ha chiuso la connessione"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Errore nella lettura dal server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Header dei dati malformato"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Connessione fallita"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Errore interno"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Impossibile eseguire mmap su un file vuoto"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Impossibile risolvere %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Impossibile eseguire mmap di %lu byte"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Visita dell'albero fallita"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Selezione %s non trovata"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "Impossibile aprire %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Tipo di abbreviazione non riconosciuto: '%c'"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr "Apertura del file di configurazione %s in corso"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linea %d troppo lunga (max %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Impossibile eseguire readlink su %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Errore di sintassi %s:%u: Il blocco inizia senza nome"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Impossibile eseguire unlink su %s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Errore di sintassi %s:%u: Tag malformato"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Impossibile eseguire link tra %s e %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Errore di sintassi %s:%u: Carattere extra dopo il valore"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink limite di %sB raggiunto.\n"
+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"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "L'archivio non ha un campo package"
+#: apt-pkg/contrib/configuration.cc:694
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Errore di sintassi %s:%u: Troppi include annidati"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s non ha un campo override\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Errore di sintassi %s:%u: Incluso da qui"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s maintainer è %s non %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Errore di sintassi %s:%u: Direttiva non supportata '%s'"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s non ha un campo source override\n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s non ha neppure un campo binary override\n"
+msgid "%c%s... Error!"
+msgstr "%c%s... Errore!"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Errore interno, impossibile trovare il campo %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Fatto"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Impossibile allocare memoria"
+#: apt-pkg/contrib/cmndline.cc:77
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "L'opzione da linea di comando '%c' [da %s] è sconosciuta."
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unable to open %s"
-msgstr "Impossibile aprire %s"
+msgid "Command line option %s is not understood"
+msgstr "L'opzione da linea di comando %s non è chiara"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Override malformato %s linea %lu #1"
+msgid "Command line option %s is not boolean"
+msgstr "L'opzione da linea di comando %s, non è booleana"
+
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "L'opzione %s richiede un argomento."
+
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opzione %s: la specifica di configurazione del parametro deve avere un "
+"=<valore>."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Override malformato %s linea %lu #2"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "L'opzione %s richiede un argomento intero, non '%s'"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Override malformato %s linea %lu #3"
+msgid "Option '%s' is too long"
+msgstr "L'opzione '%s' è troppo lunga"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Impossibile leggere il file override %s"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Il valore %s non è chiaro, provare true o false."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algoritmo di compressione '%s' sconosciuto"
+msgid "Invalid operation %s"
+msgstr "Operazione non valida %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "L'output compresso %s necessita di un insieme di compressione"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Impossibile creare FILE*"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Impossibile eseguire fork"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Sottoprocesso compresso"
+msgid "Unable to stat the mount point %s"
+msgstr "Impossibile accedere al mount point %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Errore interno, impossibile creare %s"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Impossibile creare un sottoprocesso IPC"
-
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Impossibile eseguire compressor"
-
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompressore"
-
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "I/O al sottoprocesso/file fallito"
+msgid "Unable to change to %s"
+msgstr "Impossibile raggiungere %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Impossibile leggere durante l'elaborazione MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Impossibile accedere al cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problema nell'unlink di %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Locking disabilitato per il file di lock in sola lettura %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "S"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Impossibile aprire il file di lock %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Errore di compilazione della regex - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Lock disabilitato per il file di lock %s nfs montato"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Impossibile ottenere il lock %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "ma %s è installato"
+msgid "Waited for %s but it wasn't there"
+msgstr "In attesa per %s ma non presente"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "ma %s sta per essere installato"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ma non è installabile"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Il sottoprocesso %s ha ritornato un codice d'errore (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ma è un pacchetto virtuale"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Il sottoprocesso %s è uscito inaspettatamente"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ma non è installato"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Impossibile aprire il file %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ma non sta per essere installato"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "letto, c'erano ancora %lu da leggere ma non e' stato lasciato nulla"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " oppure"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "scrittura, c'erano ancora %lu da scrivere ma non era possibile"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "I seguenti pacchetti NUOVI (NEW) saranno installati:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Si è verificato un problema chiudendo il file"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "I seguenti pacchetti saranno RIMOSSI:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Si è verificato un problema rimuovendo il file"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Si è verificato un problema sincronizzando il file"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "I seguenti pacchetti saranno aggiornati:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Cache dei pacchetti vuota"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "I seguenti pacchetti saranno RETROCESSI (DOWNGRADED):"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Il file cache dei pacchetti è corrotto"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "I seguenti pacchetti bloccati saranno cambiati:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Il file cache dei pacchetti è in una versione incompatibile"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (a causa di %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Questo APT non supporta il sistema di versioning '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
msgstr ""
-"ATTENZIONE: il seguente pacchetto ESSENZIALE sta per essere rimosso\n"
-"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa "
-"si sta facendo!"
+"Il file cache dei pacchetti è stato generato per un'architettura differente"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aggiornati, %lu installati, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Dipende"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstallati, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Predipende"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu retrocessi (downgraded), "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Consiglia"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu da rimuovere e %lu non aggiornati.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Raccomanda"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu non completamente installati o rimossi.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Va in conflitto"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Correzione delle dipendenze in corso..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Sostituisce"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " fallita."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Rende obsoleto"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Impossibile correggere le dipendenze"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossibile minimizzare l'insieme da aggiornare"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "importante"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Fatto"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "richiesto"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"È consigliabile eseguire `apt-get -f install' per correggere questi problemi."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dipendenze non trovate. Riprovare usando -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opzionale"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Avviso di autenticazione disabilitato \n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Generazione dell'albero delle dipendenze in corso"
+
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versioni candidate"
+
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generazione delle dipendenze"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Installare questi pacchetti senza la verifica [s/N]? "
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Aggiornamento delle informazioni disponibili"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Non è stato possibile autenticare alcuni pacchetti"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Impossibile aprire %s"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Sussistono dei problemi e -y è stata usata senza --force-yes"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Impossibile scrivere il file %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"Errore interno, InstallPackages è stato chiamato con un pacchetto rotto!"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Impossibile analizzare il file dei pacchetti %s (1)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "I pacchetti devono essere rimossi ma il remove è disabilitato."
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Impossibile analizzare il file dei pacchetti %s (2)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Errore interno, l'ordinamento non è terminato"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "La linea %lu in %s (URI) non è corretta"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Impossibile creare un lock sulla directory di download"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "La linea %lu in %s (dist) non è corretta"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Che strano... le dimensioni non corrispondono, inviare un'email a "
-"apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "La linea %lu in %s (URI parse) non è corretta"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "È necessario prendere %sB/%sB di archivi. \n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "La linea %lu nella lista delle fonti %s (Absolute dist) non è corretta"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "È necessario prendere %sB di archivi. \n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "La linea %lu in %s (dist parse) non è corretta"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Dopo l'estrazione, verranno occupati %sB di spazio su disco.\n"
+msgid "Opening %s"
+msgstr "Apertura di %s in corso"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Dopo l'estrazione, verranno liberati %sB di spazio su disco.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Linea %u troppo lunga nel source list %s."
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Impossibile determinare lo spazio libero su %s"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "La linea %u in %s (type) non è corretta"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Lo spazio libero in %s non è sufficiente."
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Il tipo '%s' non è riconosciuto alla linea %u nella lista sorgenti %s"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "La linea %u in %s (vendor id) non è corretta"
+
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"È stata specificata la modalità Trivial Only ma questa non è un'operazione "
-"triviale"
+"Quest'installazione necessita della rimozione temporanea del pacchetto "
+"essenziale %s a causa di un loop Conflitto/Pre-Dipendenza. Questo non è "
+"bene, ma se si vuole farlo, si attivi l'opzione APT::Force-LoopBreak "
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "SI, esegui come richiesto!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Il file indice di tipo '%s' non è supportato"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Si sta per compiere un'azione potenzialmente pericolosa\n"
-"Per continuare scrivere la frase '%s' \n"
-" ?] "
+"Il pacchetto %s deve essere reinstallato, ma non si riesce a trovare un "
+"archivio per esso."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Interrotto."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Errore, pkgProblemResolver::Resolve ha generato uno stop, questo può essere "
+"causato da pacchetti bloccati "
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Continuare [S/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Impossibile correggere i problemi, ci sono pacchetti rotti bloccati"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Impossibile ottenere %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Il download di alcuni file è fallito"
-
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Download completato e in modalità download-only"
+msgid "Lists directory %spartial is missing."
+msgstr "Manca la directory di liste %spartial."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Impossibile prendere alcuni archivi, forse è meglio eseguire apt-get update "
-"o provare l'opzione --fix-missing"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Manca la directory di archivio %spartial."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing su media estraibili non è ancora supportato"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Scaricamento file %li di %li (%s rimanente)"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Impossibile correggere i pacchetti mancanti"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Scaricamento file %li di %li"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Interruzione dell'installazione in corso."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Non è stato possibile trovare un driver per il metodo %s."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Nota, si sta selezionando %s al posto di %s\n"
+msgid "Method %s did not start correctly"
+msgstr "Il metodo %s non è partito correttamente"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-"%s è stato saltato, perché è già installato e l'aggiornamento non è stato "
-"impostato.\n"
+"Per favore inserire il disco chiamato '%s' nel dispositivo '%s' e premere "
+"invio."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Il pacchetto %s non è installato, quindi non è stato rimosso\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Il sistema di archiviazione (packaging) '%s' non è supportato"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Il pacchetto %s è un pacchetto virtuale fornito da:\n"
+msgid "Unable to stat %s."
+msgstr "Impossibile analizzare %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installato]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Bisogna inserire alcuni URI di tipo 'source' in sources.list"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Bisogna esplicitamente sceglierne uno da installare."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+"La lista dei pacchetti o il file di status non possono essere letti o aperti."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "È consigliabile eseguire apt-get update per correggere questi problemi"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Campo non valido nel file delle preferenze, Manca \"Package header\""
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/policy.cc:289
#, 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 significa che il pacchetto manca, è diventato obsoleto\n"
-"o è disponibile solo all'interno di un'altra sorgente\n"
+msgid "Did not understand pin type %s"
+msgstr "Impossibile capire il tipo di pin %s"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Comunque il seguente pacchetto lo sostituisce:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Nessuna (o zero) priorità specificata per il pin"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "La cache ha un sistema incompatibile di gestione delle versioni"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Il pacchetto %s non ha candidati da installare"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Errore nell'analisi di %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Errore nell'analisi di %s (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Errore nell'analisi di %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s è già alla versione più recente.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Errore nell'analisi di %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Non è stata trovata la release '%s' per '%s'"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Errore nell'analisi di %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Non è stata trovata la versione '%s' per '%s'"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Errore nell'analisi di %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versione selezionata %s (%s) per %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Errore nell'analisi di %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Il comando update non accetta argomenti"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Errore nell'analisi di %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Impossibile creare un lock sulla directory di list"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Errore nell'analisi di %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Impossibile scaricare alcune file di indice, essi verranno ignorati, oppure "
-"si useranno quelli precedenti."
+"WOW, si è ecceduto il numero massimo di nomi di pacchetti che questo APT è "
+"capace di gestire"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"WOW, si è ecceduto il numero massimo di versioni che questo APT è capace di "
+"gestire"
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "I seguenti pacchetti NUOVI (NEW) saranno installati:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"WOW, si è ecceduto il numero massimo di versioni che questo APT è capace di "
+"gestire"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"WOW, si è ecceduto il numero massimo di dipendenze che questo APT è capace "
+"di gestire"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione: "
-
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Errore interno, problem resolver ha rotto qualcosa"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Errore nell'analisi di %s (FindPkg)"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Errore interno, AllUpgrade ha rotto qualcosa"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Errore nell'analisi di %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Impossibile trovare %s"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"È stato impossibile trovare %s %s mentre si processava le dipendenze dei file"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Impossibile trovare %s"
+msgid "Couldn't stat source package list %s"
+msgstr "Impossibile controllare la lista dei pacchetti sorgente %s"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Il File Collezionato Fornisce"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Errore di I/O nel salvataggio del cache sorgente"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Nota, si sta selezionando %s per la regex '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "rename() fallita: %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ma %s sta per essere installato"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Somma MD5 non corrispondente"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Somma MD5 non corrispondente"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"È consigliabile eseguire 'apt-get -f install' per correggere questi problemi:"
+"Non esiste una chiave pubblica disponibile per i seguenti ID di chiave:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Dipendenze non soddisfatte. Provare 'apt-get -f install' senza pacchetti (o "
-"specificare una soluzione)."
+"Non è stato possibile trovare un file per il pacchetto %s. Questo significa "
+"che bisogna correggere manualmente l'errore. (a causa di un'architettura "
+"mancante)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Alcuni pacchetti non possono essere installati. Questo può voler\n"
-"dire che è stata richiesta una situazione impossibile oppure, se\n"
-"si sta usando la distribuzione \"unstable\", che alcuni pacchetti\n"
-"richiesti non sono ancora stati creati o rimossi da incoming."
+"Non è stato possibile trovare file per il pacchetto %s. Questo significa che "
+"bisogna correggere manualmente l'errore."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Poiché è stata richiesta solo una singola operazione è molto facile che\n"
-"il pacchetto semplicemente non sia installabile, si consiglia\n"
-"di inviare un \"bug report\" per tale pacchetto."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pacchetto non integro"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "I seguenti pacchetti verranno inoltre installati:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Pacchetti suggeriti:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Pacchetti raccomandati:"
+"I file indice dei pacchetti sono corrotti. Non c'è un campo Filename: per il "
+"pacchetto %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calcolo dell'aggiornamento in corso... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Le Dimensioni non corrispondono"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Fatto"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Il blocco vendor %s non contiene dati"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Errore interno, problem resolver ha rotto qualcosa"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Si userà il punto di montaggio del CD-ROM %s\n"
+"Montaggio CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Bisogna specificare almeno un pacchetto di cui scaricare il sorgente"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificazione in corso.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Impossibile trovare un pacchetto sorgente per %s"
+msgid "Stored label: %s\n"
+msgstr "Etichette salvate: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Si è saltato il file già scaricato '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Smontaggio CD-ROM in corso..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Lo spazio libero in %s non è sufficiente"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Si userà il mount point del CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "È necessario prendere %sB/%sB di sorgenti.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Smontaggio CD-ROM in corso\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "È necessario prendere %sB di sorgenti\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "In attesa del disco...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Prelievo del sorgente %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Montaggio CD-ROM in corso \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Non è stato possibile scaricare alcuni archivi."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Scansione del disco alla ricerca di file indice, in corso..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Si è saltata l'estrazione del sorgente già estratto in %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Trovati %i indici di pacchetto, %i indici di sorgenti e %i firme\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Comando di estrazione '%s' fallito.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Etichette salvate: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Verificare se il pacchetto 'dpkg-dev' è installato.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Questo non è un nome valido, riprovare.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Comando di costruzione '%s' fallito.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Questo disco è chiamato: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Processo figlio fallito"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Copia della lista dei pacchetti in corso..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Bisogna specificare almeno un pacchetto di cui controllare la generazione di "
-"dipendenze"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Scrittura di una nuova lista sorgenti in corso\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Impossibile ottenere informazioni di dipendenza di costruzione per %s"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Le voci lista sorgenti per questo Disco sono:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s non ha dipendenze di costruzione.\n"
+msgid "Wrote %i records.\n"
+msgstr "Scritti %i record.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"%s dipendenze per %s non possono essere soddisfatte perché non si trova il "
-"pacchetto %s"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Scritti %i record con %i file mancanti.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s dipendenze per %s non possono essere soddisfatte perché nessuna versione "
-"del pacchetto %s può soddisfare le richieste di versione"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Scritti %i record con %i file senza match\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s "
-"è troppo nuovo"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Scritti %i record con %i file mancanti e %i file senza match\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "La dipendenza %s per %s: %s è fallita"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Manca la directory di liste %spartial."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Non è stato possibile soddisfare le dipendenze di costruzione per %s."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Il calcolo delle dipendenze per la costruzione è fallito"
+msgid "Preparing %s"
+msgstr "Preparazione di %s in corso"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Moduli supportati:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Scompattamento di %s in corso"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Utilizzo: apt-get [opzioni] comando\n"
-" apt-get [opzioni] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [opzioni] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get è una semplice interfaccia a linea di comando per scaricare \n"
-"e installare pacchetti. I comandi più usati sono update \n"
-"e install.\n"
-"\n"
-"Comandi:\n"
-" update - Aggiorna la lista dei pacchetti\n"
-" upgrade - Esegue un aggiornamento\n"
-" install - Installa nuovi pacchetti (pkg è libc6 non libc6.deb)\n"
-" remove - Rimuove pacchetti\n"
-" source - Scarica i pacchetti sorgente\n"
-" build-dep - Configura le dipendenze di compilazione per i pacchetti "
-"sorgente\n"
-" dist-upgrade - Aggiorna la distribuzione, vedere apt-get(8)\n"
-" dselect-upgrade - Segue le selezioni di dselect\n"
-" clean - Cancella gli archivi dei pacchetti scaricati \n"
-" autoclean - Cancella gli archivi vecchi scaricati\n"
-" check - Verifica che non ci siano dipendenze rotte\n"
-"\n"
-"Opzioni:\n"
-" -h Questo help.\n"
-" -q Output registrabile - nessun indicatore di progresso\n"
-" -qq Nessun output eccetto per gli errori\n"
-" -d Solamente download - NON installa o decomprime gli archivi\n"
-" -s Nessuna azione. Simula i passi in ordine\n"
-" -y Assume sì a tutte le domande e non chiede conferma\n"
-" -f Tenta di continuare se il controllo di integrità fallisce\n"
-" -m Tenta di continuare se gli archivi non si trovano\n"
-" -u Mostra una lista dei pacchetti da aggiornare\n"
-" -b Costruisce il pacchetto sorgente dopo averlo scaricato\n"
-" -V Mostra dettagliatamente i numeri di versione\n"
-" -c=? Legge come configurazione il file specificato\n"
-" -o=? Imposta un'opzione di configurazione, es -o dir::cache=/tmp\n"
-"Consultare le pagine apt-get(8), sources.list(5) e apt.conf(5) del manuale\n"
-"per maggiori informazioni e opzioni.\n"
-" Questo APT ha i Poteri della Super Mucca.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Preparazione alla configurazione di %s in corso"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Hit "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Configurazione di %s in corso"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Get:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Errore durante l'analisi della directory %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s Installato"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Preparazione per la rimozione di %s in corso"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Scaricato %sB in %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Rimozione di %s in corso"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [In corso]"
+msgid "Removed %s"
+msgstr "%s rimosso"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
-"nel dispositivo '%s' e premere invio\n"
+msgid "Preparing to completely remove %s"
+msgstr "Preparazione alla rimozione totale di %s in corso"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Campo del pacchetto sconosciuto!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Rimozione totale completata %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Utilizzo: apt-sortpkgs [opzioni] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs è un semplice tool per ordinare il file dei pacchetti. "
-"L'opzione -s\n"
-"è usata per indicare che tipo di file è.\n"
-"\n"
-"Opzioni:\n"
-" -h Questo help\n"
-" -s Ordina per pacchetto sorgente\n"
-" -c=? Legge come configurazione il file specificato\n"
-" -o=? Imposta un'opzione di configurazione, es -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Opzione predefinita errata!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Impossibile aprire il file %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Premere invio per continuare."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Connessione chiusa prematuramente"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Si sono verificati alcuni errori nella scompattazione. Si cercherà di "
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linea %d troppo lunga (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"configurare i pacchetti che sono stati installati. Questo potrebbe generare "
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Errore nell'analisi di %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"errori duplicati o errori causati da dipendenze non soddisfatte. Questo va "
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Errore nell'analisi di %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-" bene solo se gli errori sopra questo messaggio sono importanti. Si prega "
-"di correggerli e di eseguire [I]nstall un'altra volta"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Etichette salvate: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Aggiornamento delle informazioni disponibili"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Trovati %i indici di pacchetto, %i indici di sorgenti e %i firme\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt 0.6\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
-"PO-Revision-Date: 2006-09-08 19:57+0900\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
+"PO-Revision-Date: 2007-12-18 21:13+0900\n"
"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
"Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8 bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "CD-ROM データベース %s を読み込むことができません"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-"
-"ROM を追加するために apt-get update は使用できません。"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD が違います"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "ディスクが見つかりません。"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "ファイルが見つかりません"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "状態の取得に失敗しました"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "変更時刻の設定に失敗しました"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "不正な URI です。ローカルの URI は // で始まってはいけません"
+msgid "Unable to locate package %s"
+msgstr "パッケージ %s が見つかりません"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "ログインしています"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "パッケージ名総数: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "ピアネームを決定することができません"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " 通常パッケージ: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "ローカルネームを決定することができません"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " 純粋仮想パッケージ: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "サーバから接続を拒絶されました。応答: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " 単一仮想パッケージ: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER 失敗、サーバ応答: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " 複合仮想パッケージ: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS 失敗、サーバ応答: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " 欠落: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。"
-"Acquire::ftp::ProxyLogin が空です。"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "個別バージョン総数: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "個別説明総数: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE 失敗、サーバ応答: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "依存関係総数: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "接続タイムアウト"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "バージョン/ファイル関係総数: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "サーバが接続を切断しました"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "説明/ファイル関係総数: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "読み込みエラー"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "提供マッピング総数: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "レスポンスがバッファをオーバフローさせました。"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Glob 文字列の総数: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "プロトコルが壊れています"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "総依存関係・バージョン容量: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "書き込みエラー"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "総空き容量: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "ソケットを作成できません"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "総占有容量: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Package ファイル %s が同期していません。"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "失敗"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "パターンはちょうど 1 つだけ指定してください"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "ã\83\91ã\83\83ã\82·ã\83\96ã\82½ã\82±ã\83\83ã\83\88ã\81«æ\8e¥ç¶\9aã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\80\82"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81\8cè¦\8bã\81¤ã\81\8bã\82\8aã\81¾ã\81\9bã\82\93"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo はリスニングポートを取得することができませんでした"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "パッケージファイル:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "ã\82½ã\82±ã\83\83ã\83\88ã\82\92ã\83\90ã\82¤ã\83³ã\83\89ã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\81§ã\81\97ã\81\9f"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "ã\82ã\83£ã\83\83ã\82·ã\83¥ã\81\8cå\90\8cæ\9c\9fã\81\97ã\81¦ã\81\8aã\82\89ã\81\9aã\80\81ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\83\95ã\82¡ã\82¤ã\83«ã\82\92ç\9b¸äº\92å\8f\82ç\85§ã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "ソケットをリスンできませんでした"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "ソケットの名前を特定できませんでした"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pin パッケージ:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "PORT コマンドを送信できません"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(見つかりません)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "未知のアドレスファミリ %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " インストールされているバージョン: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT に失敗しました。サーバ応答: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(なし)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "データソケット接続タイムアウト"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " 候補: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "接続を accept できません"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " パッケージ Pin: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "ファイルのハッシュでの問題"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " バージョンテーブル:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "ファイルを取得できません。サーバ応答 '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "データソケットタイムアウト"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "データ転送に失敗しました。サーバ応答 '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "問い合わせ"
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s コンパイル日時: %s %s\n"
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "呼び出せません"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "%s (%s) へ接続しています"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "%s:%s (%s) への接続を開始できません。"
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "%s:%s (%s) へ接続できませんでした。"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"使用方法: apt-cache [オプション] コマンド\n"
+" apt-cache [オプション] add file1 [file2 ...]\n"
+" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n"
+"報を検索したりするための低レベルのツールです\n"
+"\n"
+"コマンド:\n"
+" add - パッケージファイルをソースキャッシュに追加する\n"
+" gencaches - パッケージおよびソースキャッシュを生成する\n"
+" showpkg - 単一パッケージの一般情報を表示する\n"
+" showsrc - ソースレコードを表示する\n"
+" stats - 基本ステータス情報を表示する\n"
+" dump - すべてのファイルを簡単な形式で表示する\n"
+" dumpavail - available ファイルを標準出力に出力する\n"
+" unmet - 未解決の依存関係を表示する\n"
+" search - 正規表現パターンによってパッケージを検索する\n"
+" show - パッケージの情報を表示する\n"
+" depends - パッケージが依存しているパッケージを表示する\n"
+" rdepends - パッケージの逆依存情報を表示する\n"
+" pkgnames - すべてのパッケージ名を表示する\n"
+" dotty - GraphVis 用のパッケージグラフを生成する\n"
+" xvcg - xvcg 用のパッケージグラフを生成する\n"
+" policy - ポリシー設定情報を表示する\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" -p=? パッケージキャッシュ\n"
+" -s=? ソースキャッシュ\n"
+" -q プログレス表示をしない\n"
+" -i umnet コマンドで重要な依存情報のみを表示する\n"
+" -c=? 指定した設定ファイルを読み込む\n"
+" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n"
+"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "%s へ接続しています"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "このディスクに、'Debian 2.1r1 Disk 1' のような名前を付けてください"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "'%s' を解決できませんでした"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "ディスクをドライブに入れて enter を押してください"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "'%s' が一時的に解決できません"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr ""
+"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "'%s:%s' (%i) の解決中に問題が起こりました"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "引数がペアではありません"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "%s %s へ接続できません:"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"使用方法: apt-config [オプション] コマンド\n"
+"\n"
+"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n"
+"\n"
+"コマンド:\n"
+" shell - シェルモード\n"
+" dump - 設定情報を表示する\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" -c=? 指定した設定ファイルを読み込む\n"
+" -o=? 指定した設定オプションを適用する(例: -o dir::cache=/tmp)\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "キーリングにアクセスできませんでした: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Acquire::gpgv::Options の引数リストが長すぎます。終了しています。"
+msgid "%s not a valid DEB package."
+msgstr "%s は正しい DEB パッケージではありません。"
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "少なくとも 1 つの不正な署名が発見されました。"
-
-#: methods/gpgv.cc:213
-#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"署名を検証するための '%s' の実行ができませんでした (gnupg はインストールされ"
-"ていますか?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "gpgv の実行中に未知のエラーが発生"
+"使用方法: apt-extracttemplates ファイル名1 [ファイル名2 ...]\n"
+"\n"
+"apt-extracttemplates は debian パッケージから設定とテンプレート情報を\n"
+"抽出するためのツールです\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" -t 一時ディレクトリを指定する\n"
+" -c=? 指定した設定ファイルを読み込む\n"
+" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "以下の署名が無効です:\n"
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
+#, c-format
+msgid "Unable to write to %s"
+msgstr "%s に書き込めません"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr ""
+"debconf のバージョンを取得できません。debconf はインストールされていますか?"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "%s の状態を取得するのに失敗しました"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "パッケージ拡張子リストが長すぎます"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "%s に対してパイプを開けませんでした"
+msgid "Error processing directory %s"
+msgstr "ディレクトリ %s の処理中にエラーが発生しました"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "%s プロセスからの読み込みエラー"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "ソース拡張子リストが長すぎます"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "ヘッダの待機中です"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Contents ファイルへのヘッダの書き込み中にエラーが発生しました"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "%u 文字を超える 1 行のヘッダを取得しました"
+msgid "Error processing contents %s"
+msgstr "Contents %s の処理中にエラーが発生しました"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "不正なヘッダ行です"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "http サーバが不正なリプライヘッダを送信してきました"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "http サーバが不正な Content-Length ヘッダを送信してきました"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"使用方法: apt-ftparchive [オプション] コマンド\n"
+"コマンド: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive は Debian アーカイブ用のインデックスファイルを生成しま\n"
+"す。全自動のものから、dpkg-scanpackages と dpkg-scansources の代替機能\n"
+"となるものまで、多くの生成方法をサポートしています。\n"
+"\n"
+"apt-ftparchive は .deb のツリーから Packages ファイルを生成します。\n"
+"Packages ファイルは MD5 ハッシュやファイルサイズに加えて、各パッケージ\n"
+"のすべての制御フィールドの内容を含んでいます。Priority と Section の値\n"
+"を強制するために override ファイルがサポートされています。\n"
+"\n"
+"同様に apt-ftparchive は .dsc のツリーから Sources ファイルを生成しま\n"
+"す。--source-override オプションを使用するとソース override ファイルを\n"
+"指定できます。\n"
+"\n"
+"'packages' および 'sources' コマンドはツリーのルートで実行する必要があ\n"
+"ります。BinaryPath には再帰検索のベースディレクトリを指定し、override \n"
+"ファイルは override フラグを含んでいる必要があります。もし pathprefix \n"
+"が存在すればファイル名フィールドに付加されます。debian アーカイブでの\n"
+"使用方法の例:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" --md5 MD5 の生成を制御する\n"
+" -s=? ソース override ファイル\n"
+" -q 表示を抑制する\n"
+" -d=? オプションのキャッシュデータベースを選択する\n"
+" --no-delink delinking デバッグモードを有効にする\n"
+" --contents contents ファイルの生成を制御する\n"
+" -c=? 指定の設定ファイルを読む\n"
+" -o=? 任意の設定オプションを設定する"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "http サーバが不正な Content-Range ヘッダを送信してきました"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "選択にマッチするものがありません"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "http サーバのレンジサポートが壊れています"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "パッケージファイルグループ `%s' に見当たらないファイルがあります"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "不明な日付フォーマットです"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB が壊れていたため、ファイル名を %s.old に変更しました"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "select に失敗しました"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB が古いため、%s のアップグレードを試みます"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "接続タイムアウト"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB フォーマットが無効です。apt の古いバージョンから更新したのであれば、データ"
+"ベースを削除・再作成してください。"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "出力ファイルへの書き込みでエラーが発生しました"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "DB ファイル %s を開くことができません: %s"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "ファイルへの書き込みでエラーが発生しました"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "%s の状態を取得するのに失敗しました"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "ã\83\95ã\82¡ã\82¤ã\83«ã\81¸ã\81®æ\9b¸ã\81\8dè¾¼ã\81¿ã\81§ã\82¨ã\83©ã\83¼ã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "ã\82¢ã\83¼ã\82«ã\82¤ã\83\96ã\81«ã\82³ã\83³ã\83\88ã\83ã\83¼ã\83«ã\83¬ã\82³ã\83¼ã\83\89ã\81\8cã\81\82ã\82\8aã\81¾ã\81\9bã\82\93"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "ã\83ªã\83¢ã\83¼ã\83\88å\81´ã\81§æ\8e¥ç¶\9aã\81\8cã\82¯ã\83ã\83¼ã\82ºã\81\95ã\82\8cã\81¦ã\82µã\83¼ã\83\90ã\81\8bã\82\89ã\81®èªã\81¿è¾¼ã\81¿ã\81«å¤±æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9f"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "ã\82«ã\83¼ã\82½ã\83«ã\82\92å\8f\96å¾\97ã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "サーバからの読み込みに失敗しました"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "警告: ディレクトリ %s が読めません\n"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "不正なヘッダです"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "警告: %s の状態を取得できません\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "接続失敗"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "エラー: "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "内部エラー"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "警告: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "空のファイルを mmap できません"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "エラー: エラーが適用されるファイルは "
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "%lu バイトの mmap ができませんでした"
+msgid "Failed to resolve %s"
+msgstr "%s の解決に失敗しました"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "選択された %s が見つかりません"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "ツリー内での移動に失敗しました"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "理解できない省略形式です: '%c'"
+msgid "Failed to open %s"
+msgstr "%s のオープンに失敗しました"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "設定ファイル %s をオープンできませんでした"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "%d 行目が長すぎます (最大 %d)"
+msgid " DeLink %s [%s]\n"
+msgstr " リンク %s [%s] を外します\n"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。"
+msgid "Failed to readlink %s"
+msgstr "%s のリンク読み取りに失敗しました"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "文法エラー %s:%u: 不正なタグです"
+msgid "Failed to unlink %s"
+msgstr "%s のリンク解除に失敗しました"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています"
+msgid "*** Failed to link %s to %s"
+msgstr "*** %s を %s にリンクするのに失敗しました"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " リンクを外す制限の %sB に到達しました。\n"
-#: apt-pkg/contrib/configuration.cc:689
-#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "文法エラー %s:%u: インクルードのネストが多すぎます"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "アーカイブにパッケージフィールドがありませんでした"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "文法エラー %s:%u: ここからインクルードされています"
+msgid " %s has no override entry\n"
+msgstr " %s に override エントリがありません\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "文法エラー %s:%u: 未対応の命令 '%s'"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %1$s メンテナは %3$s ではなく %2$s です\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります"
+msgid " %s has no source override entry\n"
+msgstr " %s にソース override エントリがありません\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Unable to read %s"
-msgstr "%s を読み込むことができません"
+msgid " %s has no binary override entry either\n"
+msgstr " %s にバイナリ override エントリがありません\n"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/contents.cc:321
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... エラー!"
+msgid "Internal error, could not locate member %s"
+msgstr "内部エラー、メンバー %s を特定できません"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... 完了"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - メモリの割り当てに失敗しました"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "コマンドラインオプション '%c' [%s から] は不明です。"
+msgid "Unable to open %s"
+msgstr "'%s' をオープンできません"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "コマンドラインオプション %s を理解できません"
+msgid "Malformed override %s line %lu #1"
+msgstr "不正な override %s %lu 行目 #1"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "コマンドラインオプション %s は boolean ではありません"
+msgid "Malformed override %s line %lu #2"
+msgstr "不正な override %s %lu 行目 #2"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an argument."
-msgstr "オプション %s には引数が必要です。"
+msgid "Malformed override %s line %lu #3"
+msgstr "不正な override %s %lu 行目 #3"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。"
+msgid "Failed to read the override file %s"
+msgstr "override ファイル %s を読み込むのに失敗しました"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "オプション %s には '%s' ではなく整数の引数が必要です"
+msgid "Unknown compression algorithm '%s'"
+msgstr "'%s' は未知の圧縮アルゴリズムです"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option '%s' is too long"
-msgstr "オプション '%s' は長すぎます"
+msgid "Compressed output %s needs a compression set"
+msgstr "圧縮出力 %s には圧縮セットが必要です"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "%s を解釈することができません。true か false を試してください。"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "子プロセスへの IPC パイプの作成に失敗しました"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "不正な操作 %s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "FILE* の作成に失敗しました"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "マウントポイント %s の状態を取得できません"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "fork に失敗しました"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "圧縮子プロセス"
+
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "%s へ変更することができません"
+msgid "Internal error, failed to create %s"
+msgstr "内部エラー、%s の作成に失敗しました"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "cdrom の状態を取得するのに失敗しました"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "子プロセス IPC の生成に失敗しました"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "読み込み専用のロックファイル %s にロックは使用しません"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "以下の圧縮ツールの実行に失敗しました: "
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "ロックファイル %s をオープンできません"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "展開ツール"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "nfs マウントされたロックファイル %s にはロックを使用しません"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "子プロセス/ファイルへの IO が失敗しました"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "ロック %s が取得できませんでした"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "MD5 の計算中に読み込みに失敗しました"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "%s ã\82\92å¾\85ã\81¡ã\81¾ã\81\97ã\81\9fã\81\8cã\80\81ã\81\9dã\81\93ã\81«ã\81¯ã\81\82ã\82\8aã\81¾ã\81\9bã\82\93ã\81§した"
+msgid "Problem unlinking %s"
+msgstr "%s ã\81®ã\83ªã\83³ã\82¯è§£é\99¤ã\81§å\95\8fé¡\8cã\81\8cç\99ºç\94\9fã\81\97ã\81¾した"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "子プロセス %s がセグメンテーション違反を受け取りました。"
+msgid "Failed to rename %s to %s"
+msgstr "%s を %s に名前変更できませんでした"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "子プロセス %s がエラーコード (%u) を返しました"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "子プロセス %s が予期せず終了しました"
+msgid "Regex compilation error - %s"
+msgstr "正規表現の展開エラー - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "ファイル %s をオープンできませんでした"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "以下のパッケージには満たせない依存関係があります:"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "読み込みが %lu 残っているはずですが、何も残っていません"
+msgid "but %s is installed"
+msgstr "しかし、%s はインストールされています"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "あと %lu 書き込む必要がありますが、書き込むことができませんでした"
-
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "ファイルのクローズ中に問題が発生しました"
-
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "ファイルの削除中に問題が発生しました"
-
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "ファイルの同期中に問題が発生しました"
+msgid "but %s is to be installed"
+msgstr "しかし、%s はインストールされようとしています"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "空のパッケージキャッシュ"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "しかし、インストールすることができません"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\82ã\83£ã\83\83ã\82·ã\83¥ã\83\95ã\82¡ã\82¤ã\83«ã\81\8cå£\8aã\82\8cã\81¦ã\81\84ã\81¾す"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ã\81\97ã\81\8bã\81\97ã\80\81ã\81\93ã\82\8cã\81¯ä»®æ\83³ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81§す"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "ã\81\93ã\81®ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\82ã\83£ã\83\83ã\82·ã\83¥ã\83\95ã\82¡ã\82¤ã\83«ã\81¯äº\92æ\8f\9bæ\80§ã\81\8cã\81ªã\81\84ã\83\90ã\83¼ã\82¸ã\83§ã\83³ã\81§ã\81\99"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ã\81\97ã\81\8bã\81\97ã\80\81ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\81¦ã\81\84ã\81¾ã\81\9bã\82\93"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "この APT はバージョニングシステム '%s' をサポートしていません"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "しかし、インストールされようとしていません"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " または"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "ä¾\9då\98"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "以ä¸\8bã\81®ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81\8cæ\96°ã\81\9fã\81«ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\81¾ã\81\99:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "先行依存"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "以下のパッケージは「削除」されます:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "提案"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "以下のパッケージは保留されます:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "推奨"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "以下のパッケージはアップグレードされます:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "競合"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "以下のパッケージは「ダウングレード」されます:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "置換"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "以下の変更禁止パッケージは変更されます:"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "廃止"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s のため) "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
+"警告: 以下の不可欠パッケージが削除されます。\n"
+"何をしようとしているか本当にわかっていない場合は、実行してはいけません!"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "重要"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "アップグレード: %lu 個、新規インストール: %lu 個、"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "要求"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "再インストール: %lu 個、"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "標準"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "ダウングレード: %lu 個、"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "任意"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "削除: %lu 個、保留: %lu 個。\n"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "特別"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "ä¾\9då\98é\96¢ä¿\82ã\83\84ã\83ªã\83¼ã\82\92ä½\9cæ\88\90ã\81\97ã\81¦ã\81\84ã\81¾ã\81\99"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "ä¾\9då\98é\96¢ä¿\82ã\82\92解決ã\81\97ã\81¦ã\81\84ã\81¾ã\81\99 ..."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "候補バージョン"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " 失敗しました。"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "ä¾\9då\98é\96¢ä¿\82ã\81®ç\94\9fæ\88\90"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "ä¾\9då\98é\96¢ä¿\82ã\82\92è¨\82æ£ã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "入手可能情報をマージしています"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "アップグレードセットを最小化できません"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "%s のオープンに失敗しました"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " 完了"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "ファイル %s の書き込みに失敗しました"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ"
+"ん。"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "パッケージファイル %s を解釈することができません (1)"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "未解決の依存関係があります。-f オプションを試してください。"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "パッケージファイル %s を解釈することができません (2)"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "警告: 以下のパッケージは認証されていません!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "認証の警告は上書きされました。\n"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "検証なしにこれらのパッケージをインストールしますか [y/N]? "
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "いくつかのパッケージを認証できませんでした"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!"
+
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。"
+
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "内部エラー、調整が終わっていません"
+
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "ダウンロードディレクトリをロックできません"
+
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "ソースのリストを読むことができません。"
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Opening %s"
-msgstr "%s をオープンしています"
+msgid "Need to get %sB of archives.\n"
+msgstr "%sB のアーカイブを取得する必要があります。\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:847
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "ã\82½ã\83¼ã\82¹ã\83ªã\82¹ã\83\88 %2$s ã\81® %1$u è¡\8cç\9b®ã\81\8cé\95·ã\81\99ã\81\8eã\81¾ã\81\99ã\80\82"
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "ã\81\93ã\81®æ\93\8dä½\9cå¾\8cã\81«è¿½å\8a ã\81§ %sB ã\81®ã\83\87ã\82£ã\82¹ã\82¯å®¹é\87\8fã\81\8cæ¶\88è²»ã\81\95ã\82\8cã\81¾ã\81\99ã\80\82\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:850
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "ã\82½ã\83¼ã\82¹ã\83ªã\82¹ã\83\88 %2$s ã\81® %1$u è¡\8cç\9b®ã\81\8cä¸\8dæ£ã\81§ã\81\99 (type)"
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "ã\81\93ã\81®æ\93\8dä½\9cå¾\8cã\81« %sB ã\81®ã\83\87ã\82£ã\82¹ã\82¯å®¹é\87\8fã\81\8cè§£æ\94¾ã\81\95ã\82\8cã\81¾ã\81\99ã\80\82\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です"
+msgid "Couldn't determine free space in %s"
+msgstr "%s の空き領域を測定できません"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "ソースリスト %2$s の %1$u 行目が不正です (vendor id)"
+msgid "You don't have enough free space in %s."
+msgstr "%s に充分な空きスペースがありません。"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ"
-"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に"
-"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。"
+"重大な問題を引き起こす可能性のあることをしようとしています。\n"
+"続行するには、'%s' というフレーズをタイプしてください。\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "インデックスファイルのタイプ '%s' はサポートされていません"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "中断しました。"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "続行しますか [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見"
-"つけることができませんでした。"
+msgid "Failed to fetch %s %s\n"
+msgstr "%s の取得に失敗しました %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "いくつかのファイルの取得に失敗しました"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"ã\82¨ã\83©ã\83¼ã\80\81pkgProblemResolver::Resolve ã\81¯å\81\9cæ¢ã\81\97ã\81¾ã\81\97ã\81\9fã\80\82ã\81\8aã\81\9dã\82\89ã\81\8få¤\89æ\9b´ç¦\81æ¢ã\83\91ã\83\83ã\82±ã\83¼"
-"ジが原因です。"
+"ã\81\84ã\81\8fã\81¤ã\81\8bã\81®ã\82¢ã\83¼ã\82«ã\82¤ã\83\96ã\81\8cå\8f\96å¾\97ã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\80\82apt-get update ã\82\92å®\9fè¡\8cã\81\99ã\82\8bã\81\8b --fix-"
+"missing オプションを付けて試してみてください。"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "リストディレクトリ %spartial が見つかりません。"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "足りないパッケージを直すことができません。"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "アーカイブディレクトリ %spartial が見つかりません。"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "インストールを中断します。"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "ファイルを取得しています %li/%li (残り %s)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "注意、%2$s の代わりに %1$s を選択します\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "ファイルを取得しています %li/%li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"すでにインストールされておりアップグレードも設定されていないため、%s をスキッ"
+"プします。\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "ã\83¡ã\82½ã\83\83ã\83\89ã\83\89ã\83©ã\82¤ã\83\90 %s ã\81\8cè¦\8bã\81¤ã\81\8bã\82\8aã\81¾ã\81\9bã\82\93ã\80\82"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ %s ã\81¯ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\81¦ã\81\84ã\81ªã\81\84ã\81\9fã\82\81ã\80\81å\89\8aé\99¤ã\81¯ã\81§ã\81\8dã\81¾ã\81\9bã\82\93\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "メソッド %s が正常に開始しませんでした"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "%s は以下のパッケージで提供されている仮想パッケージです:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [インストール済み]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "インストールするパッケージを明示的に選択する必要があります。"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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' とラベルの付いたディスクをドライブ '%s' に入れて enter を押してくださ"
-"い。"
+"パッケージ %s はデータベースには存在しますが、利用できません。\n"
+"おそらく、そのパッケージが見つからないか、もう古くなっているか、\n"
+"あるいは別のソースからのみしか利用できないという状況が考えられます\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "しかし、以下のパッケージで置き換えられています:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "パッケージングシステム '%s' はサポートされていません"
+msgid "Package %s has no installation candidate"
+msgstr "パッケージ %s にはインストール候補がありません"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "適切なパッケージシステムタイプを特定できません"
+#: cmdline/apt-get.cc:1156
+#, c-format
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "ダウンロードできないため、%s の再インストールは不可能です。\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Unable to stat %s."
-msgstr "%s ã\81®ç\8a¶æ\85\8bã\82\92å\8f\96å¾\97ã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\80\82"
+msgid "%s is already the newest version.\n"
+msgstr "%s ã\81¯ã\81\99ã\81§ã\81«æ\9c\80æ\96°ã\83\90ã\83¼ã\82¸ã\83§ã\83³ã\81§ã\81\99ã\80\82\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "sources.list に 'ソース' URI を指定する必要があります"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "ソースのリストを読むことができません。"
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"パッケージリストまたはステータスファイルを解釈またはオープンすることができま"
-"せん。"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "%3$s にはバージョン %1$s (%2$s) を選択しました\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "update コマンドは引数をとりません"
+
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "list ディレクトリをロックできません"
+
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"ã\81\93ã\82\8cã\82\89ã\81®å\95\8fé¡\8cã\82\92解決ã\81\99ã\82\8bã\81\9fã\82\81ã\81«ã\81¯ apt-get update ã\82\92å®\9fè¡\8cã\81\99ã\82\8bå¿\85è¦\81ã\81\8cã\81\82ã\82\8bã\81\8bã\82\82ã\81\97ã\82\8cã\81¾"
-"ã\81\9bã\82\93"
+"ã\81\84ã\81\8fã\81¤ã\81\8bã\81®ã\82¤ã\83³ã\83\87ã\83\83ã\82¯ã\82¹ã\83\95ã\82¡ã\82¤ã\83«ã\81®ã\83\80ã\82¦ã\83³ã\83ã\83¼ã\83\89ã\81«å¤±æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9fã\80\82ã\81\93ã\82\8cã\82\89ã\81¯ç\84¡è¦\96ã\81\95ã\82\8c"
+"ã\82\8bã\81\8bã\80\81å\8f¤ã\81\84ã\82\82ã\81®ã\81\8c代ã\82\8fã\82\8aã\81«ä½¿ã\82\8fã\82\8cã\81¾ã\81\99ã\80\82"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"不正なレコードが preferences ファイルに存在します。パッケージヘッダがありませ"
-"ん"
+"一連のものを削除するようになっていないので、AutoRemover を開始できません"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "pin タイプ %s が理解できませんでした"
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr ""
+"以下のパッケージが自動でインストールされましたが、もう必要とされていません:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "pin で優先度 (または 0) が指定されていません"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "これらを削除するには 'apt-get autoremove' を利用してください。"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "キャッシュに非互換なバージョニングシステムがあります"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"AutoRemover が、本来起きるべきでない何かを壊したようです。\n"
+"apt にバグ報告を送ってください。"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "%s を処理中にエラーが発生しました (NewPackage)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "以下の情報がこの問題を解決するために役立つかもしれません:"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "%s を処理中にエラーが発生しました (UsePackage1)"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "内部エラー、AutoRemover が何かを破壊しました"
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "%s を処理中にエラーが発生しました (NewFileVer1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "内部エラー、AllUpgrade が何かを破壊しました"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "%s を処理中にエラーが発生しました (UsePackage2)"
+msgid "Couldn't find task %s"
+msgstr "タスク %s が見つかりません"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "%s を処理中にエラーが発生しました (NewFileVer1)"
+msgid "Couldn't find package %s"
+msgstr "パッケージ %s が見つかりません"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "%s を処理中にエラーが発生しました (NewVersion1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "注意: 正規表現 '%2$s' に対して %1$s を選択しました\n"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1722
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "%s ã\82\92å\87¦ç\90\86ä¸ã\81«ã\82¨ã\83©ã\83¼ã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f (UsePackage3)"
+msgid "%s set to manually installed.\n"
+msgstr "%s ã\81¯æ\89\8bå\8b\95ã\81§ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\97ã\81\9fã\81¨è¨å®\9aã\81\95ã\82\8cã\81¾ã\81\97ã\81\9fã\80\82\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "%s を処理中にエラーが発生しました (NewVersion2)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ"
+"ません:"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "%s を処理中にエラーが発生しました (NewFileVer1)"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法"
+"を明示してください)。"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "この APT が対応している以上の数のパッケージが指定されました。"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"インストールすることができないパッケージがありました。おそらく、あり得\n"
+"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n"
+"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n"
+"動されていないことが考えられます。"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "この APT が対応している以上の数のバージョンが要求されました。"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"単純な操作を行っただけなので、このパッケージは単にインストールできない\n"
+"可能性が高いです。そのため、このパッケージへのバグレポートを送ってくだ\n"
+"さい。"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "この APT が対応している以上の数のバージョンが要求されました。"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "壊れたパッケージ"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "この APT が対応している以上の数の依存関係が発生しました。"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "以下の特別パッケージがインストールされます:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "提案パッケージ:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "推奨パッケージ:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "アップグレードパッケージを検出しています ... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "失敗"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "完了"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "内部エラー、問題リゾルバが何かを破壊しました"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr ""
+"ソースを取得するには少なくともひとつのパッケージ名を指定する必要があります"
+
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "%s ã\82\92å\87¦ç\90\86ä¸ã\81«ã\82¨ã\83©ã\83¼ã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "%s ã\81®ã\82½ã\83¼ã\82¹ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81\8cè¦\8bã\81¤ã\81\8bã\82\8aã\81¾ã\81\9bã\82\93"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "%s を処理中にエラーが発生しました (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "すでにダウンロードされたファイル '%s' をスキップします\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした"
+msgid "You don't have enough free space in %s"
+msgstr "%s に充分な空きスペースがありません"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "ソースパッケージリスト %s の状態を取得できません"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "パッケージリストを読み込んでいます"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "%sB のソースアーカイブを取得する必要があります。\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "ファイル提供情報を収集しています"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "ソース %s を取得\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "いくつかのアーカイブの取得に失敗しました。"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "%s に書き込めません"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "ソースキャッシュの保存中に IO エラーが発生しました"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "展開コマンド '%s' が失敗しました。\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "名前の変更に失敗しました。%s (%s -> %s)"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr ""
+"'dpkg-dev' パッケージがインストールされていることを確認してください。\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum が適合しません"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "ビルドコマンド '%s' が失敗しました。\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum が適合しません"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "子プロセスが失敗しました"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動"
-"で修正する必要があります (存在しないアーキテクチャのため)。"
+msgid "Unable to get build-dependency information for %s"
+msgstr "%s のビルド依存情報を取得できません"
+
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s にはビルド依存情報が指定されていません。\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動"
-"ã\81§ä¿®æ£ã\81\99ã\82\8bå¿\85è¦\81ã\81\8cã\81\82ã\82\8aã\81¾ã\81\99ã\80\82"
+"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと"
+"ã\81\8cã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: "
-"ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã\81\8cã\81\82ã\82\8aã\81¾ã\81\9bã\82\93ã\80\82"
+"入手可能な %3$s はいずれもバージョンについての要求を満たせないため、%2$s に対"
+"ã\81\99ã\82\8b %1$s ã\81®ä¾\9då\98é\96¢ä¿\82ã\82\92æº\80ã\81\9fã\81\99ã\81\93ã\81¨ã\81\8cã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "サイズが適合しません"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "ベンダブロック %s はフィンガープリントを含んでいません"
-
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-"CD-ROM マウントポイント %s を使用します\n"
-"CD-ROM をマウントしています\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "確認しています.. "
+"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ"
+"ケージは新しすぎます"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Stored label: %s\n"
-msgstr "格納されたラベル: %s \n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "CD-ROM マウントポイント %s を使用します\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "CD-ROM をアンマウントしています\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "ディスクを待っています ...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "CD-ROM をマウントしています ...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "ディスクのインデックスファイルを走査しています ..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"%i のパッケージインデックス、%i のソースインデックス、%i の署名を見つけまし"
-"た\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "%s のビルド依存関係を満たすことができませんでした。"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "格納されたラベル: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "ビルド依存関係の処理に失敗しました"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "ã\81\93ã\82\8cã\81¯æ\9c\89å\8a¹ã\81ªå\90\8då\89\8dã\81§ã\81¯ã\81\82ã\82\8aã\81¾ã\81\9bã\82\93ã\80\82å\86\8d試è¡\8cã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84ã\80\82\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "ã\82µã\83\9dã\83¼ã\83\88ã\81\95ã\82\8cã\81¦ã\81\84ã\82\8bã\83¢ã\82¸ã\83¥ã\83¼ã\83«:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"このディスクは以下のように呼ばれます: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "パッケージリストをコピーしています ..."
+"使用法: apt-get [オプション] コマンド\n"
+" apt-get [オプション] install|remove パッケージ名1 [パッケージ名"
+"2 ...]\n"
+" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n"
+"\n"
+"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n"
+"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n"
+"と install です。\n"
+"\n"
+"コマンド:\n"
+" update - パッケージリストを取得・更新します\n"
+" upgrade - アップグレードを行います\n"
+" install - 新規パッケージをインストールします\n"
+" (pkg は libc6.deb ではなく libc6 のように指定します)\n"
+" remove - パッケージを削除します\n"
+" autoremove - 自動インストールされ使われていないすべてのパッケージを削除し"
+"ます\n"
+" source - ソースアーカイブをダウンロードします\n"
+" build-dep - ソースパッケージの構築依存関係を設定します\n"
+" dist-upgrade - ディストリビューションをアップグレードします\n"
+" (apt-get(8) を参照)\n"
+" dselect-upgrade - dselect の選択に従います\n"
+" clean - ダウンロードしたアーカイブファイルを削除します\n"
+" autoclean - ダウンロードした古いアーカイブファイルを削除します\n"
+" check - 壊れた依存関係がないかチェックします\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n"
+" -qq エラー以外は表示しない\n"
+" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n"
+" -s 実際には実行しない。実行シミュレーションのみ行う\n"
+" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n"
+" -f 整合性チェックで失敗しても処理を続行する\n"
+" -m アーカイブが存在しない場合も続行する\n"
+" -u アップグレードされるパッケージも表示する\n"
+" -b ソースパッケージを取得し、ビルドを行う\n"
+" -V 冗長なバージョンナンバを表示する\n"
+" -c=? 指定した設定ファイルを読み込む\n"
+" -o=? 任意の設定オプションを指定する, 例 -o dir::cache=/tmp\n"
+"オプション・設定に関しては、マニュアルページ apt-get(8)、sources.list(5)、\n"
+"apt.conf(5) を参照してください。\n"
+" この APT は Super Cow Powers 化されています。\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "新しいソースリストを書き込んでいます\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "ヒット "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "このディスクのソースリストのエントリ:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "取得:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD-ROM をアンマウントしています ..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "無視 "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i レコードを書き込みました。\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "エラー "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB を %s で取得しました (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n"
+msgid " [Working]"
+msgstr " [処理中]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない"
-"ファイルがあります。\n"
+"メディア変更: \n"
+" '%s'\n"
+"とラベルの付いたディスクをドライブ '%s' に入れて enter を押してください\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "リストディレクトリ %spartial が見つかりません。"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "不明なパッケージレコードです!"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "%s を準備しています"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"使用方法: apt-sortpkgs [オプション] ファイル名1 [ファイル名2 ...]\n"
+"\n"
+"apt-sortpkgs はパッケージファイルをソートするための簡単なツールです。\n"
+"-s オプションはファイルの種類を示すために使用されます。\n"
+"\n"
+"オプション:\n"
+" -h このヘルプを表示する\n"
+" -s ソースファイルソートを使用する\n"
+" -c=? 指定した設定ファイルを読み込む\n"
+" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "%s を展開しています"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "不正なデフォルト設定です!"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "%s の設定を準備しています"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "enter を押すと続行します。"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "%s を設定しています"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "展開中にエラーが発生しました。インストールされたパッケージを"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "ディレクトリ %s の処理中にエラーが発生しました"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s をインストールしました"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "%s の削除を準備しています"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "が重要です。これを修正して「導入」を再度実行してください"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "%s を削除しています"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "%s を削除しました"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "%s を完全に削除する準備をしています"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s を完全に削除しました"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "ファイルにパッチできませんでした"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "子プロセスへの IPC パイプの作成に失敗しました"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "途中で接続がクローズされました"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "入手可能情報をマージしています"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "diversion パスが長すぎます"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "%s を %s に名前変更できませんでした"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "ファイル %s/%s がパッケージ %s のものを上書きします"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s を読み込むことができません"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "info と temp ディレクトリは同じファイルシステム上になければなりません"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "パッケージリストを読み込んでいます"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgstr "'%s' メンバーがないため、正しい DEB アーカイブではありません"
#: apt-inst/deb/debfile.cc:50
-#, fuzzy, c-format
+#, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr ""
-"'%s' または '%s' メンバーがないため、これは正しい DEB アーカイブではありませ"
-"ん"
+"これは正しい DEB アーカイブではありません。'%s'、'%s'、'%s' のいずれのメン"
+"ã\83\90ã\83¼ã\82\82ã\81\82ã\82\8aã\81¾ã\81\9bã\82\93"
#: apt-inst/deb/debfile.cc:110
#, c-format
msgid "Unparsable control file"
msgstr "解析できないコントロールファイル"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "パッケージ %s が見つかりません"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "パッケージ名総数: "
+msgid "Unable to read the cdrom database %s"
+msgstr "CD-ROM データベース %s を読み込むことができません"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " 通常パッケージ: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-"
+"ROM を追加するために apt-get update は使用できません。"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " 純粋仮想パッケージ: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD が違います"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " 単一仮想パッケージ: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " 複合仮想パッケージ: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "ディスクが見つかりません。"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " 欠落: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "ファイルが見つかりません"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "個別バージョン総数: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "状態の取得に失敗しました"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "個別バージョン総数: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "変更時刻の設定に失敗しました"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "ä¾\9då\98é\96¢ä¿\82ç·\8fæ\95°: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "ä¸\8dæ£ã\81ª URI ã\81§ã\81\99ã\80\82ã\83ã\83¼ã\82«ã\83«ã\81® URI ã\81¯ // ã\81§å§\8bã\81¾ã\81£ã\81¦ã\81¯ã\81\84ã\81\91ã\81¾ã\81\9bã\82\93"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "バージョン/ファイル関係総数: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "ログインしています"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "バージョン/ファイル関係総数: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "ピアネームを決定することができません"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "提供マッピング総数: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "ローカルネームを決定することができません"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Glob 文字列の総数: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "サーバから接続を拒絶されました。応答: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "総依存関係・バージョン容量: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER 失敗、サーバ応答: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "総空き容量: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS 失敗、サーバ応答: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "総占有容量: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。"
+"Acquire::ftp::ProxyLogin が空です。"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Package ファイル %s が同期していません。"
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "パターンはちょうど 1 つだけ指定してください"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE 失敗、サーバ応答: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "パッケージが見つかりません"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "接続タイムアウト"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\83\95ã\82¡ã\82¤ã\83«:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "ã\82µã\83¼ã\83\90ã\81\8cæ\8e¥ç¶\9aã\82\92å\88\87æ\96ã\81\97ã\81¾ã\81\97ã\81\9f"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "読み込みエラー"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "レスポンスがバッファをオーバフローさせました。"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pin パッケージ:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "プロトコルが壊れています"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(見つかりません)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "書き込みエラー"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " インストールされているバージョン: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "ソケットを作成できません"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(なし)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " 候補: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "パッシブソケットに接続できません。"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " パッケージ Pin: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo はリスニングポートを取得することができませんでした"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " バージョンテーブル:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "ソケットをバインドできませんでした"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "ソケットをリスンできませんでした"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s %s コンパイル日時: %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "ソケットの名前を特定できませんでした"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"使用方法: apt-cache [オプション] コマンド\n"
-" apt-cache [オプション] add file1 [file2 ...]\n"
-" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n"
-"報を検索したりするための低レベルのツールです\n"
-"\n"
-"コマンド:\n"
-" add - パッケージファイルをソースキャッシュに追加する\n"
-" gencaches - パッケージおよびソースキャッシュを生成する\n"
-" showpkg - 単一パッケージの一般情報を表示する\n"
-" showsrc - ソースレコードを表示する\n"
-" stats - 基本ステータス情報を表示する\n"
-" dump - すべてのファイルを簡単な形式で表示する\n"
-" dumpavail - available ファイルを標準出力に出力する\n"
-" unmet - 未解決の依存関係を表示する\n"
-" search - 正規表現パターンによってパッケージを検索する\n"
-" show - パッケージの情報を表示する\n"
-" depends - パッケージが依存しているパッケージを表示する\n"
-" rdepends - パッケージの逆依存情報を表示する\n"
-" pkgnames - すべてのパッケージ名を表示する\n"
-" dotty - GraphVis 用のパッケージグラフを生成する\n"
-" xvcg - xvcg 用のパッケージグラフを生成する\n"
-" policy - ポリシー設定情報を表示する\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" -p=? パッケージキャッシュ\n"
-" -s=? ソースキャッシュ\n"
-" -q プログレス表示をしない\n"
-" -i umnet コマンドで重要な依存情報のみを表示する\n"
-" -c=? 指定した設定ファイルを読み込む\n"
-" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n"
-"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "PORT コマンドを送信できません"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "このディスクに、'Debian 2.1r1 Disk 1' のような名前を付けてください"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "未知のアドレスファミリ %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "ディスクをドライブに入れて enter を押してください"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT に失敗しました。サーバ応答: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr ""
-"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "データソケット接続タイムアウト"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "引数がペアではありません"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "接続を accept できません"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"使用方法: apt-config [オプション] コマンド\n"
-"\n"
-"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n"
-"\n"
-"コマンド:\n"
-" shell - シェルモード\n"
-" dump - 設定情報を表示する\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" -c=? 指定した設定ファイルを読み込む\n"
-" -o=? 指定した設定オプションを適用する(例: -o dir::cache=/tmp)\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "ファイルのハッシュでの問題"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s は正しい DEB パッケージではありません。"
-
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"使用方法: apt-extracttemplates ファイル名1 [ファイル名2 ...]\n"
-"\n"
-"apt-extracttemplates は debian パッケージから設定とテンプレート情報を\n"
-"抽出するためのツールです\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" -t 一時ディレクトリを指定する\n"
-" -c=? 指定した設定ファイルを読み込む\n"
-" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n"
-
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr ""
-"debconf のバージョンを取得できません。debconf はインストールされていますか?"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "ファイルを取得できません。サーバ応答 '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸æ\8b¡å¼µå\90ã\83ªã\82¹ã\83\88ã\81\8cé\95·ã\81\99ã\81\8eã\81¾ã\81\99"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "ã\83\87ã\83¼ã\82¿ã\82½ã\82±ã\83\83ã\83\88ã\82¿ã\82¤ã\83 ã\82¢ã\82¦ã\83\88"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing directory %s"
-msgstr "ã\83\87ã\82£ã\83¬ã\82¯ã\83\88ã\83ª %s ã\81®å\87¦ç\90\86ä¸ã\81«ã\82¨ã\83©ã\83¼ã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f"
+msgid "Data transfer failed, server said '%s'"
+msgstr "ã\83\87ã\83¼ã\82¿è»¢é\80\81ã\81«å¤±æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9fã\80\82ã\82µã\83¼ã\83\90å¿\9cç\94 '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "ソース拡張子リストが長すぎます"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "問い合わせ"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Contents ファイルへのヘッダの書き込み中にエラーが発生しました"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "呼び出せません"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing contents %s"
-msgstr "Contents %s の処理中にエラーが発生しました"
+msgid "Connecting to %s (%s)"
+msgstr "%s (%s) へ接続しています"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"使用方法: apt-ftparchive [オプション] コマンド\n"
-"コマンド: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive は Debian アーカイブ用のインデックスファイルを生成しま\n"
-"す。全自動のものから、dpkg-scanpackages と dpkg-scansources の代替機能\n"
-"となるものまで、多くの生成方法をサポートしています。\n"
-"\n"
-"apt-ftparchive は .deb のツリーから Packages ファイルを生成します。\n"
-"Packages ファイルは MD5 ハッシュやファイルサイズに加えて、各パッケージ\n"
-"のすべての制御フィールドの内容を含んでいます。Priority と Section の値\n"
-"を強制するために override ファイルがサポートされています。\n"
-"\n"
-"同様に apt-ftparchive は .dsc のツリーから Sources ファイルを生成しま\n"
-"す。--source-override オプションを使用するとソース override ファイルを\n"
-"指定できます。\n"
-"\n"
-"'packages' および 'sources' コマンドはツリーのルートで実行する必要があ\n"
-"ります。BinaryPath には再帰検索のベースディレクトリを指定し、override \n"
-"ファイルは override フラグを含んでいる必要があります。もし pathprefix \n"
-"が存在すればファイル名フィールドに付加されます。debian アーカイブでの\n"
-"使用方法の例:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" --md5 MD5 の生成を制御する\n"
-" -s=? ソース override ファイル\n"
-" -q 表示を抑制する\n"
-" -d=? オプションのキャッシュデータベースを選択する\n"
-" --no-delink delinking デバッグモードを有効にする\n"
-" --contents contents ファイルの生成を制御する\n"
-" -c=? 指定の設定ファイルを読む\n"
-" -o=? 任意の設定オプションを設定する"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
+
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "選択にマッチするものがありません"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "%s:%s (%s) への接続を開始できません。"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:93
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "パッケージファイルグループ `%s' に見当たらないファイルがあります"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:108
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB が壊れていたため、ファイル名を %s.old に変更しました"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "%s:%s (%s) へ接続できませんでした。"
-#: ftparchive/cachedb.cc:61
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB が古いため、%s のアップグレードを試みます"
+msgid "Connecting to %s"
+msgstr "%s へ接続しています"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"DB フォーマットが無効です。apt の古いバージョンから更新したのであれば、データ"
-"ベースを削除・再作成してください。"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "'%s' を解決できませんでした"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:173
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "DB ファイル %s を開くことができません: %s"
+msgid "Temporary failure resolving '%s'"
+msgstr "'%s' が一時的に解決できません"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "アーカイブにコントロールレコードがありません"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "'%s:%s' (%i) の解決中に問題が起こりました"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "カーソルを取得できません"
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "%s %s へ接続できません:"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:65
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "警告: ディレクトリ %s が読めません\n"
+msgid "Couldn't access keyring: '%s'"
+msgstr "キーリングにアクセスできませんでした: '%s'"
-#: ftparchive/writer.cc:81
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Acquire::gpgv::Options の引数リストが長すぎます。終了しています。"
+
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!"
+
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "少なくとも 1 つの不正な署名が発見されました。"
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "警告: %s の状態を取得できません\n"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"署名を検証するための '%s' の実行ができませんでした (gnupg はインストールされ"
+"ていますか?)"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "エラー: "
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "gpgv の実行中に未知のエラーが発生"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "警告: "
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "以下の署名が無効です:\n"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "エラー: エラーが適用されるファイルは "
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to resolve %s"
-msgstr "%s ã\81®è§£æ±ºã\81«å¤±æ\95\97ã\81\97ã\81¾した"
+msgid "Couldn't open pipe for %s"
+msgstr "%s ã\81«å¯¾ã\81\97ã\81¦ã\83\91ã\82¤ã\83\97ã\82\92é\96\8bã\81\91ã\81¾ã\81\9bã\82\93ã\81§した"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "ツリー内での移動に失敗しました"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "%s プロセスからの読み込みエラー"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "ヘッダの待機中です"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to open %s"
-msgstr "%s ã\81®ã\82ªã\83¼ã\83\97ã\83³ã\81«å¤±æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9f"
+msgid "Got a single header line over %u chars"
+msgstr "%u æ\96\87å\97ã\82\92è¶\85ã\81\88ã\82\8b 1 è¡\8cã\81®ã\83\98ã\83\83ã\83\80ã\82\92å\8f\96å¾\97ã\81\97ã\81¾ã\81\97ã\81\9f"
-#: ftparchive/writer.cc:254
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "不正なヘッダ行です"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "http サーバが不正なリプライヘッダを送信してきました"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "http サーバが不正な Content-Length ヘッダを送信してきました"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "http サーバが不正な Content-Range ヘッダを送信してきました"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "http サーバのレンジサポートが壊れています"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "不明な日付フォーマットです"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "select に失敗しました"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "接続タイムアウト"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "出力ファイルへの書き込みでエラーが発生しました"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "ファイルへの書き込みでエラーが発生しました"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "ファイルへの書き込みでエラーが発生しました"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "サーバからの読み込みに失敗しました"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "不正なヘッダです"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "接続失敗"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "内部エラー"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "空のファイルを mmap できません"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " リンク %s [%s] を外します\n"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "%lu バイトの mmap ができませんでした"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to readlink %s"
-msgstr "%s のリンク読み取りに失敗しました"
+msgid "Selection %s not found"
+msgstr "選択された %s が見つかりません"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to unlink %s"
-msgstr "%s のリンク解除に失敗しました"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "理解できない省略形式です: '%c'"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** %s を %s にリンクするのに失敗しました"
+msgid "Opening configuration file %s"
+msgstr "設定ファイル %s をオープンできませんでした"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " リンクを外す制限の %sB に到達しました。\n"
+msgid "Line %d too long (max %u)"
+msgstr "%d 行目が長すぎます (最大 %u)"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "アーカイブにパッケージフィールドがありませんでした"
+#: apt-pkg/contrib/configuration.cc:611
+#, c-format
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s に override エントリがありません\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "文法エラー %s:%u: 不正なタグです"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %1$s メンテナは %3$s ではなく %2$s です\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s にソース override エントリがありません\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s にバイナリ override エントリがありません\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "文法エラー %s:%u: インクルードのネストが多すぎます"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "内部エラー、メンバー %s を特定できません"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "文法エラー %s:%u: ここからインクルードされています"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - メモリの割り当てに失敗しました"
+#: apt-pkg/contrib/configuration.cc:707
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "文法エラー %s:%u: 未対応の命令 '%s'"
+
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります"
+
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... エラー!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "'%s' をオープンできません"
+msgid "%c%s... Done"
+msgstr "%c%s... 完了"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "不正な override %s %lu 行目 #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "コマンドラインオプション '%c' [%s から] は不明です。"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "不正な override %s %lu 行目 #2"
+msgid "Command line option %s is not understood"
+msgstr "コマンドラインオプション %s を理解できません"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "不正な override %s %lu 行目 #3"
+msgid "Command line option %s is not boolean"
+msgstr "コマンドラインオプション %s は boolean ではありません"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "override ファイル %s を読み込むのに失敗しました"
+msgid "Option %s requires an argument."
+msgstr "オプション %s には引数が必要です。"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "'%s' は未知の圧縮アルゴリズムです"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "圧縮出力 %s には圧縮セットが必要です"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "オプション %s には '%s' ではなく整数の引数が必要です"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "FILE* の作成に失敗しました"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "オプション '%s' は長すぎます"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "fork に失敗しました"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "%s を解釈することができません。true か false を試してください。"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "圧縮子プロセス"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "不正な操作 %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "内部エラー、%s の作成に失敗しました"
+msgid "Unable to stat the mount point %s"
+msgstr "マウントポイント %s の状態を取得できません"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "子プロセス IPC の生成に失敗しました"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "%s へ変更することができません"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "以下の圧縮ツールの実行に失敗しました: "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "cdrom の状態を取得するのに失敗しました"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "展開ツール"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "読み込み専用のロックファイル %s にロックは使用しません"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "子プロセス/ファイルへの IO が失敗しました"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "ロックファイル %s をオープンできません"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "MD5 の計算中に読み込みに失敗しました"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "nfs マウントされたロックファイル %s にはロックを使用しません"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "%s のリンク解除で問題が発生しました"
+msgid "Could not get lock %s"
+msgstr "ロック %s が取得できませんでした"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "%s を待ちましたが、そこにはありませんでした"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "正規表現の展開エラー - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "子プロセス %s がセグメンテーション違反を受け取りました。"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "以下のパッケージには満たせない依存関係があります:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "子プロセス %s がエラーコード (%u) を返しました"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "しかし、%s はインストールされています"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "子プロセス %s が予期せず終了しました"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "ã\81\97ã\81\8bã\81\97ã\80\81%s ã\81¯ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\82\88ã\81\86ã\81¨ã\81\97ã\81¦ã\81\84ã\81¾ã\81\99"
+msgid "Could not open file %s"
+msgstr "ã\83\95ã\82¡ã\82¤ã\83« %s ã\82\92ã\82ªã\83¼ã\83\97ã\83³ã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\81§ã\81\97ã\81\9f"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "しかし、インストールすることができません"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "読み込みが %lu 残っているはずですが、何も残っていません"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "しかし、これは仮想パッケージです"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "あと %lu 書き込む必要がありますが、書き込むことができませんでした"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ã\81\97ã\81\8bã\81\97ã\80\81ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\81¦ã\81\84ã\81¾ã\81\9bã\82\93"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "ã\83\95ã\82¡ã\82¤ã\83«ã\81®ã\82¯ã\83ã\83¼ã\82ºä¸ã\81«å\95\8fé¡\8cã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ã\81\97ã\81\8bã\81\97ã\80\81ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\82\88ã\81\86ã\81¨ã\81\97ã\81¦ã\81\84ã\81¾ã\81\9bã\82\93"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "ã\83\95ã\82¡ã\82¤ã\83«ã\81®å\89\8aé\99¤ä¸ã\81«å\95\8fé¡\8cã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " または"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "ファイルの同期中に問題が発生しました"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "以下のパッケージが新たにインストールされます:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "空のパッケージキャッシュ"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "以下のパッケージは「削除」されます:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "パッケージキャッシュファイルが壊れています"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "以下のパッケージは保留されます:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "このパッケージキャッシュファイルは互換性がないバージョンです"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "以下のパッケージはアップグレードされます:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "この APT はバージョニングシステム '%s' をサポートしていません"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "以下のパッケージは「ダウングレード」されます:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "以ä¸\8bã\81®å¤\89æ\9b´ç¦\81æ¢ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81¯å¤\89æ\9b´ã\81\95ã\82\8cã\81¾ã\81\99:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "ä¾\9då\98"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s のため) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "先行依存"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"警告: 以下の不可欠パッケージが削除されます。\n"
-"何をしようとしているか本当にわかっていない場合は、実行してはいけません!"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "提案"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "アップグレード: %lu 個、新規インストール: %lu 個、"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "推奨"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "再インストール: %lu 個、"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "競合"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "ダウングレード: %lu 個、"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "置換"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "削除: %lu 個、保留: %lu 個。\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "廃止"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "破壊"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "依存関係を解決しています ..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "重要"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " 失æ\95\97ã\81\97ã\81¾ã\81\97ã\81\9fã\80\82"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "è¦\81æ±\82"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "依存関係を訂正できません"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "標準"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "アップグレードセットを最小化できません"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "任意"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " 完了"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "特別"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ"
-"ん。"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "依存関係ツリーを作成しています"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "未解決の依存関係があります。-f オプションを試してください。"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "候補バージョン"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "警告: 以下のパッケージは認証されていません!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "依存関係の生成"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "認証の警告は上書きされました。\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "状態情報を読み取っています"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "検証なしにこれらのパッケージをインストールしますか [y/N]? "
+#: apt-pkg/depcache.cc:219
+#, c-format
+msgid "Failed to open StateFile %s"
+msgstr "状態ファイル %s のオープンに失敗しました"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "いくつかのパッケージを認証できませんでした"
+#: apt-pkg/depcache.cc:225
+#, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "一時状態ファイル %s の書き込みに失敗しました"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "パッケージファイル %s を解釈することができません (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "パッケージファイル %s を解釈することができません (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "内部エラー、調整が終わっていません"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "ダウンロードディレクトリをロックできません"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "%sB のアーカイブを取得する必要があります。\n"
+msgid "Opening %s"
+msgstr "%s をオープンしています"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "展開後に追加で %sB のディスク容量が消費されます。\n"
+msgid "Line %u too long in source list %s."
+msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "展開後に %sB のディスク容量が解放されます。\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s の空き領域を測定できません"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s に充分な空きスペースがありません。"
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "ソースリスト %2$s の %1$u 行目が不正です (vendor id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。"
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ"
+"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に"
+"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "インデックスファイルのタイプ '%s' はサポートされていません"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"重大な問題を引き起こす可能性のあることをしようとしています。\n"
-"続行するには、'%s' というフレーズをタイプしてください。\n"
-" ?] "
+"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見"
+"つけることができませんでした。"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "中断しました。"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー"
+"ジが原因です。"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "続行しますか [Y/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s の取得に失敗しました %s\n"
+msgid "Lists directory %spartial is missing."
+msgstr "リストディレクトリ %spartial が見つかりません。"
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "いくつかのファイルの取得に失敗しました"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "アーカイブディレクトリ %spartial が見つかりません。"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "ファイルを取得しています %li/%li (残り %s)"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"いくつかのアーカイブが取得できません。apt-get update を実行するか --fix-"
-"missing オプションを付けて試してみてください。"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "ファイルを取得しています %li/%li"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません"
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "メソッドドライバ %s が見つかりません。"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "足りないパッケージを直すことができません。"
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "メソッド %s が正常に開始しませんでした"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "インストールを中断します。"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"'%s' とラベルの付いたディスクをドライブ '%s' に入れて enter を押してくださ"
+"い。"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "注意、%2$s の代わりに %1$s を選択します\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "パッケージングシステム '%s' はサポートされていません"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "適切なパッケージシステムタイプを特定できません"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Unable to stat %s."
+msgstr "%s の状態を取得できません。"
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "sources.list に 'ソース' URI を指定する必要があります"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-"ã\81\99ã\81§ã\81«ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\95ã\82\8cã\81¦ã\81\8aã\82\8aã\82¢ã\83\83ã\83\97ã\82°ã\83¬ã\83¼ã\83\89ã\82\82è¨å®\9aã\81\95ã\82\8cã\81¦ã\81\84ã\81ªã\81\84ã\81\9fã\82\81ã\80\81%s ã\82\92ã\82¹ã\82ã\83\83"
-"ã\83\97ã\81\97ã\81¾ã\81\99ã\80\82\n"
+"ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\83ªã\82¹ã\83\88ã\81¾ã\81\9fã\81¯ã\82¹ã\83\86ã\83¼ã\82¿ã\82¹ã\83\95ã\82¡ã\82¤ã\83«ã\82\92è§£é\87\88ã\81¾ã\81\9fã\81¯ã\82ªã\83¼ã\83\97ã\83³ã\81\99ã\82\8bã\81\93ã\81¨ã\81\8cã\81§ã\81\8dã\81¾"
+"ã\81\9bã\82\93ã\80\82"
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "パッケージ %s はインストールされていないため、削除はできません\n"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"これらの問題を解決するためには apt-get update を実行する必要があるかもしれま"
+"せん"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr ""
+"不正なレコードが preferences ファイルに存在します。パッケージヘッダがありませ"
+"ん"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s は以下のパッケージで提供されている仮想パッケージです:\n"
+msgid "Did not understand pin type %s"
+msgstr "pin タイプ %s が理解できませんでした"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [インストール済み]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "pin で優先度 (または 0) が指定されていません"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\99ã\82\8bã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\82\92æ\98\8e示ç\9a\84ã\81«é\81¸æ\8a\9eã\81\99ã\82\8bå¿\85è¦\81ã\81\8cã\81\82ã\82\8aã\81¾ã\81\99ã\80\82"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "ã\82ã\83£ã\83\83ã\82·ã\83¥ã\81«é\9d\9eäº\92æ\8f\9bã\81ªã\83\90ã\83¼ã\82¸ã\83§ã\83\8bã\83³ã\82°ã\82·ã\82¹ã\83\86ã\83 ã\81\8cã\81\82ã\82\8aã\81¾ã\81\99"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "%s を処理中にエラーが発生しました (NewPackage)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "しかし、以下のパッケージで置き換えられています:"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "%s を処理中にエラーが発生しました (UsePackage1)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:153
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "パッケージ %s にはインストール候補がありません"
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "%s を処理中にエラーが発生しました (NewFileDesc1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "ダウンロードできないため、%s の再インストールは不可能です。\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "%s を処理中にエラーが発生しました (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ã\81¯ã\81\99ã\81§ã\81«æ\9c\80æ\96°ã\83\90ã\83¼ã\82¸ã\83§ã\83³ã\81§ã\81\99ã\80\82\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "%s ã\82\92å\87¦ç\90\86ä¸ã\81«ã\82¨ã\83©ã\83¼ã\81\8cç\99ºç\94\9fã\81\97ã\81¾ã\81\97ã\81\9f (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "%s を処理中にエラーが発生しました (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "%s を処理中にエラーが発生しました (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "%3$s にはバージョン %1$s (%2$s) を選択しました\n"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "%s を処理中にエラーが発生しました (NewVersion2)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "update コマンドは引数をとりません"
+#: apt-pkg/pkgcachegen.cc:245
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "%s を処理中にエラーが発生しました (NewFileDesc2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "list ディレクトリをロックできません"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "この APT が対応している以上の数のパッケージが指定されました。"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"いくつかのインデックスファイルのダウンロードに失敗しました。これらは無視され"
-"るか、古いものが代わりに使われます。"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "この APT が対応している以上の数のバージョンが要求されました。"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "この APT が対応している以上の数の説明が要求されました。"
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "以下のパッケージが新たにインストールされます:"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "この APT が対応している以上の数の依存関係が発生しました。"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "%s を処理中にエラーが発生しました (FindPkg)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "%s を処理中にエラーが発生しました (CollectFileProvides)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "以下の情報がこの問題を解決するために役立つかもしれません:"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "内部エラー、問題リゾルバが何かを破壊しました"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "ソースパッケージリスト %s の状態を取得できません"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "内部エラー、AllUpgrade が何かを破壊しました"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "ファイル提供情報を収集しています"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "パッケージ %s が見つかりません"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "ソースキャッシュの保存中に IO エラーが発生しました"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "パッケージ %s が見つかりません"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "名前の変更に失敗しました。%s (%s -> %s)"
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "注意: 正規表現 '%2$s' に対して %1$s を選択しました\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum が適合しません"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "しかし、%s はインストールされようとしています"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
+msgstr "ハッシュサムが適合しません"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ"
-"ません:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"æ\9cªè§£æ±ºã\81®ä¾\9då\98é\96¢ä¿\82ã\81§ã\81\99ã\80\82'apt-get -f install' ã\82\92å®\9fè¡\8cã\81\97ã\81¦ã\81¿ã\81¦ã\81\8fã\81 ã\81\95ã\81\84 (ã\81¾ã\81\9fã\81¯è§£æ³\95"
-"ã\82\92æ\98\8e示ã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84)。"
+"ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ %s ã\81®ã\83\95ã\82¡ã\82¤ã\83«ã\81®ä½\8dç½®ã\82\92ç\89¹å®\9aã\81§ã\81\8dã\81¾ã\81\9bã\82\93ã\80\82ã\81\8aã\81\9dã\82\89ã\81\8fã\81\93ã\81®ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\82\92æ\89\8bå\8b\95"
+"ã\81§ä¿®æ£ã\81\99ã\82\8bå¿\85è¦\81ã\81\8cã\81\82ã\82\8aã\81¾ã\81\99 (å\98å\9c¨ã\81\97ã\81ªã\81\84ã\82¢ã\83¼ã\82ã\83\86ã\82¯ã\83\81ã\83£ã\81®ã\81\9fã\82\81)。"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"インストールすることができないパッケージがありました。おそらく、あり得\n"
-"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n"
-"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n"
-"動されていないことが考えられます。"
+"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動"
+"で修正する必要があります。"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"単純な操作を行っただけなので、このパッケージは単にインストールできない\n"
-"可能性が高いです。そのため、このパッケージへのバグレポートを送ってくだ\n"
-"さい。"
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "壊れたパッケージ"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "以下の特別パッケージがインストールされます:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "提案パッケージ:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "推奨パッケージ:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "アップグレードパッケージを検出しています ... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "完了"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "内部エラー、問題リゾルバが何かを破壊しました"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"ソースを取得するには少なくともひとつのパッケージ名を指定する必要があります"
-
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "%s のソースパッケージが見つかりません"
-
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "すでにダウンロードされたファイル '%s' をスキップします\n"
-
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "%s に充分な空きスペースがありません"
+"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: "
+"フィールドがありません。"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "サイズが適合しません"
-#: cmdline/apt-get.cc:2199
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "%sB のソースアーカイブを取得する必要があります。\n"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "ベンダブロック %s はフィンガープリントを含んでいません"
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Fetch source %s\n"
-msgstr "ソース %s を取得\n"
-
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "いくつかのアーカイブの取得に失敗しました。"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"CD-ROM マウントポイント %s を使用します\n"
+"CD-ROM をマウントしています\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "確認しています.. "
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "展開コマンド '%s' が失敗しました。\n"
+msgid "Stored label: %s\n"
+msgstr "格納されたラベル: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr ""
-"'dpkg-dev' パッケージがインストールされていることを確認してください。\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD-ROM をアンマウントしています ...\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "ビルドコマンド '%s' が失敗しました。\n"
-
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "子プロセスが失敗しました"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "CD-ROM マウントポイント %s を使用します\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "CD-ROM をアンマウントしています\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "%s のビルド依存情報を取得できません"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "ディスクを待っています ...\n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s にはビルド依存情報が指定されていません。\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "CD-ROM をマウントしています ...\n"
-#: cmdline/apt-get.cc:2429
-#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと"
-"ができません"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "ディスクのインデックスファイルを走査しています ..\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-"入手可能な %3$s はいずれもバージョンについての要求を満たせないため、%2$s に対"
-"ã\81\99ã\82\8b %1$s ã\81®ä¾\9då\98é\96¢ä¿\82ã\82\92æº\80ã\81\9fã\81\99ã\81\93ã\81¨ã\81\8cã\81§ã\81\8dã\81¾ã\81\9bã\82\93"
+"%u のパッケージインデックス、%u のソースインデックス、%u の翻訳インデック"
+"ã\82¹ã\80\81%u ã\81®ç½²å\90\8dã\82\92è¦\8bã\81¤ã\81\91ã\81¾ã\81\97ã\81\9f\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ"
-"ケージは新しすぎます"
+msgid "Found label '%s'\n"
+msgstr "ラベル '%s' を見つけました\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "これは有効な名前ではありません。再試行してください。\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "%s のビルド依存関係を満たすことができませんでした。"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "ビルド依存関係の処理に失敗しました"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "サポートされているモジュール:"
-
-#: cmdline/apt-get.cc:2634
-#, fuzzy
msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"使用法: apt-get [オプション] コマンド\n"
-" apt-get [オプション] install|remove パッケージ名1 [パッケージ名"
-"2 ...]\n"
-" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n"
-"\n"
-"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n"
-"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n"
-"と install です。\n"
-"\n"
-"コマンド:\n"
-" update - パッケージリストを取得・更新します\n"
-" upgrade - アップグレードを行います\n"
-" install - 新規パッケージをインストールします\n"
-" (pkg は libc6.deb ではなく libc6 のように指定します)\n"
-" remove - パッケージを削除します\n"
-" source - ソースアーカイブをダウンロードします\n"
-" build-dep - ソースパッケージの構築依存関係を設定します\n"
-" dist-upgrade - ディストリビューションをアップグレードします\n"
-" (apt-get(8) を参照)\n"
-" dselect-upgrade - dselect の選択に従います\n"
-" clean - ダウンロードしたアーカイブファイルを削除します\n"
-" autoclean - ダウンロードした古いアーカイブファイルを削除します\n"
-" check - 壊れた依存関係がないかチェックします\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n"
-" -qq エラー以外は表示しない\n"
-" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n"
-" -s 実際には実行しない。実行シミュレーションのみ行う\n"
-" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n"
-" -f 整合性チェックで失敗しても処理を続行する\n"
-" -m アーカイブが存在しない場合も続行する\n"
-" -u アップグレードされるパッケージも表示する\n"
-" -b ソースパッケージを取得し、ビルドを行う\n"
-" -V 冗長なバージョンナンバを表示する\n"
-" -c=? 指定した設定ファイルを読み込む\n"
-" -o=? 任意の設定オプションを指定する, 例 -o dir::cache=/tmp\n"
-"オプション・設定に関しては、マニュアルページ apt-get(8)、sources.list(5)、\n"
-"apt.conf(5) を参照してください。\n"
-" この APT は Super Cow Powers 化されています。\n"
+"このディスクは以下のように呼ばれます: \n"
+"'%s'\n"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "ã\83\92ã\83\83ã\83\88 "
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\83ªã\82¹ã\83\88ã\82\92ã\82³ã\83\94ã\83¼ã\81\97ã\81¦ã\81\84ã\81¾ã\81\99 ..."
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "取得:"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "新しいソースリストを書き込んでいます\n"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "無視 "
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "このディスクのソースリストのエントリ:\n"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "エラー "
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#, c-format
+msgid "Wrote %i records.\n"
+msgstr "%i レコードを書き込みました。\n"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB を %s で取得しました (%sB/s)\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid " [Working]"
-msgstr " [処理中]"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"メディア変更: \n"
-" '%s'\n"
-"とラベルの付いたディスクをドライブ '%s' に入れて enter を押してください\n"
+"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない"
+"ファイルがあります。\n"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "不明なパッケージレコードです!"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, c-format
+msgid "Directory '%s' missing"
+msgstr "ディレクトリ '%s' が見つかりません"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"使用方法: apt-sortpkgs [オプション] ファイル名1 [ファイル名2 ...]\n"
-"\n"
-"apt-sortpkgs はパッケージファイルをソートするための簡単なツールです。\n"
-"-s オプションはファイルの種類を示すために使用されます。\n"
-"\n"
-"オプション:\n"
-" -h このヘルプを表示する\n"
-" -s ソースファイルソートを使用する\n"
-" -c=? 指定した設定ファイルを読み込む\n"
-" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "%s を準備しています"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "不正なデフォルト設定です!"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "%s を展開しています"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "enter を押すと続行します。"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "%s の設定を準備しています"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "展開中にエラーが発生しました。インストールされたパッケージを"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "%s を設定しています"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, c-format
+msgid "Processing triggers for %s"
+msgstr "%s のトリガーを処理しています"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s をインストールしました"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "が重要です。これを修正して「導入」を再度実行してください"
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "%s の削除を準備しています"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "入手可能情報をマージしています"
+#: apt-pkg/deb/dpkgpm.cc:618
+#, c-format
+msgid "Removing %s"
+msgstr "%s を削除しています"
-#, fuzzy
-#~ msgid "openpty failed\n"
-#~ msgstr "select に失敗しました"
+#: apt-pkg/deb/dpkgpm.cc:619
+#, c-format
+msgid "Removed %s"
+msgstr "%s を削除しました"
-#~ msgid "File date has changed %s"
-#~ msgstr "ファイル %s の日付が変更されています"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
+msgstr "%s を完全に削除する準備をしています"
-#~ msgid "Reading file list"
-#~ msgstr "ファイルリストを読み込んでいます"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s を完全に削除しました"
-#~ msgid "Could not execute "
-#~ msgstr "実行できませんでした:"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+msgstr ""
+"ログに書き込めません。openpty() に失敗しました (/dev/pts がマウントされていな"
+"い?)\n"
-#~ msgid "Preparing for remove with config %s"
-#~ msgstr "設定 %s の削除を準備しています"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "ファイルにパッチできませんでした"
-#~ msgid "Removed with config %s"
-#~ msgstr "設定 %s を削除しました"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "途中で接続がクローズされました"
msgstr ""
"Project-Id-Version: apt_po_km\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "មិនអាចអានមូលដ្ឋានទិន្នន័យស៊ីឌីរ៉ូម %s បានឡើយ"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"សូមប្រើ apt-cdrom ដើម្បីបង្កើតស៊ីឌី-រ៉ូមនេះ ដែលបានរៀបចំតាម APT ។ apt-get ធ្វើឲ្យទាន់សម័យ មិន"
-"ត្រូវបានប្រើដើម្បីបន្ថែមស៊ីឌី-រ៉ូមថ្មីឡើយ"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "ស៊ីឌី-រ៉ូមខុស"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "កញ្ចប់ %s កំណែ %s មានភាពអាស្រ័យមិនត្រូវគ្នា ៖\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី-រ៉ូម នៅក្នុង %s បានទេ វាអាចនៅតែប្រើបាន ។"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "រកថាសមិនឃើញ ។"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "រកឯកសារមិនឃើញ"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "បរាជ័យក្នុងការថ្លែង"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "បរាជ័យក្នុងការកំណត់ពេលវេលាការកែប្រែ"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI មិនត្រឹមត្រូវ URIS មូលដ្ឋានមិនត្រូវចាប់ផ្តើមជាមួយ // ឡើយ"
+msgid "Unable to locate package %s"
+msgstr "មិនអាចកំណត់ទីតាំងកញ្ចប់ %s បានឡើយ"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "កំពុងចូល"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "ឈ្មោះកញ្ចប់សរុប ៖ "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "មិនអាចកំណត់ឈ្មោះដែលត្រូវបង្ហាញបានឡើយ"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " កញ្ចប់ធម្មតា ៖ "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "មិនអាចកំណត់ឈ្មោះមូលដ្ឋានបានឡើយ"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " កញ្ចប់និម្មិតសុទ្ធ ៖ "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "ម៉ាស៊ីនបម្រើបានបដិសេធការតភ្ជាប់ ហើយ បាននិយាយ ៖ %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " កញ្ចប់និម្មិតតែមួយ ៖ "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER បរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " កញ្ចប់និម្មិតលាយ ៖ "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS បានបរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " បាត់បង់ ៖ "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"ម៉ាស៊ីនបម្រើប្រូកស៊ីត្រូវបានបញ្ជាក់ ប៉ុន្តែគ្មានស្គ្រីបចូលទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "កំណែផ្សេងៗសរុប ៖ "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "á\9e\96á\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶â\80\8bá\9e\9fá\9f\92á\9e\82á\9f\92á\9e\9aá\9e¸á\9e\94â\80\8bá\9e\85á\9e¼á\9e\9bâ\80\8b '%s' á\9e\94á\9e¶á\9e\93á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99 á\9e\98á\9f\89á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\93â\80\8bá\9e\94á\9e\98á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\94á\9e¶á\9e\93á\9e\93á\9e·á\9e\99á\9e¶á\9e\99 á\9f\96 %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84á\9f\97â\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE បានបរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "ភាពអាស្រ័យសរុប ៖ "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "á\9e¢á\9e\9fá\9f\8bá\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8b"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "á\9e\91á\9f\86á\9e\93á\9e¶á\9e\80á\9f\8bá\9e\91á\9f\86á\9e\93á\9e\84 á\9e\80á\9f\86á\9e\8eá\9f\82/á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "ម៉ាស៊ីនបម្រើបានបិទការតភ្ជាប់"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "ទំនាក់ទំនង កំណែ/ឯកសារសរុប ៖ "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e¢á\9e¶á\9e\93â\80\8bá\9e\98á\9e¶á\9e\93á\9e\80á\9f\86á\9e á\9e»á\9e\9f"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "á\9e\80á\9e¶á\9e\9aá\9e\95á\9f\92á\9e\82á\9e¼á\9e\9aá\9e\95á\9f\92á\9e\82á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "á\9e\86á\9f\92á\9e\9bá\9e¾á\9e\99á\9e\8fá\9e\94â\80\8bá\9e\9fá\9e\8fá\9e·â\80\8bá\9e\94á\9e\8eá\9f\92á\9e\8fá\9f\84á\9f\87á\9e¢á\9e¶á\9e\9fá\9e\93á\9f\92á\9e\93â\80\8bâ\80\8bá\9e¢á\9e\9fá\9f\8bá\9e\85á\9f\86á\9e\8eá\9e»á\9f\87 á\9f\94"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "á\9e\81á\9f\92á\9e\9fá\9f\82â\80\8bá\9e¢á\9e\80á\9f\92á\9e\9fá\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94â\80\8b á\9f\96 "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e\94á\9e\84á\9f\92á\9e\81á\9e¼á\9e\85â\80\8bá\9e\96á\9e·á\9e\92á\9e¸á\9e\80á\9e¶á\9e\9aâ\80\8b"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "á\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8bá\9e\98á\9e¶á\9e\93á\9e\80á\9f\86á\9e á\9e»á\9e\9f"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "á\9e\91á\9f\86á\9e á\9f\86 slack á\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\9aá\9e\93á\9f\92á\9e\92á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "á\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\91á\9e»á\9e\80â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b á\9f\96 "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "មិនអាចតភ្ជាប់រន្ធទិន្នន័យបានឡើយ អស់ពេលក្នុងការតភ្ជាប់"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "ឯកសារកញ្ចប់ %s នៅខាងក្រៅការធ្វើសមកាលកម្ម ។"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\8fá\9f\82â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\9bá\9f\86á\9e\93á\9e¶á\9f\86â\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\96á\9e·á\9e\8fâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e¶á\9e\80á\9e\8a"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85á\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8bâ\80\8bá\9e\9aá\9e\93á\9f\92á\9e\92á\9e¢á\9e\80á\9e\98á\9f\92á\9e\98â\80\8bâ\80\8bá\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99 á\9f\94"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "á\9e\9aá\9e\80â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\83á\9e¾á\9e\89"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo មិនអាចទទួលយករន្ធសម្រាប់ស្តាប់បានឡើយ"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "ឯកសារកញ្ចប់ ៖"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9e\84á\9e\9aá\9e\93á\9f\92á\9e\92â\80\8bá\9e\94á\9e¶á\9e\93á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99â\80\8b"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "á\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\8bá\9e·á\9e\8fá\9e\93á\9f\85â\80\8bá\9e\80á\9f\92á\9e\9aá\9f\85â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e\9fá\9e\98á\9e\80á\9e¶á\9e\9bâ\80\8bá\9e\80á\9e\98á\9f\92á\9e\98 á\9e\8aá\9f\82á\9e\9bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85 x-ref á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9f\81"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "មិនអាចស្ដាប់នៅលើរន្ធបានឡើយ"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "មិនអាចកំណត់ឈ្មោះរបស់រន្ធបានឡើយ"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "កញ្ចប់ដែលបានខ្ទាស់ ៖"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "មិនអាចផ្ញើពាក្យបញ្ជា PORT បានឡើយ"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(រកមិនឃើញ)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "មិនស្គាល់អាសយដ្ឋានគ្រួសារ %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " បានដំឡើង ៖ "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT បរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(គ្មាន)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "ការតភ្ជាប់រន្ធទិន្នន័បានអស់ពេល"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " សាកល្បង ៖ "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "មិនអាចទទួលយកការតភ្ជាប់បានឡើយ"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " ខ្ទាស់កញ្ចប់ ៖ "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "បញ្ហាធ្វើឲ្យខូចឯកសារ"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " តារាងកំណែ ៖"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "មិនអាចទៅប្រមូលយកឯកសារបានឡើយ ម៉ាស៊ីនបម្រើបាននិយាយ '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "រន្ធទិន្នន័យបានអស់ពេល"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "បរាជ័យក្នុងការផ្ទេរទិន្នន័យ ម៉ាស៊ីនបម្រើបាននិយាយ '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s សម្រាប់ %s %s បានចងក្រងនៅលើ%s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "សំណួរ"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "មិនអាចហៅ "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "កំពុងតភ្ជាប់ទៅកាន់ %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"ការប្រើប្រាស់ ៖ apt-cache [options] ពាក្យបញ្ជា\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache គឺជាឧបករណ៍កម្រិតទាបដែលប្រើសម្រាប់រៀបចំប្រព័ន្ធគោលពីររបស់ APT\n"
+"ឯកសារឃ្លាំងសម្ងាត់ និង ព័ត៌មានសំណួរពីពួកវា\n"
+"\n"
+"ពាក្យបញ្ជា\n"
+" add - បន្ថែមឯកសារកញ្ចប់ទៅឃ្លាំងសម្ងាត់ប្រភព\n"
+" gencaches - បង្កើតទាំងកញ្ចប់និងឃ្លាំងសម្ងាត់ប្រភព\n"
+" showpkg - បង្ហាញព័ត៌មានទូទៅខ្លះសម្រាប់កញ្ចប់តែមួយ\n"
+" showsrc - បង្ហាញកំណត់ត្រាប្រភព\n"
+" stats - បង្ហាញស្ថិតិមូលដ្ឋានខ្លះ\n"
+" dump - បង្ហាញឯកសារទាំងមូលក្នុងទ្រង់ទ្រាយសង្ខេប\n"
+" dumpavail - បោះពុម្ពឯកសារដែលមានទៅ stdout\n"
+" unmet - បង្ហាញភាពអាស្រ័យ unmet \n"
+" search - ស្វែងរកកញ្ចប់លំនាំ regex \n"
+" show - បង្ហាញកំណត់ត្រាកញ្ចប់ដែលអាចអានបាន\n"
+" depends - បង្ហាញព័ត៌មានភាពអាស្រ័យកញ្ចប់មិនទាន់ច្នៃ\n"
+" rdepends - បង្ហាញព័ត៌មានភាពអាស្រ័យកញ្ចប់បញ្ច្រាស់\n"
+" pkgnames - រាយឈ្មោះកញ្ចប់ទាំងអស់\n"
+" dotty - បង្កើតកញ្ចប់ក្រាហ្វសម្រាប់ GraphVis\n"
+" xvcg - បង្កើតកញ្ចប់ក្រាហ្វសម្រាប់ xvcg\n"
+" policy - បង្ហាញ ការរៀបចំគោលការណ៍\n"
+"\n"
+"ជម្រើស ៖\n"
+" -h នេះជាអត្ថជំនួយ\n"
+" -p=? ឃ្លាំងសម្ងាត់កញ្ចប់ ។\n"
+" -s=? ឃ្លាំងសម្ងាត់ប្រភព ។\n"
+" -q ទ្រនិចចង្អុលវឌ្ឍនភាព មិនអនុញ្ញាត ។\n"
+" -i បានតែបង្ហាញ ព័ត៌មាន deps ដែលសំខាន់សម្រាប់ពាក្យបញ្ជាដែលខុសគ្នា ។\n"
+" -c=? អានការកំណត់រចនាសម្ព័ន្ធឯកសារនេះ \n"
+" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. eg -o dir::cache=/tmp\n"
+"មើល apt-cache(8) និង apt.conf(5) សម្រាប់ព័ត៌មានបន្ថែមមានក្នុងទំព័រសៀវភៅដៃ ។\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP ៖ %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "សូមផ្ដល់ឈ្មោះឲ្យថាសនេះ ឧទាហរណ៍ដូចជា 'ដេបៀន 2.1r1 ថាសទី ១' ជាដើម"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "មិនអាចបង្កើតរន្ធសម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "សូមបញ្ចូលថាសក្នុងដ្រាយហើយចុចបញ្ចូល"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "មិនអាចចាប់ផ្ដើមការតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ។"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "ធ្វើដំណើរការនេះម្តងទៀត សម្រាប់ស៊ីឌីទាំងអស់ក្នុងសំណុំរបស់អ្នក ។"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ការតភ្ជាប់បានអស់ពេល"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "អាគុយម៉ង់មិនមានគូទេ"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ។"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"ការប្រើប្រាស់ ៖ ពាក្យបញ្ជា apt-config [ជម្រើស] \n"
+"\n"
+"apt-config ជាឧបករណ៍សាមញ្ញសម្រាប់អានឯកសារកំណត់រចនាសម្ព័ន្ធ APT \n"
+"\n"
+"ពាក្យបញ្ជា ៖\n"
+" shell - របៀបសែល\n"
+" dump - បង្ហាញការកំណត់រចនាសម្ព័ន្ធ\n"
+"\n"
+"ជម្រើស\n"
+" -h អត្ថនទជំនួយនេះ\n"
+" -c=? អានឯកសារការកំណត់រចនាសម្ព័ន្ធនេះ \n"
+" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "កំពុងតភ្ជាប់ទៅកាន់ %s"
+msgid "%s not a valid DEB package."
+msgstr "%s មិនមែនជាកញ្ចប់ DEB ត្រឹមត្រូវទេ ។"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "មិនអាចដោះស្រាយ '%s' បានឡើយ"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"ការប្រើប្រាស់ ៖ apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates ជាឧបករណ៍ដើម្បីស្រង់ព័ត៌មានការរចនាសម្ព័ន្ធនិងពុម្ព\n"
+"ពីកញ្ចប់ដេបៀន \n"
+"\n"
+"ជម្រើស ៖ \n"
+" -h អត្ថបទជំនួយ\n"
+" -t កំណត់ថតបណ្ដោះអាសន្ន\n"
+" -c=? អានឯកសារការកំណត់រចនាស្ព័ន្ធនេះ\n"
+" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. eg -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bâ\80\8bá\9e\94á\9e\8eá\9f\92á\9e\8fá\9f\84á\9f\87á\9e¢á\9e¶á\9e\9fá\9e\93á\9f\92á\9e\93 '%s'"
+msgid "Unable to write to %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8bá\9e\91á\9f\85 %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "ការដោះស្រាយអ្វីអាក្រក់ដែលបានកើតឡើង '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "មិនអាចទទួលយកកំណែ debconf ។ តើ debconf បានដំឡើងឬ ?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s %s ៖"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "បញ្ជីផ្នែកបន្ថែមកញ្ចប់វែងពេក"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "មិនអាចចូលដំណើរការ keyring ៖ '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E ៖ បញ្ជីអាគុយម៉ង់ពី Acquire::gpgv::Options too long ។ ចេញ ។"
+msgid "Error processing directory %s"
+msgstr "កំហុសដំណើរការថត %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "កំហុសខាងក្នុង ៖ ហត្ថលេខាល្អ ប៉ុន្តែ មិនអាចកំណត់កូនសោស្នាមម្រាមដៃ ?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "បញ្ជីផ្នែកបន្ថែមប្រភពវែងពេក"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "បានជួបប្រទះហត្ថលេខាយ៉ាងហោចណាស់មួយ ដែលត្រឹមត្រូវ ។"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "កំហុសសរសេរបឋមកថាទៅឯកសារមាតិកា"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "មិនអាចប្រតិបត្តិ '%s' ដើម្បីផ្ទៀងផ្ទាត់ហត្ថលេខា (តើ gnupg ត្រូវបានដំឡើងឬនៅ ?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "ហត្ថលេខាខាងក្រោមមិនត្រឹមត្រូវ ៖\n"
+msgid "Error processing contents %s"
+msgstr "កំហុសដំណើរការមាតិកា %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "ហត្ថលេខាខាងក្រោមមិនអាចផ្ទៀងផ្ទាត់បានទេ ព្រោះកូនសោសាធារណៈមិនអាចប្រើបាន ៖\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "បានបរាជ័យក្នុងការថ្លែង %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "មិនអាចបើកបំពុងសម្រាប់ %s បានឡើយ"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "អាចនកំហុសពីដំណើរការ %s"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "កំពុងរង់ចាំបឋមកថា"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "យកបន្ទាត់បឋមកថាតែមួយ ដែលលើស %u តួអក្សរ"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "ជួរបឋមកថាខូច"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"ការប្រើប្រាស់ ៖ ពាក្យបញ្ជា apt-ftparchive [ជម្រើស] \n"
+"ពាក្យបញ្ជា ៖ កញ្ចប់ binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" ផ្លូវមាតិកា\n"
+" ផ្លូវផ្សាយចេញ \n"
+" កំណត់រចនាស្ព័ន្ធបង្កើត [groups]\n"
+" កំណត់រចនាសម្ព័ន្ធសំអាត\n"
+"\n"
+"apt-ftparchive បង្កើតឯកសារលិបិក្រមសម្រាប់ប័ណ្ណសារដេបៀន ។ វាគាំទ្ររចនាប័ទ្មនៃការបង្កើតដោយ"
+"ស្វ័យប្រវត្តិ\n"
+"ដើម្បីធ្វើការជំនួស\n"
+" dpkg-scanpackages និង dpkg-scansources\n"
+"\n"
+"apt-ftparchive ដែលបង្កើតឯកសារញ្ចប់ ពីមែកធាង .debs ។ ឯកសារកញ្ចប់មាន\n"
+"មាតិកានៃ វត្ថុបញ្ជាវាលទាំងអស់ ដែលបានមកពីកញ្ចប់និមួយៗដូចជា MD5 hash និង ទំហំឯកសារ ។ ឯកសារ"
+"បដិសេធមិនគាំទ្រ \n"
+"ដើម្បីបង្ខំតម្លៃអាទិភាពនិង សម័យ ។\n"
+"\n"
+"ភាពដូចគ្នានៃ apt-ftparchive បង្កើតឯកសារប្រភពពីមែកធាង .dscs ។\n"
+"ជម្រើសបដិសេធប្រភពអាចត្រូវបានប្រើសម្រាប់បញ្ចាក់ឯកសារបដិសេធ src \n"
+"\n"
+" បញ្ជា'កញ្ចប់' និង 'ប្រភព' ត្រូវតែរត់ជា root \n"
+" ។ BinaryPath ត្រូវចង្អុលទៅកាន់មូលដ្ឋានស្វែងរកហៅខ្លួនឯង ហើយ \n"
+"ឯកសារបដិសេធត្រូវមានទងបដិសេធ ។ ផ្លូវបរិបទត្រូវបានបន្ថែមទៅក្នុងវាលឈ្មោះឯកសារបើវាមាន ។ "
+"ឧទាហរណ៍ ការប្រើប្រាស់ពីប័ណ្ណសារ \n"
+"ដេបៀន ៖\n"
+" apt-ftparchive កញ្ចប់dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"ជម្រើស ៖\n"
+" -h អត្ថបទជំនួយនេះ\n"
+" --md5 Control MD5 ការបបង្កើត\n"
+" -s=? ឯកសារបដិសេធប្រភព\n"
+" -q Quiet\n"
+" -d=? ជ្រើសជម្រើសលាក់ទុកទិន្នន័យ\n"
+" --គ្មាន-delink អនុញ្ញាត delinking របៀបបំបាត់កំហុស\n"
+" --មាតិកា ពិនិត្យការបង្កើតឯកសារមាតិកា\n"
+" -c=? អានឯកសារការកំណត់រចនាសម្ព័ន្ធនេះ\n"
+" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "á\9e\98á\9f\89á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\93â\80\8bá\9e\94á\9e\98á\9f\92á\9e\9aá\9e¾â\80\8b HTTP á\9e\94á\9e¶á\9e\93á\9e\95á\9f\92á\9e\89á\9e¾á\9e\94á\9e\8bá\9e\98á\9e\80á\9e\90á\9e¶á\9e\85á\9e\98á\9f\92á\9e\9bá\9e¾á\9e\99á\9e\8fá\9e\94á\9e\98á\9e·á\9e\93á\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9c"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\95á\9f\92á\9e\82á\9e½á\9e\95á\9f\92á\9e\82á\9e\84â\80\8b"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "ម៉ាស៊ីនបម្រើ HTTP បានផ្ញើបឋមកថាប្រវែងមាតិកាមិនត្រឹមត្រូវ"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "ឯកសារមួយចំនួនបាត់បងពីក្រុមឯកសារកញ្ចប់ `%s'"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "ម៉ាស៊ីនបម្រើ HTTP បានផ្ញើបឋមកថាជួរមាតិកាមិនត្រឹមត្រូវ"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB បានខូច, ឯកសារបានប្តូរឈ្មោះទៅជា %s.old ។"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "ម៉ាស៊ីនបម្រើ HTTP នេះបានខូចជួរគាំទ្រ"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB ចាស់, កំពុងព្យាយាមធ្វើឲ្យ %s ប្រសើរឡើង"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "មិនស្គាល់ទ្រង់ទ្រាយកាលបរិច្ឆេទ"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"ទ្រង់ទ្រាយមូលដ្ឋានទិន្នន័យមិនត្រឹមត្រូវ ។ ប្រសិនបើអ្នកបានធ្វើឲ្យវាប្រសើឡើងពីកំណែចាស់របស់ apt សូមយក"
+"មូលដ្ឋានទិន្នន័យចេញ និងបង្កើតមូលដ្ឋានទិន្នន័យឡើងវិញ ។"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "ជ្រើសបានបរាជ័យ"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "មិនអាចបើកឯកសារ DB បានទេ %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "ការតភ្ជាប់បានអស់ពេល"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "បានបរាជ័យក្នុងការថ្លែង %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aá\9e\91á\9f\85á\9e\80á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aá\9e\9bá\9e\91á\9f\92á\9e\92á\9e\95á\9e\9b"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "á\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¶â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e½á\9e\8fâ\80\8bá\9e\96á\9e·á\9e\93á\9e·á\9e\8fá\9f\92á\9e\99â\80\8bá\9e\91á\9f\81â\80\8b"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aá\9e\91á\9f\85á\9e\80á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\99á\9e\80â\80\8bá\9e\91á\9e\9fá\9f\92á\9e\9fá\9e\93á\9f\8dá\9e\91á\9f\92á\9e\9aá\9e\93á\9e·á\9e\85â\80\8b"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារ"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: មិនអាចអានថត %s បានឡើយ\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់ពីចម្ងាយបានបិទការតភ្ជាប់"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W ៖ មិនអាចថ្លែង %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "ទិន្នន័យបឋមកថាខូច"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "ការតភ្ជាប់បានបរាជ័យ"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: កំហុសអនុវត្តលើឯកសារ"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "កំហុសខាងក្នុង"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "បរាជ័យក្នុងការដោះស្រាយ %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85 mmap á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aá\9e\91á\9e\91á\9f\81â\80\8bá\9e\94á\9e¶á\9e\93á\9e¡á\9e¾យ"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "á\9e\98á\9f\82á\9e\80â\80\8bá\9e\92á\9e¶á\9e\84 á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90យ"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8b mmap á\9e\93á\9f\83â\80\8b %lu á\9e\94á\9f\83á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Failed to open %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e¾á\9e\80 %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "ជម្រើស %s រកមិនឃើញឡើយ"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bâ\80\8bá\9e\91á\9e\91á\9e½á\9e\9bâ\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9f\81á\9e\91â\80\8bá\9e¢á\9e\80á\9f\92á\9e\9fá\9e\9aâ\80\8bá\9e\9fá\9e\84á\9f\92á\9e\81á\9f\81á\9e\94 á\9f\96 '%c'"
+msgid "Failed to readlink %s"
+msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\93â\80\8bá\9e\8fá\9f\86á\9e\8eâ\80\8b %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "កំពុងបើឯកសារកំណត់រចនាសម្ព័ន្ធ %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-#| msgid "Line %d too long (max %d)"
-msgid "Line %d too long (max %u)"
-msgstr "បន្ទាត់ %d វែងពេក (អតិបរមា %d)"
+msgid "Failed to unlink %s"
+msgstr "បានបរាជ័យក្នុងការផ្ដាច់ %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ ប្លុកចាប់ផ្តើមដោយគ្មានឈ្មោះ ។"
+msgid "*** Failed to link %s to %s"
+msgstr "*** បានបរាជ័យក្នុងការត %s ទៅ %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ ស្លាកដែលបាន Malformed"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink កំណត់នៃការវាយ %sB ។\n"
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ តម្លៃឥតបានការនៅក្រៅ"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "ប័ណ្ណសារគ្មានវាលកញ្ចប់"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់អាចត្រូវបានធ្វើតែនៅលើកម្រិតកំពូលតែប៉ុណ្ណោះ"
+msgid " %s has no override entry\n"
+msgstr " %s គ្មានធាតុធាតុបញ្ចូលបដិសេធឡើយ\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ មានការរួមបញ្ចូលដែលដាក់រួមគ្នាយ៉ាងច្រើន"
+msgid " %s maintainer is %s not %s\n"
+msgstr " អ្នកថែទាំ %s គឺ %s មិនមែន %s\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ បានរួមបញ្ចូលពីទីនេះ"
+msgid " %s has no source override entry\n"
+msgstr " %s គ្មានធាតុបដិសេធប្រភព\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់ដែលមិនបានគាំទ្រ '%s'"
+msgid " %s has no binary override entry either\n"
+msgstr " %s គ្មានធាតុបដិសេធគោលពីរដែរ\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការបន្ថែម ដែលនៅខាងចុងឯកសារ"
-
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "មិនអាចអាន %s បានឡើយ"
+msgid "Internal error, could not locate member %s"
+msgstr "កំហុសខាងក្នុង មិនអាចកំណត់ទីតាំងសមាជិក %s បានឡើយ"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... កំហុស !"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - បរាជ័យក្នុងការបម្រុងទុកសតិ"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... ធ្វើរួច"
+msgid "Unable to open %s"
+msgstr "មិនអាចបើក %s បានឡើយ"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "ជម្រើសបន្ទាត់ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។"
+msgid "Malformed override %s line %lu #1"
+msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #1"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "មិនយល់ពីជម្រើសបន្ទាត់ពាក្យបញ្ជា %s ឡើយ"
+msgid "Malformed override %s line %lu #2"
+msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #2"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "ជម្រើសបន្ទាត់ពាក្យបញ្ជា %s មិនមែនជាប៊ូលីនទេ"
+msgid "Malformed override %s line %lu #3"
+msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #3"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s requires an argument."
-msgstr "á\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b %s á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\82á\9e»á\9e\99á\9e\98á\9f\89á\9e\84á\9f\8bá\9e\98á\9e½á\9e\99 á\9f\94"
+msgid "Failed to read the override file %s"
+msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\93á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\94á\9e\8aá\9e·á\9e\9fá\9f\81á\9e\92 %s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "á\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9f %s á\9f\96 á\9e\80á\9e¶á\9e\9aá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶á\9e\80á\9f\8bâ\80\8bá\9e\92á\9e¶á\9e\8fá\9e»â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\9aá\9e\85á\9e\93á\9e¶á\9e\9fá\9e\98á\9f\92á\9e\96á\9f\90á\9e\93á\9f\92á\9e\92á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\8fá\9f\82á\9e\98á\9e¶á\9e\93 =<val> á\9e\98á\9e½á\9e\99 á\9f\94"
+msgid "Unknown compression algorithm '%s'"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\94á\9e½á\9e\93â\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\94á\9e\84á\9f\92á\9e á\9e¶á\9e\94á\9f\8bâ\80\8b '%s'"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "ជម្រើស %s ត្រូវការអាគុយម៉ង់ចំនួនគត់ មិនមែន '%s'"
+msgid "Compressed output %s needs a compression set"
+msgstr "ទិន្នផលដែលបានបង្ហាប់ %s ត្រូវការកំណត់ការបង្ហាប់"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "ជម្រើស '%s' វែងពេក"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "បរាជ័យក្នុងការបង្កើតបំពង់ IPC សម្រាប់ដំណើរការរង"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "មិនបានយល់អំពីការស្គាល់ %s ឡើយ សូមព្យាយមយក ពិត ឫ មិនពិត ។"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "បរាជ័យក្នុងការបង្កើត FILE*"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "ប្រតិបត្តិការមិនត្រឹមត្រូវ %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "បានបរាជ័យក្នុងការដាក់ជាពីរផ្នែក"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "មិនអាចថ្លែង ចំណុចម៉ោន %s បានឡើយ"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "បង្ហាប់កូន"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9f\92á\9e\8aá\9e¼á\9e\9aá\9e\91á\9f\85 %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Internal error, failed to create %s"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8b %s"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "បរាជ័យក្នុងការថ្លែង ស៊ីឌីរ៉ូម"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "បរាជ័យក្នុងការបង្កើតដំណើរការរង IPC"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "មិនប្រើប្រាស់ការចាក់សោ សម្រាប់តែឯកសារចាក់សោដែលបានតែអានប៉ុណ្ណោះ %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "បរាជ័យក្នុងការប្រតិបត្តិកម្មវិធីបង្ហាប់ "
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "មិនអាចបើកឯកសារចាក់សោ %s បានឡើយ"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "កម្មវិធីពន្លា"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "មិនប្រើការចាក់សោ សម្រាប់ nfs ឯកសារចាក់សោដែលបានម៉ោន%s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO សម្រាប់ដំណើរការរង/ឯកសារ បានបរាជ័យ"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "មិនអាចចាក់សោ %s បានឡើយ"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "បានបរាជ័យក្នុងការអាន នៅពេលគណនា MD5"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "á\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86á\9e\94á\9f\8bâ\80\8b %s á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82 â\80\8bá\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\93á\9f\85á\9e\91á\9e¸á\9e\93á\9f\84á\9f\87"
+msgid "Problem unlinking %s"
+msgstr "á\9e\98á\9e¶á\9e\93á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\8aá\9e¶á\9e\85á\9f\8bá\9e\8fá\9f\86á\9e\8e %s"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "á\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9aá\9e\84â\80\8b %s á\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e\91á\9e½á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\85á\9f\82á\9e\80á\9e\87á\9e¶á\9e\85á\9e\98á\9f\92á\9e\9aá\9f\80á\9e\80â\80\8b á\9f\94"
+msgid "Failed to rename %s to %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9f\92á\9e\8fá\9e¼á\9e\9aâ\80\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87 %s á\9e\91á\9f\85 %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "ដំណើរការរង %s បានត្រឡប់ទៅកាន់កូដមានកំហុស (%u)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "ដំណើរការរង %s បានចេញ ដោយមិនរំពឹងទុក "
+msgid "Regex compilation error - %s"
+msgstr "Regex កំហុសការចងក្រង - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "មិនអាចបើកឯកសារ %s បានឡើយ"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "កញ្ចប់ខាងក្រោមមានភាពអាស្រ័យដែលខុសគ្នា ៖"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "á\9e¢á\9e¶á\9e\93â\80\8b, á\9e\93á\9f\85á\9e\8fá\9f\82â\80\8bá\9e\98á\9e¶á\9e\93 %lu á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e¢á\9e¶á\9e\93â\80\8b á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8bá\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e¢á\9f\92á\9e\9cá\9e¸â\80\8bá\9e\93á\9f\85á\9e\9fá\9e\9bá\9f\8b"
+msgid "but %s is installed"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8b %s á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8b, á\9e\93á\9f\85á\9e\8fá\9f\82á\9e\98á\9e¶á\9e\93â\80\8b %lu á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8b á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8b"
+msgid "but %s is to be installed"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8b %s á\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾â\80\8bá\9e\84"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "á\9e\98á\9e¶á\9e\93â\80\8bá\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e·á\9e\91â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8bâ\80\8bá\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9f\81â\80\8b"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "á\9e\98á\9e¶á\9e\93á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\8aá\9e¶á\9e\85á\9f\8bá\9e\8fá\9f\86á\9e\8eâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8bâ\80\8bá\9e\9cá\9e¶â\80\8bá\9e\87á\9e¶â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\93á\9e·á\9e\98á\9f\92á\9e\98á\9e·á\9e\8fâ\80\8b"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "á\9e\98á\9e¶á\9e\93á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e\9fá\9e\98á\9e\80á\9e¶á\9e\9bá\9e\80á\9e\98á\9f\92á\9e\98á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8bá\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\91á\9f\81"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "á\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\91á\9e\91á\9f\81â\80\8b"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82 á\9e\9cá\9e¶â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\91á\9f\81"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "ឯកសារឃ្លាំងកញ្ចប់មិនត្រឹមត្រូវ"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " ឬ"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84á\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\87á\9e¶á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\82á\9f\92á\9e\93á\9e¶â\80\8b"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\90á\9f\92á\9e\98á\9e¸â\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b á\9f\96"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "APT នេះ មិនគាំទ្រប្រព័ន្ធ ការធ្វើកំណែនេះទេ '%s'"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "កញ្ចប់ខាងក្រោមនឹងត្រូវបានយកចេញ ៖"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "ឃ្លាំងសម្ងាត់កញ្ចប់ត្រូវបានស្ថាបនា់សម្រាប់ស្ថាបត្យករខុសៗគ្នា"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "កញ្ចប់ខាងក្រោមត្រូវបានយកត្រឡប់មកវិញ ៖"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8b"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e²á\9f\92á\9e\99á\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾â\80\8bá\9e¡á\9e¾á\9e\84 á\9f\96"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99á\9e\87á\9e¶â\80\8bá\9e\98á\9e»á\9e\93"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\94 á\9f\96"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "á\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bá\9e\99á\9f\84á\9e\94á\9e\9bá\9f\8bâ\80\8b"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86â\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\95á\9f\92á\9e\9bá\9e¶á\9e\9fá\9f\8bâ\80\8bâ\80\8bá\9e\94á\9f\92á\9e\8fá\9e¼á\9e\9aâ\80\8b á\9f\96"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "ផ្តល់អនុសាសន៍"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (ដោយសារតែ %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "ប៉ះទង្គិច"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ព្រមាន ៖ កញ្ចប់ដែលចាំបាច់ខាងក្រោមនឹងត្រូវបានយកចេញ ។\n"
+"ការយកចេញនេះមិនត្រូវបានធ្វើទេលុះត្រាតែអ្នកដឹងថាអ្នកកំពុងធ្វើអ្វីឲ្យប្រាកដ !"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "ជំនួស"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu ត្រូវបានធ្វើឲ្យប្រសើរ %lu ត្រូវបានដំឡើងថ្មី "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "លែងប្រើ"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu ត្រូវបានដំឡើងឡើងវិញ "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu ត្រូវបានបន្ទាប់ "
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "សំខាន់"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu ដែលត្រូវយកចេញ ហើយ %lu មិនបានធ្វើឲ្យប្រសើរឡើយ ។\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "បានទាមទារ"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu មិនបានដំឡើង ឬ យកចេញបានគ្រប់ជ្រុងជ្រោយឡើយ ។\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "á\9e\82á\9f\86á\9e\9aá\9e¼"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\80á\9f\82â\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8b..."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "ស្រេចចិត្ត"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " បានបរាជ័យ ។"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\90á\9f\82á\9e\98"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\82â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99â\80\8b"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84á\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\93á\9e¶â\80\8bá\9e\98á\9f\82á\9e\80á\9e\92á\9e¶á\9e\84á\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\9aá\9e½á\9e\98â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾á\9e\9aâ\80\8bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e¡á\9e¾á\9e\99â\80\8b"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "កំណែសាកល្បង"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " ធ្វើរួច"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8b"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\85á\9e\84á\9f\8bá\9e\9aá\9e\8fá\9f\8b `apt-get -f install' á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\80á\9f\82â\80\8bá\9e\9cá\9e¶â\80\8bâ\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e\93á\9f\81á\9f\87â\80\8bá\9e á\9e¾á\9e\99 á\9f\94"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-#| msgid "Merging available information"
-msgid "Reading state information"
-msgstr "បញ្ចូលព័ត៌មានដែលមានចូលគ្នា"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "ភាពអាស្រ័យដែលខុសគ្នា ។ ព្យាយាមការប្រើ -f ។"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-#| msgid "Failed to open %s"
-msgid "Failed to open StateFile %s"
-msgstr "បរាជ័យក្នុងការបើក %s"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ព្រមាន ៖ មិនអាចធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-#| msgid "Failed to write file %s"
-msgid "Failed to write temporary StateFile %s"
-msgstr "បរាជ័យក្នុងការសរសេរឯកសារ %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "បានបដិសេធការព្រមានការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ ។\n"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (1) បានឡើយ"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "ដំឡើងកញ្ចប់ទាំងនេះ ដោយគ្មានការពិនិត្យបញ្ជាក់ [y/N] ? "
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (2) បានឡើយ"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "មិនអាចផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់មួយចំនួនបានឡើយ"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "បន្ទាត់ Malformed %lu ក្នុងញ្ជីប្រភព %s (URI)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "មានបញ្ហា ហើយ -y ត្រូវបានប្រើដោយគ្មាន --force-yes"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "កំហុសខាងក្នុង កញ្ចប់ដំឡើងត្រូវបានហៅជាមួយកញ្ចប់ដែលខូច !"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (URI ញែក)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "កញ្ចប់ ត្រូវការឲ្យយកចេញ ប៉ុន្តែមិនអនុញ្ញាតឲ្យយកចេញឡើយ ។"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist លែងប្រើ)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "កំហុសខាងក្នុង ការរៀបតាមលំដាប់មិនបានបញ្ចប់ឡើយ"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist ញែក)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "មិនអាចចាក់សោថតទាញយកបានឡើយ"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\94á\9e¾á\9e\80â\80\8b %s"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e¢á\9e¶á\9e\93â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e¡á\9e¾á\9e\99â\80\8b á\9f\94"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "យី អីក៏ចម្លែងម្លេះ.. ទំហំមិនដូចគ្នាឡើយ ។ សូមផ្ញើអ៊ីមែលទៅ apt@packages.debian.org"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b %u á\9e\98á\9e¶á\9e\93â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9cá\9f\82á\9e\84â\80\8bá\9e\9cá\9f\82á\9e\84á\9e\96á\9f\81á\9e\80á\9e\93á\9f\85â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s á\9f\94"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bâ\80\8bá\9e\99á\9e\80â\80\8b %sB/%sB á\9e\93á\9f\83â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9a á\9f\94â\80\8b\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b Malformed %u á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e\97á\9f\81á\9e\91â\80\8b)"
+msgid "Need to get %sB of archives.\n"
+msgstr "á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\80á\9e¶á\9e\9aá\9e\99á\9e\80â\80\8b %sB á\9e\93á\9f\83â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9a á\9f\94\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "បន្ទាប់ពីពន្លា %sB នៃការបន្ថែមទំហំថាសត្រូវបានប្រើ ។\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "បន្ទាប់ពីពន្លា %sB ទំហំថាសនឹងទំនេរ ។ \n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "á\9e\94á\9f\92á\9e\9aá\9e\97á\9f\81á\9e\91â\80\8b '%s' á\9e\98á\9e·á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bá\9e\93á\9f\85á\9e\9bá\9e¾á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b %u á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s ឡើយ"
+msgid "Couldn't determine free space in %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\91á\9f\86á\9e\93á\9f\81á\9e\9aâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b %s á\9e\94á\9e¶á\9e\93ឡើយ"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b Malformed %u á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (á\9e\9bá\9f\81á\9e\81á\9e\9fá\9e\98á\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\9aá\9e»á\9e\98á\9e á\9f\8aá\9e»á\9e\93â\80\8bá\9e\9bá\9e\80á\9f\8b)"
+msgid "You don't have enough free space in %s."
+msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\91á\9f\86á\9e á\9f\86â\80\8bâ\80\8bá\9e\91á\9f\86á\9e\93á\9f\81á\9e\9aâ\80\8bá\9e\82á\9f\92á\9e\9aá\9e\94á\9f\8bá\9e\82á\9f\92á\9e\9aá\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bâ\80\8b %s á\9e¡á\9e¾á\9e\99 á\9f\94"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "បានបញ្ជាក់តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែនេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "បាទ/ចាស ធ្វើដូចដែលខ្ញុំនិយាយ !"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"á\9e\80á\9e¶á\9e\9aá\9e\9aá\9e\8fá\9f\8bâ\80\8bá\9e\80á\9e¶á\9e\9aá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\93á\9f\81á\9f\87 á\9e\93á\9e¹á\9e\84á\9e\91á\9e¶á\9e\98á\9e\91á\9e¶á\9e\9aâ\80\8bá\9e²á\9f\92á\9e\99á\9e\99á\9e\80á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bá\9e\85á\9e¶á\9f\86á\9e\94á\9e¶á\9e\85á\9f\8b %s á\9e\94á\9e\8eá\9f\92á\9e\8aá\9f\84á\9f\87á\9e¢á\9e¶á\9e\9fá\9e\93á\9f\92á\9e\93 á\9e\8aá\9f\84á\9e\99á\9e\9fá\9e¶á\9e\9a á\9e\9aá\9e\84á\9f\92á\9e\9cá\9e·á\9e\9b á\9e\80á\9e¶á\9e\9aá\9e\94á\9f\89á\9f\87á\9e\91á\9e\84á\9f\92á\9e\82á\9e·á\9e\85/"
-"á\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99á\9e\87á\9e¶á\9e\98á\9e»á\9e\93 á\9f\94 á\9e\87á\9e¶á\9e\89á\9e¹á\9e\80á\9e\89á\9e¶á\9e\94á\9f\8bá\9e\82á\9eº á\9e\98á\9e·á\9e\93á\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9c á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82 á\9e\94á\9f\92á\9e\9aá\9e\9fá\9e·á\9e\93á\9e\94á\9e¾á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\96á\9e·á\9e\8fá\9e\87á\9e¶á\9e\85á\9e\84á\9f\8bá\9e\92á\9f\92á\9e\9cá\9e¾á\9e\9cá\9e¶ á\9e\92á\9f\92á\9e\9cá\9e¾á\9e²á\9f\92á\9e\99á\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9f APT::"
-"Force-LoopBreak សកម្ម ។"
+"á\9e¢á\9f\92á\9e\93á\9e\80á\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e¢á\9f\92á\9e\9cá\9e¸á\9e\98á\9e½á\9e\99â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e\9aâ\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\98á\9e¶á\9e\93â\80\8bá\9e\98á\9e á\9e\93á\9f\92á\9e\8aá\9e\9aá\9e¶á\9e\99 á\9f\94\n"
+"á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\94á\9e\93á\9f\92á\9e\8f â\80\8bâ\80\8bá\9e\9cá\9e¶á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶â\80\8b '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "ប្រភេទឯកសារលិបិក្រម '%s' មិនត្រូវបានគាំទ្រ"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "បោះបង់ ។"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "តើអ្នកចង់បន្តឬ [បាទ ចាស/ទេ] ? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ ខ្ញុំមិនអាចរកប័ណ្ណសារសម្រាប់វាបានទេ ។"
+msgid "Failed to fetch %s %s\n"
+msgstr "បរាជ័យក្នុងការទៅប្រមូលយក %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "ឯកសារមួយចំនួនបានបរាជ័យក្នុងការទាញយក"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "បានបញ្ចប់ការទាញយក ហើយតែក្នុងរបៀបទាញយកប៉ុណ្ណោះ"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"á\9e\80á\9f\86á\9e á\9e»á\9e\9f pkgProblemResolver::á\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\9fá\9e\89á\9f\92á\9e\89á\9e¶á\9e\94á\9e\89á\9f\92á\9e\88á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8f á\9e\93á\9f\81á\9f\87â\80\8bá\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bá\9e\87á\9e¶ á\9e\94á\9e\84á\9f\92á\9e\80á\9e\8aá\9f\84á\9e\99á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b"
-"ដែលបានទុក ។"
+"á\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8fâ\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\91á\9f\85â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93â\80\8b á\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\9aá\9e\8fá\9f\8bâ\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\9fá\9e\98á\9f\90á\9e\99 apt-get á\9e¬ á\9e\96á\9f\92á\9e\99á\9e¶á\9e\99á\9e¶á\9e\98á\9e\94á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99 --"
+"fix- ដែលបាត់ឬ់ ?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "មិនអាចកែបញ្ហាបានទេេ អ្កបានទុកកញ្ចប់ដែលខូច ។។"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix- ដែលបាត់ និង ស្វបមេឌៀដែលមិនបានគាំទ្រនៅពេលបច្ចុប្បន្ន"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "មិនអាចកែកញ្ចប់ដែលបាត់បង់បានឡើយ ។"
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "កំពុងបោះបង់ការដំឡើង ។"
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "á\9e\9aá\9e¶á\9e\99á\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\90á\9e\8fâ\80\8b %spartial á\9e\82á\9eºâ\80\8bá\9e\94á\9e¶á\9e\8fá\9f\8bá\9e\94á\9e\84á\9f\8bâ\80\8b á\9f\94"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "á\9e\85á\9f\86á\9e\8eá\9e¶á\9f\86 á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b %s á\9e\87á\9f\86á\9e\93á\9e½á\9e\9fâ\80\8b %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "á\9e\90á\9e\8fâ\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8b %spartial á\9e\82á\9eºâ\80\8bá\9e\94á\9e¶á\9e\8fá\9f\8bá\9e\94á\9e\84á\9f\8bâ\80\8b á\9f\94"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9f\86á\9e\9bá\9e\84â\80\8b %s á\9e\9cá\9e¶â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\9aá\9e½á\9e\85á\9e\9aá\9e¶á\9e\9bá\9f\8bâ\80\8b á\9e á\9e¾á\9e\99â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾á\9e²á\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾á\9e\9aâ\80\8bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bâ\80\8b á\9f\94\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\91á\9f\85â\80\8bá\9e\99á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a %li á\9e\93á\9f\83 %li (á\9e\93á\9f\85á\9e\9fá\9e\9bá\9f\8b %s)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "á\9e\98á\9e·á\9e\93á\9e\91á\9e¶á\9e\93á\9f\8bá\9e\94á\9e¶á\9e\93á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\91á\9f\81â\80\8b á\9e\8aá\9e¼á\9e\85á\9f\92á\9e\93á\9f\81á\9f\87 á\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\99á\9e\80á\9e\85á\9f\81á\9e\89á\9e¡á\9e¾á\9e\99 \n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\91á\9f\85á\9e\99á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a %li á\9e\93á\9f\83 %li"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\87á\9e¶â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\93á\9e·á\9e\98á\9f\92á\9e\98á\9e·á\9e\8fâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\8fá\9e\9bá\9f\8bâ\80\8bá\9e\8aá\9f\84á\9e\99â\80\8b á\9f\96\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [បានដំឡើង]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "អ្នកគួរតែជ្រើសយកមួយឲ្យច្បាស់ដើម្បីដំឡើង ។"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "មិនអាចរកឃើញកម្មវិធីបញ្ជាវិធីសាស្ត្រ %s ឡើយ ។"
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "ទោះយ៉ាងណាក៏ដោយ កញ្ចប់ខាងក្រោមជំនួសវា ៖"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "á\9e\9cá\9e·á\9e\92á\9e¸á\9e\9fá\9e¶á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9aâ\80\8b %s á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\95á\9f\92á\9e\8fá\9e¾á\9e\98â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\91á\9f\81â\80\8b"
+msgid "Package %s has no installation candidate"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\98á\9e·á\9e\93á\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84á\9e\9fá\9e¶á\9e\80á\9e\9bá\9f\92á\9e\94á\9e\84á\9e¡á\9e¾á\9e\99"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "á\9e\9fá\9e¼á\9e\98â\80\8bá\9e\94á\9e\89á\9f\92á\9e\85á\9e¼á\9e\9bâ\80\8bá\9e\9fá\9f\92á\9e\9bá\9e¶á\9e\80â\80\8bá\9e\8cá\9e¸á\9e\9fâ\80\8b á\9f\96 '%s' á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\8aá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8b '%s' á\9e á\9e¾á\9e\99â\80\8bá\9e\9fá\9e\84á\9f\92á\9e\80á\9e\8fá\9f\8bâ\80\8bá\9e\85á\9e¼á\9e\9b á\9f\94"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85á\9e\92á\9f\92á\9e\9cá\9e¾á\9e\80á\9e¶á\9e\9aá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s á\9e¡á\9e¾á\9e\84á\9e\9cá\9e·á\9e\89á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e¶á\9e\89á\9e\99á\9e\80á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99 á\9f\94\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "មិនគាំទ្រប្រព័ន្ធកញ្ចប់'%s' ឡើយ"
+msgid "%s is already the newest version.\n"
+msgstr "%s ជាកំណែដែលថ្មីបំផុតរួចទៅហើយ ។\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "មិនអាចកំណត់ប្រភេទប្រព័ន្ធកញ្ចប់ដែលសមរម្យបានឡើយ"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "រកមិនឃើញការចេញផ្សាយ '%s' សម្រាប់ '%s' ឡើយ"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\90á\9f\92á\9e\9bá\9f\82á\9e\84 %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99 á\9f\94"
+msgid "Version '%s' for '%s' was not found"
+msgstr "á\9e\9aá\9e\80â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\83á\9e¾á\9e\89â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8b '%s' á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b '%s'"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួននៅក្នុង sources.list របស់អ្នក"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "បានជ្រើសកំណែ %s (%s) សម្រាប់ %s\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e¢á\9e¶á\9e\93â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e¡á\9e¾á\9e\99â\80\8b á\9f\94"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "á\9e\96á\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶â\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\9fá\9e\98á\9f\90á\9e\99â\80\8bá\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e¢á\9e¶á\9e\82á\9e»á\9e\99á\9e\98á\9f\89á\9e\84á\9f\8bâ\80\8bá\9e\91á\9f\81"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "á\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b á\9e¬ á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9fá\9f\92á\9e\90á\9e¶á\9e\93á\9e\97á\9e¶á\9e\96â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\94á\9e¶á\9e\93â\80\8bâ\80\8bá\9e\89á\9f\82á\9e\80 â\80\8bâ\80\8bá\9e¬ á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e¾á\9e\80á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99â\80\8bâ\80\8b á\9f\94"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9e¶á\9e\80á\9f\8bâ\80\8bá\9e\9fá\9f\84â\80\8bá\9e\90á\9e\8fâ\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "អ្នកប្រហែលជាចង់ភាពទាន់សម័យ apt-get ដើម្បីកែបញ្ហាទាំងនេះ"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"ឯកសារលិបិក្រមមួយចំនួនបានបរាជ័យក្នុងការទាញយក ពួកវាត្រូវបានមិនអើពើ ឬ ប្រើឯកសារចាស់ជំនួសវិញ ។"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "កំណត់ត្រាមិនត្រឹមត្រូវនៅក្នុងឯកសារចំណង់ចំណូលចិត្ត មិនមានបឋមកថាកញ្ចប់ទេ"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "មិនបានយល់ពីប្រភេទម្ជុល %s ឡើយ"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "គ្មានអទិភាព (ឬ សូន្យ) បានបញ្ជាក់សម្រាប់ម្ជុលទេ"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "ឃ្លាំងសម្ងាត់មិនត្រូវគ្នានឹង ប្រព័ន្ធ ធ្វើកំណែ"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កញ្ចប់ថ្មី)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "ព័ត៌មានដូចតទៅនេះ អាចជួយដោះស្រាយស្ថានភាពបាន ៖"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9f¡â\80\8b)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\93á\9e»á\9e\84 á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\94á\9e¶á\9e\93á\9e\92á\9f\92á\9e\9cá\9e¾á\9e²á\9f\92á\9e\99á\9e\81á\9e¼á\9e\85â\80\8bá\9e§á\9e\94á\9e\80á\9e\9aá\9e\8eá\9f\8d"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "កំហុសខាងក្នុង ការធ្វើឲ្យប្រសើរទាំងអស់បានធ្វើឲ្យឧបករណ៍ខូច"
+
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
+msgid "Couldn't find task %s"
+msgstr "មិនអាចរកកញ្ចប់ %s បានទេ"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e¾á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bá\9f¢)"
+msgid "Couldn't find package %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\9aá\9e\80â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b %s á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bâ\80\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\90á\9f\92á\9e\98á\9e¸â\80\8bá\9f¡)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "á\9e\85á\9f\86á\9e\8eá\9e¶á\9f\86 á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b %s á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b regex '%s'\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\80á\9f\86á\9e\8eá\9f\82á\9f¡á\9e\90á\9f\92á\9e\98á\9e¸â\80\8b)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8b %s á\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾â\80\8bá\9e\84"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (ប្រើកញ្ចប់៣)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "អ្នកប្រហែលជាចង់រត់ `apt-get -f install' ដើម្បីកែពួកវាទាំងនេះ ៖"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (កំណែ២ថ្មី)"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"ភាពអស្រ័យដែលខុសគ្នា ។ ព្យាយាម 'apt-get -f install' ដោយគ្មានកញ្ចប់ (ឬ បញ្ជាក់ដំណោះស្រាយ) ។"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"មិនអាចដំឡើងកញ្ចប់មួយចំនួនបានឡើយ ។ នេះមានន័យថាអ្នក\n"
+"បានស្នើរស្ថានភាពដែលមិនអាចធ្វើបានមួយ ឬ ប្រសិនបើអ្នកកំពុងប្រើការចែកចាយពុំមានលំនឹងនោះ កញ្ចប់"
+"ដែលបានទាមទារនឹងមិនទាន់បានបង្កើតឡើយ\n"
+" ឬ បានយកចេញពីការមកដល់ ។"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "អស្ចារ្យ អ្នកមានឈ្មោះកញ្ចប់លើសចំនួន APT នេះឆបគ្នា ។"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"ចាប់តាំងពីអ្នកបានស្នើរប្រតិបត្តិការតែមួយមក វាទំនងហាក់ដូចជា\n"
+"កញ្ចប់ដែលមិនអាចដំឡើងបានដោយងាយ ហើយនិងការប្រឆាំងនឹងរបាយការណ៍កំហុស\n"
+"កញ្ចប់នោះ គួរតែត្រូវបានបរាជ័យ ។"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "á\9e¢á\9e\9fá\9f\92á\9e\85á\9e¶á\9e\9aá\9f\92á\9e\99 á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\9bá\9e¾á\9e\9fâ\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93â\80\8b APT á\9e\93á\9f\81á\9f\87â\80\8bá\9e\86á\9e\94á\9e\82á\9f\92á\9e\93á\9e¶â\80\8b á\9f\94"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\81á\9e¼á\9e\85â\80\8b"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-#| msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "អស្ចារ្យ អ្នកមានកំណែលើសចំនួន APT នេះឆបគ្នា ។"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "កញ្ចប់បន្ថែមដូចតទៅនេះ នឹងត្រូវបានដំឡើង ៖"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "á\9e¢á\9e\9fá\9f\92á\9e\85á\9e¶á\9e\9aá\9f\92á\9e\99â\80\8b, á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\98á\9e¶á\9e\93â\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\9bá\9e¾á\9e\9fâ\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93â\80\8b APT á\9e\93á\9f\81á\9f\87â\80\8bá\9e\86á\9e\94á\9e\82á\9f\92á\9e\93á\9e¶â\80\8b á\9f\94"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\99á\9f\84á\9e\94á\9e\9bá\9f\8b á\9f\96"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (FindPkg)"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "កញ្ចប់ដែលបានផ្ដល់អនុសាសន៍ ៖"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ%s (ផ្តល់ឯកសារប្រមូលផ្តុំ)"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "កំពុងគណនាការធ្វើឲ្យប្រសើរ... "
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "កញ្ចប់ %s %s រកមិនឃើញខណៈពេលកំពុងដំណើរការភាពអាស្រ័យឯកសារ"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "បានបរាជ័យ"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "មិនអាចថ្លែង បញ្ជីកញ្ចប់ប្រភពចប់ បានឡើយ %s"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "ធ្វើរួច"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "កំពុងអានបញ្ជីកញ្ចប់"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "កំហុសខាងក្នុង អ្នកដោះស្រាយបញ្ហាបានធ្វើឲ្យខូចឧបករណ៍"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bá\9e\95á\9f\92á\9e\8aá\9e»á\9f\86"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "á\9e\99á\9f\89á\9e¶á\9e\84á\9e á\9f\84á\9e\85á\9e\8eá\9e¶á\9e\9fá\9f\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bâ\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶á\9e\80á\9f\8bâ\80\8bâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\98á\9e½á\9e\99 â\80\8bá\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\91á\9f\85â\80\8bâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Unable to write to %s"
-msgstr "មិនអាចសរសេរទៅ %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO កំហុសក្នុងការររក្សាទុកឃ្លាំងសម្ងាត់ប្រភព"
+msgid "Unable to find a source package for %s"
+msgstr "មិនអាចរកកញ្ចប់ប្រភពសម្រាប់ %s បានឡើយ"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "ប្តូរឈ្មោះបានបរាជ័យ, %s (%s -> %s) ។"
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum មិនផ្គួផ្គង"
-
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum មិនផ្គួផ្គង"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "កំពុងរំលងឯកសារដែលបានទាញយករួច '%s'\n"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "គ្មានកូនសោសាធារណៈអាចរកបានក្នុងកូនសោ IDs ខាងក្រោមនេះទេ ៖\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "អ្នកពុំមានទំហំទំនេរគ្រប់គ្រាន់ទេនៅក្នុង %s ឡើយ"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"ខ្ញុំមិនអាចរកទីតាំងឯកសារសម្រាប់កញ្ចប់ %s បានទេ ។ មានន័យថាអ្នកត្រូវការជួសជុលកញ្ចប់នេះដោយដៃ ។ "
-"(ដោយសារបាត់ស្ថាបត្យកម្ម)"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "ត្រូវការយក %sB/%sB នៃប័ណ្ណសារប្រភព ។\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"ខ្ញុំមិនអាចរកទីតាំងឯកសារសម្រាប់កញ្ចប់ %s បានទេ ។ មានន័យថាអ្នកត្រូវការជួសជុលកញ្ចប់នេះដោយដៃ ។"
+msgid "Need to get %sB of source archives.\n"
+msgstr "ត្រូវការយក %sB នៃប័ណ្ណសារប្រភព ។\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "កញ្ចប់ឯកសារលិបិក្រមត្រូវបានខូច ។ គ្មានឈ្មោះឯកសារ ៖ វាលសម្រាប់កញ្ចប់នេះទេ %s ។"
+msgid "Fetch source %s\n"
+msgstr "ទៅប្រមូលប្រភព %s\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "á\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\98á\9e·á\9e\93á\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\82á\9e½á\9e\95á\9f\92á\9e\82á\9e\84â\80\8b"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\91á\9f\85á\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e½á\9e\99á\9e\85á\9f\86á\9e\93á\9e½á\9e\93 á\9f\94"
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "á\9e\94á\9f\92á\9e\9bá\9e»á\9e\80â\80\8bá\9e\80á\9f\92á\9e\9aá\9e»á\9e\98á\9e á\9f\8aá\9e»á\9e\93â\80\8bá\9e\9bá\9e\80á\9f\8bâ\80\8b %s á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\9fá\9f\92á\9e\93á\9e¶á\9e\98â\80\8bá\9e\95á\9f\92á\9e\8fá\9e·á\9e\8fâ\80\8bá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\98â\80\8bá\9e\8aá\9f\83"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9f\86á\9e\9bá\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\93á\9f\83á\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99á\9e\9aá\9e½á\9e\85â\80\8bá\9e\93á\9f\85á\9e\80á\9f\92á\9e\93á\9e»á\9e\84 %s\n"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"ការប្រើប្រាស់ចំណុចម៉ោន ស៊ីឌី-រ៉ូម %s\n"
-"កំពុងម៉ោនស៊ីឌី-រ៉ូម\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "កំពុងធ្វើអត្តសញ្ញាណនា.. "
+msgid "Unpack command '%s' failed.\n"
+msgstr "ពាក្យបញ្ជាស្រាយ '%s' បានបរាជ័យ ។\n"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
-msgstr "á\9e\94á\9e¶á\9e\93á\9e\91á\9e»á\9e\80â\80\8bá\9e\9fá\9f\92á\9e\9bá\9e¶á\9e\80 á\9f\96 %s \n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "á\9e\96á\9e·á\9e\93á\9e·á\9e\8fá\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e·á\9e\93â\80\8bá\9e\94á\9e¾á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b 'dpkg-dev' á\9e\98á\9e·á\9e\93â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b á\9f\94\n"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "á\9e\94á\9f\92á\9e\9aá\9e¾á\9e\94á\9f\92á\9e\9aá\9e¶á\9e\9fá\9f\8bá\9e\85á\9f\86á\9e\8eá\9e»á\9e\85á\9e\98á\9f\89á\9f\84á\9e\93â\80\8b á\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸â\80\8b-á\9e\9aá\9f\89á\9e¼á\9e\98â\80\8b %s\n"
+msgid "Build command '%s' failed.\n"
+msgstr "á\9e\9fá\9e¶á\9e\84á\9e\9fá\9e\84â\80\8bá\9e\96á\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶â\80\8b '%s' á\9e\94á\9e¶á\9e\93á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8b á\9f\94\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "á\9e\80á\9e¶á\9e\9aá\9e\98á\9e·á\9e\93á\9e\98á\9f\89á\9f\84á\9e\93â\80\8b á\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸-á\9e\9aá\9f\89á\9e¼á\9e\98â\80\8b\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "á\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aâ\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\80á\9e¼á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8b"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86á\9e\8cá\9e¸á\9e\9fâ\80\8b...\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\8fá\9f\82â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶á\9e\80á\9f\8bâ\80\8bá\9e\99á\9f\89á\9e¶á\9e\84á\9e á\9f\84á\9e\85á\9e\8eá\9e¶á\9e\9fá\9f\8bâ\80\8bá\9e\98á\9e½á\9e\99á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bá\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸á\9e\96á\9e·á\9e\93á\9e·á\9e\8fá\9f\92á\9e\99 builddeps á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\98á\9f\89á\9f\84á\9e\93â\80\8b á\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸â\80\8b-á\9e\9aá\9f\89á\9e¼á\9e\98â\80\8b...\n"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\9fá\9e¶á\9e\84á\9e\9fá\9e\84á\9f\8bâ\80\8bâ\80\8bá\9e\96á\9f\90á\9e\8fá\9f\8cá\9e\98á\9e¶á\9e\93â\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "កំពុងស្កេនឌីសសម្រាប់ឯកសារលិបិក្រម..\n"
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s មិនមានភាពអាស្រ័យស្ថាបនាឡើយ ។\n"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid "Found %i package indexes, %i source indexes and %i signatures\n"
+#: cmdline/apt-get.cc:2442
+#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "បានរកឃើញ លិបិក្រមកញ្ចប់ %i លិបិក្រមប្រភព%i និង ហត្ថលេខា %i \n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-#| msgid "Stored label: %s\n"
-msgid "Found label '%s'\n"
-msgstr "បានទុកស្លាក ៖ %s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាមម្ដងទៀត ។\n"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%s ភាពអស្រ័យសម្រាប់ %s មិនអាចធ្វើឲ្យពេញចិត្ត ព្រោះរក %s កញ្ចប់មិនឃើញ "
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"ឌីសនេះត្រូវបានហៅ ៖ \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "កំពុងចម្លងបញ្ជីកញ្ចប់..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "កំពុងសរសេរបញ្ជីប្រភពថ្មី\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "ធាតុបញ្ចូលបញ្ជីប្រភពសម្រាប់ឌីសនេះគឺ ៖\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-#| msgid "Unmounting CD-ROM..."
-msgid "Unmounting CD-ROM...\n"
-msgstr "មិនកំពុងម៉ោន ស៊ីឌី-រ៉ូម ទេ..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "បានសរសេរ %i កំណត់ត្រា ។\n"
+"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាចតម្រូវចិត្តបានទេ ព្រោះ មិនមានកំណែនៃកញ្ចប់ %s ដែលអាចតម្រូវចិត្ត"
+"តម្រូវការកំណែបានឡើយ"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "á\9e\94á\9e¶á\9e\93á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9a %i á\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\8fá\9f\92á\9e\9aá\9e¶â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99â\80\8b %i á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\8fá\9f\8bá\9e\94á\9e\84á\9f\8b á\9f\94\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8fá\9e\98á\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\85á\9e·á\9e\8fá\9f\92á\9e\8fá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99 %s á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s á\9f\96 á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b %s á\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 á\9e\82á\9eºá\9e\90á\9f\92á\9e\98á\9e¸á\9e\96á\9f\81á\9e\80"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "á\9e\94á\9e¶á\9e\93á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8b %i á\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\8fá\9f\92á\9e\9aá\9e¶â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99á\9e½á\9e\99â\80\8b %i á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\82á\9e½á\9e\95á\9f\92á\9e\82á\9e\84â\80\8b\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8fá\9e\98á\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\85á\9e·á\9e\8fá\9f\92á\9e\8fá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99 %s á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s: %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "បានសរសេរ %i កំណត់ត្រាជាមួយ %i ឯកសារដែលបាត់បង់ និង %i ឯកសារដែលមិនបានផ្គួផ្គង \n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-#| msgid "Lists directory %spartial is missing."
-msgid "Directory '%s' missing"
-msgstr "រាយបញ្ជីថត %spartial គឺបាត់បង់ ។"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "ភាពអាស្រ័យដែលបង្កើត %s មិនអាចបំពេញសេចក្ដីត្រូវការបានទេ ។"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "កំពុងរៀបចំ %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "បានបរាជ័យក្នុងការដំណើរការបង្កើតភាពអាស្រ័យ"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "កំពុងស្រាយ %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "ម៉ូឌុលដែលគាំទ្រ ៖ "
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "កំពុងរៀបចំកំណត់រចនាសម្ព័ន្ធ %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get គឺជាចំណុចប្រទាក់បន្ទាត់ពាក្យបញ្ជាសាមញ្ញមួយ សម្រាប់ធ្វើការទាញយក និង\n"
+"ដំឡើងកញ្ចប់ ។ ជាញឹកញាប់បំផុត គឺប្រើពាក្យបញ្ជាដើម្បីធ្វើឲ្យទាន់សម័យ\n"
+"និង ដំឡើង ។\n"
+"\n"
+"ពាក្យបញ្ជា ៖\n"
+" update - ទៅយកបញ្ជីកញ្ចប់ថ្មី\n"
+" upgrade - ធ្វើឲ្យប្រសើរ\n"
+" install - ដំឡើងកញ្ចប់ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n"
+" remove - យកកញ្ចប់ចេញ\n"
+" source - ទាញយកប័ណ្ណសារប្រភព\n"
+" build-dep - កំណត់រចនាសម្ព័ន្ធភាពអាស្រ័យក្នុងការស្ថាបនាសម្រាប់កញ្ចប់ប្រភព\n"
+" dist-upgrade - ការចែកចាយភាពល្អប្រសើរ សូមមើល apt-get(8)\n"
+" dselect-upgrade - ដាក់ពីក្រោយជម្រើស dselect\n"
+" clean - លុបឯកសារប័ណ្ណសារដែលបានទាញយក\n"
+" autoclean - លុបឯកសារប័ណ្ណសារដែលបានទាញយកចាស់\n"
+" check - ផ្ទៀងផ្ទាត់ថាមិនមានភាពអាស្រ័យដែលខូចទេ\n"
+"\n"
+"ជម្រើស ៖\n"
+" -h អត្ថបទជំនួយនេះ ៖\n"
+" -q ទិន្នផលដែលអាចចុះកំណត់ហេតុបាន - មិនមានទ្រនិចបង្ហាញដំណើរការឡើយ\n"
+" -qq គ្មានលទ្ធផលទេ លើកលែងតែកំហុស\n"
+" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង ឬ ស្រាយប័ណ្ណសារ\n"
+" -s No-act. ធ្វើការក្លែងការរៀបតាមលំដាប់\n"
+" -y សន្មតថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំរំលឹក\n"
+" -f ប៉ុនប៉ងធ្វើការបន្ត ប្រសិនបើការពិនិត្យភាពត្រឹមត្រូវបរាជ័យ\n"
+" -m ប៉ុនប៉ងធ្វើការបន្ត ប្រសិនបើប័ណ្ណសារមិនអាចដាក់ទីតាំងបាន\n"
+" -u បង្ហាញបញ្ជីកញ្ចប់ដែលបានធ្វើឲ្យប្រសើរផងដែរ\n"
+" -b ស្ថាបនាកញ្ចប់ប្រភព បន្ទាប់ពីទៅប្រមូលយកវា\n"
+" -V បង្ហាញលេខកំណែជាអក្សរ\n"
+" -c=? អានឯកសារកំណត់រចនាសម្ព័ន្ធនេះ\n"
+" -o=? កំណត់ជម្រើសកំណត់រចនាសម្ព័ន្ធតាមចិត្តមួយ ឧទ. -o dir::cache=/tmp\n"
+"សូមមើល apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "កំពុងកំណត់រចនាសម្ព័ន្ធ %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "វាយ"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "កំហុសដំណើរការថត %s"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "យក ៖"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "បានដំឡើង %s"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "កំពុងរៀបចំដើម្បីការយកចេញនៃ %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Removing %s"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\99á\9e\80 %s á\9e\85á\9f\81á\9e\89"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9f\85â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8b %sB á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b %s (%sB/s)\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Removed %s"
-msgstr "បានយក %s ចេញ"
+msgid " [Working]"
+msgstr " [កំពុងធ្វើការ]"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "កំពុងរៀបចំយក %s ចេញទាំងស្រុង"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"ផ្លាស់ប្តូរមេឌៀ ៖ សូមបញ្ចូលថាសដែលមានស្លាក\n"
+" '%s'\n"
+"ក្នុងដ្រាយ '%s' ហើយចុចបញ្ចូល\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "បានយក %s ចេញទាំងស្រុង"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "មិនស្គាល់កំណត់ត្រាកញ្ចប់ !"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"ការប្រើប្រាស់ ៖ apt-sortpkgs [ជម្រើស] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs ជាឧបករណ៍ធម្មតាដើម្បីតម្រៀបឯកសារកញ្ចប់ ។ ជម្រើស -s បានប្រើ\n"
+"សម្រាប់ចង្អុលប្រភេទនៃឯកសារអ្វីមួយដែលមាន ។\n"
+"\n"
+"ជម្រើស\n"
+" -h អត្ថបទជំនួយនេះ\n"
+" -s ប្រើការតម្រៀបឯកសារប្រភព\n"
+" -c=? អានឯកសារកំណត់រចនាសម្ព័ន្ធនេះ\n"
+" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. -o dir::cache=/tmp\n"
-#: methods/rred.cc:219
-#, fuzzy
-#| msgid "Could not open file %s"
-msgid "Could not patch file"
-msgstr "មិនអាចបើកឯកសារ %s បានឡើយ"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "ការកំណត់លំនាំដើមមិនល្អ !"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "បរាជ័យក្នុងការបង្កើតបំពង់ IPC សម្រាប់ដំណើរការរង"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "សង្កត់ បញ្ចូល ដើម្បីបន្ត ។"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "បានបិទការតភ្ជាប់មុនពេល"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "កំហុសមួយចំនួនបានកើតឡើងខណៈពេលពន្លាកញ្ចប់ ។ ខ្ញុំនឹងកំណត់រចនាសម្ប័ន្ធ"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "កញ្ចប់ដែលបានដំឡើង ។ នេះប្រហែលជាលទ្ធផលកំហុសស្ទួន"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "ឬ កំហុសដែលបង្កដោយការបាត់បង់ភាពអាស្រ័យ ។ មិនអីទេ គ្រាន់តែជាកំហុស "
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "នៅខាងលើសារនេះគឺសំខាន់ណាស់ ។ សូមជួសជុលពួកវា ហើយរត់ការដំឡើងម្តងទៀត"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "បញ្ចូលព័ត៌មានដែលមានចូលគ្នា"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "ផ្លូវបង្វែរ វែងពេក"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "បរាជ័យក្នុងការប្តូរឈ្មោះ %s ទៅ %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "ឯកសារ %s/%s សរសេរជាន់ពីលើមួយក្នុងកញ្ចប់ %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "មិនអាចអាន %s បានឡើយ"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "ថតព័ត៌មាន និង ពុម្ព ត្រូវការនៅលើប្រព័ន្ធឯកសារដូចគ្នា"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "កំពុងអានបញ្ជីកញ្ចប់"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
#: apt-inst/deb/debfile.cc:50
#, fuzzy, c-format
-#| msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "នេះជាប័ណ្ណសារ DEB មិនត្រឹមត្រូវ វាគ្មានសមាជិក '%s' ឬ '%s'"
msgid "Unparsable control file"
msgstr "ឯកសារត្រួតពិនិត្យដែលមិនអាចញែកបាន"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "កញ្ចប់ %s កំណែ %s មានភាពអាស្រ័យមិនត្រូវគ្នា ៖\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\91á\9e¸á\9e\8fá\9e¶á\9f\86á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Unable to read the cdrom database %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e¢á\9e¶á\9e\93â\80\8bá\9e\98á\9e¼á\9e\9bá\9e\8aá\9f\92á\9e\8bá\9e¶á\9e\93â\80\8bá\9e\91á\9e·á\9e\93á\9f\92á\9e\93á\9e\93á\9f\90á\9e\99â\80\8bâ\80\8bá\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸á\9e\9aá\9f\89á\9e¼á\9e\98â\80\8bâ\80\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "ឈ្មោះកញ្ចប់សរុប ៖ "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"សូមប្រើ apt-cdrom ដើម្បីបង្កើតស៊ីឌី-រ៉ូមនេះ ដែលបានរៀបចំតាម APT ។ apt-get ធ្វើឲ្យទាន់សម័យ មិន"
+"ត្រូវបានប្រើដើម្បីបន្ថែមស៊ីឌី-រ៉ូមថ្មីឡើយ"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " កញ្ចប់ធម្មតា ៖ "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "ស៊ីឌី-រ៉ូមខុស"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " កញ្ចប់និម្មិតសុទ្ធ ៖ "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី-រ៉ូម នៅក្នុង %s បានទេ វាអាចនៅតែប្រើបាន ។"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " កញ្ចប់និម្មិតតែមួយ ៖ "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "រកថាសមិនឃើញ ។"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " កញ្ចប់និម្មិតលាយ ៖ "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "រកឯកសារមិនឃើញ"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " បាត់បង់ ៖ "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "បរាជ័យក្នុងការថ្លែង"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\95á\9f\92á\9e\9fá\9f\81á\9e\84á\9f\97â\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99á\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\96á\9f\81á\9e\9bá\9e\9cá\9f\81á\9e\9bá\9e¶â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\80á\9f\82á\9e\94á\9f\92á\9e\9aá\9f\82â\80\8b"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-#| msgid "Total distinct versions: "
-msgid "Total Distinct Descriptions: "
-msgstr "កំណែផ្សេងៗសរុប ៖ "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI មិនត្រឹមត្រូវ URIS មូលដ្ឋានមិនត្រូវចាប់ផ្តើមជាមួយ // ឡើយ"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "ភាពអាស្រ័យសរុប ៖ "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "កំពុងចូល"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "á\9e\91á\9f\86á\9e\93á\9e¶á\9e\80á\9f\8bá\9e\91á\9f\86á\9e\93á\9e\84 á\9e\80á\9f\86á\9e\8eá\9f\82/á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9fá\9e\9aá\9e»á\9e\94 á\9f\96 "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87á\9e\8aá\9f\82á\9e\9bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\94á\9e\84á\9f\92á\9e á\9e¶á\9e\89â\80\8bá\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99â\80\8b"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-#| msgid "Total ver/file relations: "
-msgid "Total Desc/File relations: "
-msgstr "ទំនាក់ទំនង កំណែ/ឯកសារសរុប ៖ "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "មិនអាចកំណត់ឈ្មោះមូលដ្ឋានបានឡើយ"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "ការផ្គូរផ្គងការផ្ដល់សរុប ៖ "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "ម៉ាស៊ីនបម្រើបានបដិសេធការតភ្ជាប់ ហើយ បាននិយាយ ៖ %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "ខ្សែអក្សរសរុប ៖ "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER បរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "ទំហំកំណែភាពអាស្រ័យសរុប ៖ "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS បានបរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "ទំហំ slack សរុប ៖"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"ម៉ាស៊ីនបម្រើប្រូកស៊ីត្រូវបានបញ្ជាក់ ប៉ុន្តែគ្មានស្គ្រីបចូលទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "ទំហំសរុបដែលទុកសម្រាប់ ៖ "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "ពាក្យបញ្ជាស្គ្រីបចូល '%s' បានបរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "ឯកសារកញ្ចប់ %s នៅខាងក្រៅការធ្វើសមកាលកម្ម ។"
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE បានបរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\8fá\9f\82â\80\8bá\9e\95á\9f\92á\9e\8aá\9e\9bá\9f\8bâ\80\8bá\9e\9bá\9f\86á\9e\93á\9e¶á\9f\86â\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\96á\9e·á\9e\8fâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e¶á\9e\80á\9e\8a"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "á\9e¢á\9e\9fá\9f\8bá\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8b"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "á\9e\9aá\9e\80â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\83á\9e¾á\9e\89"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "á\9e\98á\9f\89á\9e¶á\9e\9fá\9f\8aá\9e¸á\9e\93â\80\8bá\9e\94á\9e\98á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e·á\9e\91â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8b"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b á\9f\96"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "á\9e\80á\9e¶á\9e\9aá\9e¢á\9e¶á\9e\93â\80\8bá\9e\98á\9e¶á\9e\93á\9e\80á\9f\86á\9e á\9e»á\9e\9f"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "á\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\8bá\9e·á\9e\8fá\9e\93á\9f\85â\80\8bá\9e\80á\9f\92á\9e\9aá\9f\85â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e\9fá\9e\98á\9e\80á\9e¶á\9e\9bâ\80\8bá\9e\80á\9e\98á\9f\92á\9e\98 á\9e\8aá\9f\82á\9e\9bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85 x-ref á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9f\81"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "á\9e\86á\9f\92á\9e\9bá\9e¾á\9e\99á\9e\8fá\9e\94â\80\8bá\9e\9fá\9e\8fá\9e·â\80\8bá\9e\94á\9e\8eá\9f\92á\9e\8fá\9f\84á\9f\87á\9e¢á\9e¶á\9e\9fá\9e\93á\9f\92á\9e\93â\80\8bâ\80\8bá\9e¢á\9e\9fá\9f\8bá\9e\85á\9f\86á\9e\8eá\9e»á\9f\87 á\9f\94"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "ការបង្ខូចពិធីការ"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "កញ្ចប់ដែលបានខ្ទាស់ ៖"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "ការសរសេរមានកំហុស"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(រកមិនឃើញ)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "មិនអាចបង្កើតរន្ធបានឡើយ"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " បានដំឡើង ៖ "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "មិនអាចតភ្ជាប់រន្ធទិន្នន័យបានឡើយ អស់ពេលក្នុងការតភ្ជាប់"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(គ្មាន)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "មិនអាចតភ្ជាប់រន្ធអកម្មបានឡើយ ។"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " សាកល្បង ៖ "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo មិនអាចទទួលយករន្ធសម្រាប់ស្តាប់បានឡើយ"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " ខ្ទាស់កញ្ចប់ ៖ "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "មិនអាចចងរន្ធបានបានឡើយ"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " តារាងកំណែ ៖"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "មិនអាចស្ដាប់នៅលើរន្ធបានឡើយ"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "មិនអាចកំណត់ឈ្មោះរបស់រន្ធបានឡើយ"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-#| msgid "%s %s for %s %s compiled on %s %s\n"
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s សម្រាប់ %s %s បានចងក្រងនៅលើ%s %s\n"
-
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"ការប្រើប្រាស់ ៖ apt-cache [options] ពាក្យបញ្ជា\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache គឺជាឧបករណ៍កម្រិតទាបដែលប្រើសម្រាប់រៀបចំប្រព័ន្ធគោលពីររបស់ APT\n"
-"ឯកសារឃ្លាំងសម្ងាត់ និង ព័ត៌មានសំណួរពីពួកវា\n"
-"\n"
-"ពាក្យបញ្ជា\n"
-" add - បន្ថែមឯកសារកញ្ចប់ទៅឃ្លាំងសម្ងាត់ប្រភព\n"
-" gencaches - បង្កើតទាំងកញ្ចប់និងឃ្លាំងសម្ងាត់ប្រភព\n"
-" showpkg - បង្ហាញព័ត៌មានទូទៅខ្លះសម្រាប់កញ្ចប់តែមួយ\n"
-" showsrc - បង្ហាញកំណត់ត្រាប្រភព\n"
-" stats - បង្ហាញស្ថិតិមូលដ្ឋានខ្លះ\n"
-" dump - បង្ហាញឯកសារទាំងមូលក្នុងទ្រង់ទ្រាយសង្ខេប\n"
-" dumpavail - បោះពុម្ពឯកសារដែលមានទៅ stdout\n"
-" unmet - បង្ហាញភាពអាស្រ័យ unmet \n"
-" search - ស្វែងរកកញ្ចប់លំនាំ regex \n"
-" show - បង្ហាញកំណត់ត្រាកញ្ចប់ដែលអាចអានបាន\n"
-" depends - បង្ហាញព័ត៌មានភាពអាស្រ័យកញ្ចប់មិនទាន់ច្នៃ\n"
-" rdepends - បង្ហាញព័ត៌មានភាពអាស្រ័យកញ្ចប់បញ្ច្រាស់\n"
-" pkgnames - រាយឈ្មោះកញ្ចប់ទាំងអស់\n"
-" dotty - បង្កើតកញ្ចប់ក្រាហ្វសម្រាប់ GraphVis\n"
-" xvcg - បង្កើតកញ្ចប់ក្រាហ្វសម្រាប់ xvcg\n"
-" policy - បង្ហាញ ការរៀបចំគោលការណ៍\n"
-"\n"
-"ជម្រើស ៖\n"
-" -h នេះជាអត្ថជំនួយ\n"
-" -p=? ឃ្លាំងសម្ងាត់កញ្ចប់ ។\n"
-" -s=? ឃ្លាំងសម្ងាត់ប្រភព ។\n"
-" -q ទ្រនិចចង្អុលវឌ្ឍនភាព មិនអនុញ្ញាត ។\n"
-" -i បានតែបង្ហាញ ព័ត៌មាន deps ដែលសំខាន់សម្រាប់ពាក្យបញ្ជាដែលខុសគ្នា ។\n"
-" -c=? អានការកំណត់រចនាសម្ព័ន្ធឯកសារនេះ \n"
-" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. eg -o dir::cache=/tmp\n"
-"មើល apt-cache(8) និង apt.conf(5) សម្រាប់ព័ត៌មានបន្ថែមមានក្នុងទំព័រសៀវភៅដៃ ។\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "មិនអាចផ្ញើពាក្យបញ្ជា PORT បានឡើយ"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "សូមផ្ដល់ឈ្មោះឲ្យថាសនេះ ឧទាហរណ៍ដូចជា 'ដេបៀន 2.1r1 ថាសទី ១' ជាដើម"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "មិនស្គាល់អាសយដ្ឋានគ្រួសារ %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "សូមបញ្ចូលថាសក្នុងដ្រាយហើយចុចបញ្ចូល"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT បរាជ័យ ម៉ាស៊ីនបម្រើបាននិយាយ ៖ %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "á\9e\92á\9f\92á\9e\9cá\9e¾á\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\93á\9f\81á\9f\87â\80\8bá\9e\98á\9f\92á\9e\8fá\9e\84â\80\8bá\9e\91á\9f\80á\9e\8fâ\80\8b á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸â\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e¢á\9e\9fá\9f\8bâ\80\8bâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\9fá\9f\86á\9e\8eá\9e»á\9f\86â\80\8bá\9e\9aá\9e\94á\9e\9fá\9f\8bâ\80\8bá\9e¢á\9f\92á\9e\93á\9e\80 á\9f\94"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "á\9e\80á\9e¶á\9e\9aá\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\9aá\9e\93á\9f\92á\9e\92â\80\8bâ\80\8bá\9e\91á\9e·á\9e\93á\9f\92á\9e\93á\9e\93á\9f\90á\9e\94á\9e¶á\9e\93á\9e¢á\9e\9fá\9f\8bá\9e\96á\9f\81á\9e\9bâ\80\8b"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "អាគុយម៉ង់មិនមានគូទេ"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "មិនអាចទទួលយកការតភ្ជាប់បានឡើយ"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"ការប្រើប្រាស់ ៖ ពាក្យបញ្ជា apt-config [ជម្រើស] \n"
-"\n"
-"apt-config ជាឧបករណ៍សាមញ្ញសម្រាប់អានឯកសារកំណត់រចនាសម្ព័ន្ធ APT \n"
-"\n"
-"ពាក្យបញ្ជា ៖\n"
-" shell - របៀបសែល\n"
-" dump - បង្ហាញការកំណត់រចនាសម្ព័ន្ធ\n"
-"\n"
-"ជម្រើស\n"
-" -h អត្ថនទជំនួយនេះ\n"
-" -c=? អានឯកសារការកំណត់រចនាសម្ព័ន្ធនេះ \n"
-" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "បញ្ហាធ្វើឲ្យខូចឯកសារ"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s មិនមែនជាកញ្ចប់ DEB ត្រឹមត្រូវទេ ។"
-
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"ការប្រើប្រាស់ ៖ apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates ជាឧបករណ៍ដើម្បីស្រង់ព័ត៌មានការរចនាសម្ព័ន្ធនិងពុម្ព\n"
-"ពីកញ្ចប់ដេបៀន \n"
-"\n"
-"ជម្រើស ៖ \n"
-" -h អត្ថបទជំនួយ\n"
-" -t កំណត់ថតបណ្ដោះអាសន្ន\n"
-" -c=? អានឯកសារការកំណត់រចនាស្ព័ន្ធនេះ\n"
-" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. eg -o dir::cache=/tmp\n"
-
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "មិនអាចទទួលយកកំណែ debconf ។ តើ debconf បានដំឡើងឬ ?"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "មិនអាចទៅប្រមូលយកឯកសារបានឡើយ ម៉ាស៊ីនបម្រើបាននិយាយ '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "á\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\95á\9f\92á\9e\93á\9f\82á\9e\80â\80\8bá\9e\94á\9e\93á\9f\92á\9e\90á\9f\82á\9e\98â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\9cá\9f\82á\9e\84â\80\8bá\9e\96á\9f\81á\9e\80"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "á\9e\9aá\9e\93á\9f\92á\9e\92â\80\8bá\9e\91á\9e·á\9e\93á\9f\92á\9e\93á\9e\93á\9f\90á\9e\99â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e¢á\9e\9fá\9f\8bâ\80\8bá\9e\96á\9f\81á\9e\9bâ\80\8b"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing directory %s"
-msgstr "កំហុសដំណើរការថត %s"
+msgid "Data transfer failed, server said '%s'"
+msgstr "បរាជ័យក្នុងការផ្ទេរទិន្នន័យ ម៉ាស៊ីនបម្រើបាននិយាយ '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "បញ្ជីផ្នែកបន្ថែមប្រភពវែងពេក"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "សំណួរ"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8bá\9e\94á\9e\8bá\9e\98â\80\8bá\9e\80á\9e\90á\9e¶â\80\8bá\9e\91á\9f\85â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e¶á\9e\8fá\9e·á\9e\80á\9e¶"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e á\9f\85â\80\8b "
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing contents %s"
-msgstr "កំហុសដំណើរការមាតិកា %s"
-
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"ការប្រើប្រាស់ ៖ ពាក្យបញ្ជា apt-ftparchive [ជម្រើស] \n"
-"ពាក្យបញ្ជា ៖ កញ្ចប់ binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" ផ្លូវមាតិកា\n"
-" ផ្លូវផ្សាយចេញ \n"
-" កំណត់រចនាស្ព័ន្ធបង្កើត [groups]\n"
-" កំណត់រចនាសម្ព័ន្ធសំអាត\n"
-"\n"
-"apt-ftparchive បង្កើតឯកសារលិបិក្រមសម្រាប់ប័ណ្ណសារដេបៀន ។ វាគាំទ្ររចនាប័ទ្មនៃការបង្កើតដោយ"
-"ស្វ័យប្រវត្តិ\n"
-"ដើម្បីធ្វើការជំនួស\n"
-" dpkg-scanpackages និង dpkg-scansources\n"
-"\n"
-"apt-ftparchive ដែលបង្កើតឯកសារញ្ចប់ ពីមែកធាង .debs ។ ឯកសារកញ្ចប់មាន\n"
-"មាតិកានៃ វត្ថុបញ្ជាវាលទាំងអស់ ដែលបានមកពីកញ្ចប់និមួយៗដូចជា MD5 hash និង ទំហំឯកសារ ។ ឯកសារ"
-"បដិសេធមិនគាំទ្រ \n"
-"ដើម្បីបង្ខំតម្លៃអាទិភាពនិង សម័យ ។\n"
-"\n"
-"ភាពដូចគ្នានៃ apt-ftparchive បង្កើតឯកសារប្រភពពីមែកធាង .dscs ។\n"
-"ជម្រើសបដិសេធប្រភពអាចត្រូវបានប្រើសម្រាប់បញ្ចាក់ឯកសារបដិសេធ src \n"
-"\n"
-" បញ្ជា'កញ្ចប់' និង 'ប្រភព' ត្រូវតែរត់ជា root \n"
-" ។ BinaryPath ត្រូវចង្អុលទៅកាន់មូលដ្ឋានស្វែងរកហៅខ្លួនឯង ហើយ \n"
-"ឯកសារបដិសេធត្រូវមានទងបដិសេធ ។ ផ្លូវបរិបទត្រូវបានបន្ថែមទៅក្នុងវាលឈ្មោះឯកសារបើវាមាន ។ "
-"ឧទាហរណ៍ ការប្រើប្រាស់ពីប័ណ្ណសារ \n"
-"ដេបៀន ៖\n"
-" apt-ftparchive កញ្ចប់dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"ជម្រើស ៖\n"
-" -h អត្ថបទជំនួយនេះ\n"
-" --md5 Control MD5 ការបបង្កើត\n"
-" -s=? ឯកសារបដិសេធប្រភព\n"
-" -q Quiet\n"
-" -d=? ជ្រើសជម្រើសលាក់ទុកទិន្នន័យ\n"
-" --គ្មាន-delink អនុញ្ញាត delinking របៀបបំបាត់កំហុស\n"
-" --មាតិកា ពិនិត្យការបង្កើតឯកសារមាតិកា\n"
-" -c=? អានឯកសារការកំណត់រចនាសម្ព័ន្ធនេះ\n"
-" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត"
+msgid "Connecting to %s (%s)"
+msgstr "កំពុងតភ្ជាប់ទៅកាន់ %s (%s)"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "គ្មានការជ្រើសដែលផ្គួផ្គង"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP ៖ %s %s]"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:80
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93â\80\8bá\9e\94á\9e¶á\9e\8fá\9f\8bá\9e\94á\9e\84á\9e\96á\9e¸â\80\8bá\9e\80á\9f\92á\9e\9aá\9e»á\9e\98â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b `%s'"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\9aá\9e\93á\9f\92á\9e\92â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s (f=%u t=%u p=%u) á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:86
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB បានខូច, ឯកសារបានប្តូរឈ្មោះទៅជា %s.old ។"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "មិនអាចចាប់ផ្ដើមការតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ។"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:93
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB ចាស់, កំពុងព្យាយាមធ្វើឲ្យ %s ប្រសើរឡើង"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ការតភ្ជាប់បានអស់ពេល"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"ទ្រង់ទ្រាយមូលដ្ឋានទិន្នន័យមិនត្រឹមត្រូវ ។ ប្រសិនបើអ្នកបានធ្វើឲ្យវាប្រសើឡើងពីកំណែចាស់របស់ apt សូមយក"
-"មូលដ្ឋានទិន្នន័យចេញ និងបង្កើតមូលដ្ឋានទិន្នន័យឡើងវិញ ។"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s:%s (%s) បានឡើយ ។"
-#: ftparchive/cachedb.cc:77
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8b DB á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 %s: %s"
+msgid "Connecting to %s"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8fá\9e\97á\9f\92á\9e\87á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\91á\9f\85á\9e\80á\9e¶á\9e\93á\9f\8b %s"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "ប័ណ្ណសារគ្មានកំណត់ត្រាត្រួតពិនិត្យទេ"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "មិនអាចដោះស្រាយ '%s' បានឡើយ"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "មិនអាចយកទស្សន៍ទ្រនិច"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "ការដោះស្រាយភាពបរាជ័យបណ្តោះអាសន្ន '%s'"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:176
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: មិនអាចអានថត %s បានឡើយ\n"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "ការដោះស្រាយអ្វីអាក្រក់ដែលបានកើតឡើង '%s:%s' (%i)"
-#: ftparchive/writer.cc:81
+#: methods/connect.cc:223
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W ៖ មិនអាចថ្លែង %s\n"
+msgid "Unable to connect to %s %s:"
+msgstr "មិនអាចតភ្ជាប់ទៅកាន់ %s %s ៖"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "មិនអាចចូលដំណើរការ keyring ៖ '%s'"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E ៖ បញ្ជីអាគុយម៉ង់ពី Acquire::gpgv::Options too long ។ ចេញ ។"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: កំហុសអនុវត្តលើឯកសារ"
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "កំហុសខាងក្នុង ៖ ហត្ថលេខាល្អ ប៉ុន្តែ មិនអាចកំណត់កូនសោស្នាមម្រាមដៃ ?!"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "បានជួបប្រទះហត្ថលេខាយ៉ាងហោចណាស់មួយ ដែលត្រឹមត្រូវ ។"
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99 %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\8fá\9e·á\9e\94á\9e\8fá\9f\92á\9e\8fá\9e· '%s' á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\95á\9f\92á\9e\91á\9f\80á\9e\84á\9e\95á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e á\9e\8fá\9f\92á\9e\90á\9e\9bá\9f\81á\9e\81á\9e¶ (á\9e\8fá\9e¾ gnupg á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e¬á\9e\93á\9f\85 ?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "á\9e\98á\9f\82á\9e\80â\80\8bá\9e\92á\9e¶á\9e\84 á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "á\9e\98á\9e·á\9e\93á\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bá\9e\80á\9f\86á\9e á\9e»á\9e\9f á\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\94á\9f\92á\9e\9aá\9e\8fá\9e·á\9e\94á\9e\8fá\9f\92á\9e\8fá\9e· gpgv"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "ហត្ថលេខាខាងក្រោមមិនត្រឹមត្រូវ ៖\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "ហត្ថលេខាខាងក្រោមមិនអាចផ្ទៀងផ្ទាត់បានទេ ព្រោះកូនសោសាធារណៈមិនអាចប្រើបាន ៖\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e¾á\9e\80 %s"
+msgid "Couldn't open pipe for %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e¾á\9e\80â\80\8bá\9e\94á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "អាចនកំហុសពីដំណើរការ %s"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "កំពុងរង់ចាំបឋមកថា"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\93â\80\8bá\9e\8fá\9f\86á\9e\8eâ\80\8b %s"
+msgid "Got a single header line over %u chars"
+msgstr "á\9e\99á\9e\80á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\94á\9e\8bá\9e\98á\9e\80á\9e\90á\9e¶â\80\8bá\9e\8fá\9f\82á\9e\98á\9e½á\9e\99â\80\8bâ\80\8b á\9e\8aá\9f\82á\9e\9bá\9e\9bá\9e¾á\9e\9f %u á\9e\8fá\9e½á\9e¢á\9e\80á\9f\92á\9e\9fá\9e\9a"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "ជួរបឋមកថាខូច"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "ម៉ាស៊ីនបម្រើ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "ម៉ាស៊ីនបម្រើ HTTP បានផ្ញើបឋមកថាប្រវែងមាតិកាមិនត្រឹមត្រូវ"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "ម៉ាស៊ីនបម្រើ HTTP បានផ្ញើបឋមកថាជួរមាតិកាមិនត្រឹមត្រូវ"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "ម៉ាស៊ីនបម្រើ HTTP នេះបានខូចជួរគាំទ្រ"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "មិនស្គាល់ទ្រង់ទ្រាយកាលបរិច្ឆេទ"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "ជ្រើសបានបរាជ័យ"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "ការតភ្ជាប់បានអស់ពេល"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារលទ្ធផល"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារ"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "កំហុសក្នុងការសរសេរទៅកាន់ឯកសារ"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់ពីចម្ងាយបានបិទការតភ្ជាប់"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "កំហុសក្នុងការអានពីម៉ាស៊ីនបម្រើ"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "ទិន្នន័យបឋមកថាខូច"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "ការតភ្ជាប់បានបរាជ័យ"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "កំហុសខាងក្នុង"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "មិនអាច mmap ឯកសារទទេបានឡើយ"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\8aá\9e¶á\9e\85á\9f\8b %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8b mmap á\9e\93á\9f\83â\80\8b %lu á\9e\94á\9f\83á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** បានបរាជ័យក្នុងការត %s ទៅ %s"
+msgid "Selection %s not found"
+msgstr "ជម្រើស %s រកមិនឃើញឡើយ"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink កំណត់នៃការវាយ %sB ។\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "មិនបានទទួលស្គាល់ប្រភេទអក្សរសង្ខេប ៖ '%c'"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "ប័ណ្ណសារគ្មានវាលកញ្ចប់"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "កំពុងបើឯកសារកំណត់រចនាសម្ព័ន្ធ %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "បន្ទាត់ %d វែងពេក (អតិបរមា %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s គ្មានធាតុធាតុបញ្ចូលបដិសេធឡើយ\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ ប្លុកចាប់ផ្តើមដោយគ្មានឈ្មោះ ។"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " អ្នកថែទាំ %s គឺ %s មិនមែន %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ ស្លាកដែលបាន Malformed"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s គ្មានធាតុបដិសេធប្រភព\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ តម្លៃឥតបានការនៅក្រៅ"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s គ្មានធាតុបដិសេធគោលពីរដែរ\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់អាចត្រូវបានធ្វើតែនៅលើកម្រិតកំពូលតែប៉ុណ្ណោះ"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\93á\9e»á\9e\84 â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\91á\9e¸á\9e\8fá\9e¶á\9f\86á\9e\84â\80\8bá\9e\9fá\9e\98á\9e¶á\9e\87á\9e·á\9e\80â\80\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\9cá\9e¶á\9e\80á\9f\92á\9e\99á\9e\9fá\9e\98á\9f\92á\9e\96á\9e\93á\9f\92á\9e\92 %s:%u á\9f\96 á\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\9aá\9e½á\9e\98á\9e\94á\9e\89á\9f\92á\9e\85á\9e¼á\9e\9bâ\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\8aá\9e¶á\9e\80á\9f\8bâ\80\8bá\9e\9aá\9e½á\9e\98á\9e\82á\9f\92á\9e\93á\9e¶â\80\8bá\9e\99á\9f\89á\9e¶á\9e\84á\9e\85á\9f\92á\9e\9aá\9e¾á\9e\93"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - បរាជ័យក្នុងការបម្រុងទុកសតិ"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ បានរួមបញ្ចូលពីទីនេះ"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85á\9e\94á\9e¾á\9e\80â\80\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\9cá\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\96á\9e\93á\9f\92á\9e\92 %s:%u á\9f\96 á\9e\9fá\9f\81á\9e\85á\9e\80á\9f\92á\9e\8aá\9e¸â\80\8bá\9e\94á\9e\84á\9f\92á\9e\82á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\98á\9e·á\9e\93á\9e\94á\9e¶á\9e\93á\9e\82á\9e¶á\9f\86á\9e\91á\9f\92á\9e\9a '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "កំហុសវាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការបន្ថែម ដែលនៅខាងចុងឯកសារ"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... កំហុស !"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Malformed បដិសេធ %s បន្ទាត់ %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... ធ្វើរួច"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e¢á\9e¶á\9e\93á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\94á\9e\8aá\9e·á\9e\9fá\9f\81á\9e\92 %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "á\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8bá\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8bá\9e\96á\9e¶á\9e\80á\9f\92á\9e\99á\9e\94á\9e\89á\9f\92á\9e\87á\9e¶ '%c' [from %s] á\9e\98á\9e·á\9e\93á\9e\9fá\9f\92á\9e\82á\9e¶á\9e\9bá\9f\8bá\9e¡á\9e¾á\9e\99 á\9f\94"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "មិនស្គាល់ក្បួនដោះស្រាយការបង្ហាប់ '%s'"
+msgid "Command line option %s is not understood"
+msgstr "មិនយល់ពីជម្រើសបន្ទាត់ពាក្យបញ្ជា %s ឡើយ"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "ទិន្នផលដែលបានបង្ហាប់ %s ត្រូវការកំណត់ការបង្ហាប់"
+msgid "Command line option %s is not boolean"
+msgstr "ជម្រើសបន្ទាត់ពាក្យបញ្ជា %s មិនមែនជាប៊ូលីនទេ"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "បរាជ័យក្នុងការបង្កើត FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "ជម្រើស %s ត្រូវការអាគុយម៉ង់មួយ ។"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "បានបរាជ័យក្នុងការដាក់ជាពីរផ្នែក"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "ជម្រើស %s ៖ ការបញ្ជាក់ធាតុកំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "បង្ហាប់កូន"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "ជម្រើស %s ត្រូវការអាគុយម៉ង់ចំនួនគត់ មិនមែន '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8b %s"
+msgid "Option '%s' is too long"
+msgstr "á\9e\87á\9e\98á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b '%s' á\9e\9cá\9f\82á\9e\84á\9e\96á\9f\81á\9e\80"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "បរាជ័យក្នុងការបង្កើតដំណើរការរង IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "មិនបានយល់អំពីការស្គាល់ %s ឡើយ សូមព្យាយមយក ពិត ឫ មិនពិត ។"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "បរាជ័យក្នុងការប្រតិបត្តិកម្មវិធីបង្ហាប់ "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "ប្រតិបត្តិការមិនត្រឹមត្រូវ %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "កម្មវិធីពន្លា"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "មិនអាចថ្លែង ចំណុចម៉ោន %s បានឡើយ"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO សម្រាប់ដំណើរការរង/ឯកសារ បានបរាជ័យ"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "មិនអាចប្ដូរទៅ %s បានឡើយ"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aá\9e¢á\9e¶á\9e\93â\80\8b á\9e\93á\9f\85á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\82á\9e\8eá\9e\93á\9e¶ MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99á\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\90á\9f\92á\9e\9bá\9f\82á\9e\84 á\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸á\9e\9aá\9f\89á\9e¼á\9e\98"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "á\9e\98á\9e¶á\9e\93á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\8aá\9e¶á\9e\85á\9f\8bá\9e\8fá\9f\86á\9e\8e %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9f\92á\9e\9aá\9e¾á\9e\94á\9f\92á\9e\9aá\9e¶á\9e\9fá\9f\8bâ\80\8bá\9e\80á\9e¶á\9e\9aá\9e\85á\9e¶á\9e\80á\9f\8bá\9e\9fá\9f\84 á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bá\9e\8fá\9f\82á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aá\9e\85á\9e¶á\9e\80á\9f\8bá\9e\9fá\9f\84â\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\8fá\9f\82á\9e¢á\9e¶á\9e\93á\9e\94á\9f\89á\9e»á\9e\8eá\9f\92á\9e\8eá\9f\84á\9f\87 %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "មិនអាចបើកឯកសារចាក់សោ %s បានឡើយ"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex កំហុសការចងក្រង - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "មិនប្រើការចាក់សោ សម្រាប់ nfs ឯកសារចាក់សោដែលបានម៉ោន%s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "កញ្ចប់ខាងក្រោមមានភាពអាស្រ័យដែលខុសគ្នា ៖"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "មិនអាចចាក់សោ %s បានឡើយ"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8b %s á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b"
+msgid "Waited for %s but it wasn't there"
+msgstr "á\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86á\9e\94á\9f\8bâ\80\8b %s á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82 â\80\8bá\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\93á\9f\85á\9e\91á\9e¸á\9e\93á\9f\84á\9f\87"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "á\9e\94á\9f\89á\9e»á\9e\93á\9f\92á\9e\8fá\9f\82â\80\8b %s á\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾â\80\8bá\9e\84"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "á\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\9aá\9e\84â\80\8b %s á\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e\91á\9e½á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\85á\9f\82á\9e\80á\9e\87á\9e¶á\9e\85á\9e\98á\9f\92á\9e\9aá\9f\80á\9e\80â\80\8b á\9f\94"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ប៉ុន្តែវាមិនអាចដំឡើងបានទេ"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "ដំណើរការរង %s បានត្រឡប់ទៅកាន់កូដមានកំហុស (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ប៉ុន្តែវាជាកញ្ចប់និម្មិត"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "ដំណើរការរង %s បានចេញ ដោយមិនរំពឹងទុក "
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ប៉ុន្តែវាមិនបានដំឡើងទេ"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "មិនអាចបើកឯកសារ %s បានឡើយ"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ប៉ុន្តែ វានឹងមិនត្រូវបានដំឡើងទេ"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "អាន, នៅតែមាន %lu ដើម្បីអាន ប៉ុន្តែគ្មានអ្វីនៅសល់"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " ឬ"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "សរសេរ, នៅតែមាន %lu ដើម្បីសរសេរ ប៉ុន្តែមិនអាច"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\90á\9f\92á\9e\98á\9e¸â\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b á\9f\96"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "á\9e\98á\9e¶á\9e\93â\80\8bá\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e·á\9e\91â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\99á\9e\80á\9e\85á\9f\81á\9e\89 á\9f\96"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "á\9e\98á\9e¶á\9e\93á\9e\94á\9e\89á\9f\92á\9e á\9e¶â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\95á\9f\92á\9e\8aá\9e¶á\9e\85á\9f\8bá\9e\8fá\9f\86á\9e\8eâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "កញ្ចប់ខាងក្រោមត្រូវបានយកត្រឡប់មកវិញ ៖"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "មានបញ្ហាក្នុងការធ្វើសមកាលកម្មឯកសារ"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e²á\9f\92á\9e\99á\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾â\80\8bá\9e¡á\9e¾á\9e\84 á\9f\96"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "á\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\91á\9e\91á\9f\81â\80\8b"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "កញ្ចប់ខាងក្រោមនឹងត្រូវបានបន្ទាប ៖"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "ឯកសារឃ្លាំងកញ្ចប់មិនត្រឹមត្រូវ"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86â\80\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98â\80\8bá\9e\93á\9e¹á\9e\84â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\95á\9f\92á\9e\9bá\9e¶á\9e\9fá\9f\8bâ\80\8bâ\80\8bá\9e\94á\9f\92á\9e\8fá\9e¼á\9e\9aâ\80\8b á\9f\96"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\83á\9f\92á\9e\9bá\9e¶á\9f\86á\9e\84á\9e\9fá\9e\98á\9f\92á\9e\84á\9e¶á\9e\8fá\9f\8bâ\80\8bâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\87á\9e¶á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\82á\9f\92á\9e\93á\9e¶â\80\8b"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (ដោយសារតែ %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "APT នេះ មិនគាំទ្រប្រព័ន្ធ ការធ្វើកំណែនេះទេ '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ព្រមាន ៖ កញ្ចប់ដែលចាំបាច់ខាងក្រោមនឹងត្រូវបានយកចេញ ។\n"
-"ការយកចេញនេះមិនត្រូវបានធ្វើទេលុះត្រាតែអ្នកដឹងថាអ្នកកំពុងធ្វើអ្វីឲ្យប្រាកដ !"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "ឃ្លាំងសម្ងាត់កញ្ចប់ត្រូវបានស្ថាបនា់សម្រាប់ស្ថាបត្យករខុសៗគ្នា"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu ត្រូវបានធ្វើឲ្យប្រសើរ %lu ត្រូវបានដំឡើងថ្មី "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "អាស្រ័យ"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ត្រូវបានដំឡើងឡើងវិញ "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "អាស្រ័យជាមុន"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu ត្រូវបានបន្ទាប់ "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "ផ្ដល់យោបល់"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu ដែលត្រូវយកចេញ ហើយ %lu មិនបានធ្វើឲ្យប្រសើរឡើយ ។\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "ផ្តល់អនុសាសន៍"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu មិនបានដំឡើង ឬ យកចេញបានគ្រប់ជ្រុងជ្រោយឡើយ ។\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "ប៉ះទង្គិច"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\80á\9f\82â\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8b..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "á\9e\87á\9f\86á\9e\93á\9e½á\9e\9fâ\80\8b"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " បានបរាជ័យ ។"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "លែងប្រើ"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "មិនអាចកែភាពអាស្រ័យបានឡើយ"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "មិនអាចបង្រួមការកំណត់ភាពប្រសើរបានឡើយ"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "សំខាន់"
+
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "បានទាមទារ"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " ធ្វើរួច"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "គំរូ"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\85á\9e\84á\9f\8bá\9e\9aá\9e\8fá\9f\8b `apt-get -f install' á\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\80á\9f\82â\80\8bá\9e\9cá\9e¶â\80\8bâ\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e\93á\9f\81á\9f\87â\80\8bá\9e á\9e¾á\9e\99 á\9f\94"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "á\9e\9fá\9f\92á\9e\9aá\9f\81á\9e\85á\9e\85á\9e·á\9e\8fá\9f\92á\9e\8f"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "á\9e\97á\9e¶á\9e\96â\80\8bá\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\81á\9e»á\9e\9fâ\80\8bá\9e\82á\9f\92á\9e\93á\9e¶Â á\9f\94 á\9e\96á\9f\92á\9e\99á\9e¶á\9e\99á\9e¶á\9e\98â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e¾ -f á\9f\94"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\90á\9f\82á\9e\98"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "á\9e\96á\9f\92á\9e\9aá\9e\98á\9e¶á\9e\93â\80\8b á\9f\96 á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾á\9e\80á\9e¶á\9e\9aá\9e\95á\9f\92á\9e\91á\9f\80á\9e\84á\9e\95á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bá\9e\97á\9e¶á\9e\96á\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bá\9e\81á\9e¶á\9e\84á\9e\80á\9f\92á\9e\9aá\9f\84á\9e\98á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99 !"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84á\9e\9fá\9f\92á\9e\90á\9e¶á\9e\94á\9e\93á\9e¶â\80\8bá\9e\98á\9f\82á\9e\80á\9e\92á\9e¶á\9e\84á\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "á\9e\94á\9e¶á\9e\93á\9e\94á\9e\8aá\9e·á\9e\9fá\9f\81á\9e\92â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\96á\9f\92á\9e\9aá\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\95á\9f\92á\9e\91á\9f\80á\9e\84á\9e\95á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9c á\9f\94\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bá\9e\9fá\9e¶á\9e\80á\9e\9bá\9f\92á\9e\94á\9e\84â\80\8b"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\91á\9e¶á\9f\86á\9e\84á\9e\93á\9f\81á\9f\87 â\80\8bá\9e\8aá\9f\84á\9e\99á\9e\82á\9f\92á\9e\98á\9e¶á\9e\93á\9e\80á\9e¶á\9e\9aá\9e\96á\9e·á\9e\93á\9e·á\9e\8fá\9f\92á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶á\9e\80á\9f\8b [y/N] ? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "á\9e\80á\9e¶á\9e\9aá\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8b"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "មិនអាចផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់មួយចំនួនបានឡើយ"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "បញ្ចូលព័ត៌មានដែលមានចូលគ្នា"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "មានបញ្ហា ហើយ -y ត្រូវបានប្រើដោយគ្មាន --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "បរាជ័យក្នុងការបើក %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "កំហុសខាងក្នុង កញ្ចប់ដំឡើងត្រូវបានហៅជាមួយកញ្ចប់ដែលខូច !"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "បរាជ័យក្នុងការសរសេរឯកសារ %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "កញ្ចប់ ត្រូវការឲ្យយកចេញ ប៉ុន្តែមិនអនុញ្ញាតឲ្យយកចេញឡើយ ។"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (1) បានឡើយ"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "កំហុសខាងក្នុង ការរៀបតាមលំដាប់មិនបានបញ្ចប់ឡើយ"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "មិនអាចញែកឯកសារកញ្ចប់ %s (2) បានឡើយ"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "មិនអាចចាក់សោថតទាញយកបានឡើយ"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "បន្ទាត់ Malformed %lu ក្នុងញ្ជីប្រភព %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "យី អីក៏ចម្លែងម្លេះ.. ទំហំមិនដូចគ្នាឡើយ ។ សូមផ្ញើអ៊ីមែលទៅ apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "បន្ទាត់ Malformed %lu ក្នុងបញ្ជីប្រភព %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\80á\9e¶á\9e\9aâ\80\8bâ\80\8bá\9e\99á\9e\80â\80\8b %sB/%sB á\9e\93á\9f\83â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9a á\9f\94â\80\8b\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b Malformed %lu á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (URI á\9e\89á\9f\82á\9e\80â\80\8b)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\80á\9e¶á\9e\9aá\9e\99á\9e\80â\80\8b %sB á\9e\93á\9f\83â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9a á\9f\94\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8b Malformed %lu á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (dist á\9e\9bá\9f\82á\9e\84á\9e\94á\9f\92á\9e\9aá\9e¾)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\96á\9e¸â\80\8bá\9e\96á\9e\93á\9f\92á\9e\9bá\9e¶â\80\8b %sB á\9e\93á\9f\83â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\94á\9e\93á\9f\92á\9e\90á\9f\82á\9e\98â\80\8bâ\80\8bá\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\90á\9e¶á\9e\9fâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9f\92á\9e\9aá\9e¾Â á\9f\94\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8b Malformed %lu á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (dist á\9e\89á\9f\82á\9e\80â\80\8b)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\96á\9e¸â\80\8bá\9e\96á\9e\93á\9f\92á\9e\9bá\9e¶â\80\8b %sB á\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\90á\9e¶á\9e\9fá\9e\93á\9e¹á\9e\84â\80\8bâ\80\8bá\9e\91á\9f\86á\9e\93á\9f\81á\9e\9a á\9f\94 \n"
+msgid "Opening %s"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\94á\9e¾á\9e\80â\80\8b %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bá\9e\91á\9f\86á\9e á\9f\86â\80\8bá\9e\91á\9f\86á\9e\93á\9f\81á\9e\9aâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b %s á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99"
+msgid "Line %u too long in source list %s."
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b %u á\9e\98á\9e¶á\9e\93â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9cá\9f\82á\9e\84â\80\8bá\9e\9cá\9f\82á\9e\84á\9e\96á\9f\81á\9e\80á\9e\93á\9f\85â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s á\9f\94"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "á\9e¢á\9f\92á\9e\93á\9e\80â\80\8bá\9e\82á\9f\92á\9e\98á\9e¶á\9e\93â\80\8bá\9e\91á\9f\86á\9e á\9f\86â\80\8bâ\80\8bá\9e\91á\9f\86á\9e\93á\9f\81á\9e\9aâ\80\8bá\9e\82á\9f\92á\9e\9aá\9e\94á\9f\8bá\9e\82á\9f\92á\9e\9aá\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bâ\80\8b %s á\9e¡á\9e¾á\9e\99 á\9f\94"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "á\9e\94á\9e\93á\9f\92á\9e\91á\9e¶á\9e\8fá\9f\8bâ\80\8b Malformed %u á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e\97á\9f\81á\9e\91â\80\8b)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "បានបញ្ជាក់តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែនេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "ប្រភេទ '%s' មិនស្គាល់នៅលើបន្ទាត់ %u ក្នុងបញ្ជីប្រភព %s ឡើយ"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "បាទ/ចាស ធ្វើដូចដែលខ្ញុំនិយាយ !"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "បន្ទាត់ Malformed %u ក្នុងបញ្ជីប្រភព %s (លេខសម្គាល់ក្រុមហ៊ុនលក់)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"អ្នកប្រហែលជាធ្វើអ្វីមួយដែលអាចបង្ករឲ្យមានមហន្ដរាយ ។\n"
-"ដើម្បីបន្ត វាយក្នុងឃ្លា '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "បោះបង់ ។"
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "តើអ្នកចង់បន្តឬ [បាទ ចាស/ទេ] ? "
+"ការរត់ការដំឡើងនេះ នឹងទាមទារឲ្យយកកញ្ចប់ចាំបាច់ %s បណ្ដោះអាសន្ន ដោយសារ រង្វិល ការប៉ះទង្គិច/"
+"ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នកពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::"
+"Force-LoopBreak សកម្ម ។"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "បរាជ័យក្នុងការទៅប្រមូលយក %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "ឯកសារមួយចំនួនបានបរាជ័យក្នុងការទាញយក"
+msgid "Index file type '%s' is not supported"
+msgstr "ប្រភេទឯកសារលិបិក្រម '%s' មិនត្រូវបានគាំទ្រ"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "បានបញ្ចប់ការទាញយក ហើយតែក្នុងរបៀបទាញយកប៉ុណ្ណោះ"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ ខ្ញុំមិនអាចរកប័ណ្ណសារសម្រាប់វាបានទេ ។"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"á\9e¢á\9e\93á\9e»á\9e\89á\9f\92á\9e\89á\9e¶á\9e\8fâ\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\91á\9f\85â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e½á\9e\99â\80\8bá\9e\85á\9f\86á\9e\93á\9e½á\9e\93â\80\8b á\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bâ\80\8bá\9e\87á\9e¶â\80\8bá\9e\9aá\9e\8fá\9f\8bâ\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\9fá\9e\98á\9f\90á\9e\99 apt-get á\9e¬ á\9e\96á\9f\92á\9e\99á\9e¶á\9e\99á\9e¶á\9e\98á\9e\94á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99 --"
-"fix- ដែលបាត់ឬ់ ?"
+"á\9e\80á\9f\86á\9e á\9e»á\9e\9f pkgProblemResolver::á\9e\8aá\9f\84á\9f\87á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\9fá\9e\89á\9f\92á\9e\89á\9e¶á\9e\94á\9e\89á\9f\92á\9e\88á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\94á\9e\84á\9f\92á\9e\80á\9e¾á\9e\8f á\9e\93á\9f\81á\9f\87â\80\8bá\9e\94á\9f\92á\9e\9aá\9e á\9f\82á\9e\9bá\9e\87á\9e¶ á\9e\94á\9e\84á\9f\92á\9e\80á\9e\8aá\9f\84á\9e\99á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b"
+"ដែលបានទុក ។"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix- ដែលបាត់ និង ស្វបមេឌៀដែលមិនបានគាំទ្រនៅពេលបច្ចុប្បន្ន"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "មិនអាចកែបញ្ហាបានទេេ អ្កបានទុកកញ្ចប់ដែលខូច ។។"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "មិនអាចកែកញ្ចប់ដែលបាត់បង់បានឡើយ ។"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "រាយបញ្ជីថត %spartial គឺបាត់បង់ ។"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "កំពុងបោះបង់ការដំឡើង ។"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "ថតប័ណ្ណសារ %spartial គឺបាត់បង់ ។"
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "á\9e\85á\9f\86á\9e\8eá\9e¶á\9f\86 á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b %s á\9e\87á\9f\86á\9e\93á\9e½á\9e\9fâ\80\8b %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\91á\9f\85â\80\8bá\9e\99á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a %li á\9e\93á\9f\83 %li (á\9e\93á\9f\85á\9e\9fá\9e\9bá\9f\8b %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9f\86á\9e\9bá\9e\84â\80\8b %s á\9e\9cá\9e¶â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\9aá\9e½á\9e\85á\9e\9aá\9e¶á\9e\9bá\9f\8bâ\80\8b á\9e á\9e¾á\9e\99â\80\8bá\9e\97á\9e¶á\9e\96â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾á\9e²á\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾á\9e\9aâ\80\8bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bâ\80\8bâ\80\8b á\9f\94\n"
+msgid "Retrieving file %li of %li"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\91á\9f\85á\9e\99á\9e\80â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9a %li á\9e\93á\9f\83 %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "á\9e\98á\9e·á\9e\93á\9e\91á\9e¶á\9e\93á\9f\8bá\9e\94á\9e¶á\9e\93á\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\91á\9f\81â\80\8b á\9e\8aá\9e¼á\9e\85á\9f\92á\9e\93á\9f\81á\9f\87 á\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\99á\9e\80á\9e\85á\9f\81á\9e\89á\9e¡á\9e¾á\9e\99 \n"
+msgid "The method driver %s could not be found."
+msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85â\80\8bá\9e\9aá\9e\80á\9e\83á\9e¾á\9e\89â\80\8bá\9e\80á\9e\98á\9f\92á\9e\98á\9e\9cá\9e·á\9e\92á\9e¸â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶â\80\8bá\9e\9cá\9e·á\9e\92á\9e¸á\9e\9fá\9e¶á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9a %s á\9e¡á\9e¾á\9e\99 á\9f\94"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\87á\9e¶â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\93á\9e·á\9e\98á\9f\92á\9e\98á\9e·á\9e\8fâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\8fá\9e\9bá\9f\8bâ\80\8bá\9e\8aá\9f\84á\9e\99â\80\8b á\9f\96\n"
+msgid "Method %s did not start correctly"
+msgstr "á\9e\9cá\9e·á\9e\92á\9e¸á\9e\9fá\9e¶á\9e\9fá\9f\92á\9e\8fá\9f\92á\9e\9aâ\80\8b %s á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\85á\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\95á\9f\92á\9e\8fá\9e¾á\9e\98â\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¹á\9e\98á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bá\9e\91á\9f\81â\80\8b"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [បានដំឡើង]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "សូមបញ្ចូលស្លាកឌីស ៖ '%s' ក្នុងដ្រាយ '%s' ហើយសង្កត់ចូល ។"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "អ្នកគួរតែជ្រើសយកមួយឲ្យច្បាស់ដើម្បីដំឡើង ។"
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "មិនគាំទ្រប្រព័ន្ធកញ្ចប់'%s' ឡើយ"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "មិនអាចកំណត់ប្រភេទប្រព័ន្ធកញ្ចប់ដែលសមរម្យបានឡើយ"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "មិនអាចថ្លែង %s បានឡើយ ។"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "ទោះយ៉ាងណាក៏ដោយ កញ្ចប់ខាងក្រោមជំនួសវា ៖"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួននៅក្នុង sources.list របស់អ្នក"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "បញ្ជីកញ្ចប់ ឬ ឯកសារស្ថានភាពមិនអាចត្រូវបានញែក ឬ ត្រូវបានបើកបានឡើយ ។"
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "អ្នកប្រហែលជាចង់ភាពទាន់សម័យ apt-get ដើម្បីកែបញ្ហាទាំងនេះ"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "កំណត់ត្រាមិនត្រឹមត្រូវនៅក្នុងឯកសារចំណង់ចំណូលចិត្ត មិនមានបឋមកថាកញ្ចប់ទេ"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "មិនបានយល់ពីប្រភេទម្ជុល %s ឡើយ"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "គ្មានអទិភាព (ឬ សូន្យ) បានបញ្ជាក់សម្រាប់ម្ជុលទេ"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "ឃ្លាំងសម្ងាត់មិនត្រូវគ្នានឹង ប្រព័ន្ធ ធ្វើកំណែ"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8b %s á\9e\98á\9e·á\9e\93á\9e\98á\9e¶á\9e\93â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84á\9e\9fá\9e¶á\9e\80á\9e\9bá\9f\92á\9e\94á\9e\84á\9e¡á\9e¾á\9e\99"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\80á\9e¾á\9e\8fâ\80\8bá\9e¡á\9e¾á\9e\84â\80\8bâ\80\8b á\9e\81á\9e\8eá\9f\88â\80\8bá\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\90á\9f\92á\9e\98á\9e¸â\80\8b)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "á\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85á\9e\92á\9f\92á\9e\9cá\9e¾á\9e\80á\9e¶á\9e\9aá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s á\9e¡á\9e¾á\9e\84á\9e\9cá\9e·á\9e\89á\9e\94á\9e¶á\9e\93á\9e\91á\9f\81 á\9e\9cá\9e¶â\80\8bá\9e\98á\9e·á\9e\93á\9e¢á\9e¶á\9e\85á\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e¶á\9e\89á\9e\99á\9e\80á\9e\94á\9e¶á\9e\93á\9e¡á\9e¾á\9e\99 á\9f\94\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e¾â\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9f¡â\80\8b)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ជាកំណែដែលថ្មីបំផុតរួចទៅហើយ ។\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (ប្រើកញ្ចប់២)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "á\9e\9aá\9e\80â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\83á\9e¾á\9e\89â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\85á\9f\81á\9e\89â\80\8bá\9e\95á\9f\92á\9e\9fá\9e¶á\9e\99â\80\8b '%s' á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8b '%s' á\9e¡á\9e¾á\9e\99"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\80á\9f\86á\9e\8eá\9f\82â\80\8bâ\80\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\90á\9f\92á\9e\98á\9e¸â\80\8bá\9f¡)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "á\9e\9aá\9e\80â\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\83á\9e¾á\9e\89â\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8b '%s' á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b '%s'"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93á\9e\80á\9e¾á\9e\8fâ\80\8bá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\80á\9f\86á\9e\8eá\9f\82á\9f¡á\9e\90á\9f\92á\9e\98á\9e¸â\80\8b)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "á\9e\94á\9e¶á\9e\93á\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8bá\9e\80á\9f\86á\9e\8eá\9f\82â\80\8b %s (%s) á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "á\9e\80á\9f\86á\9e á\9e»á\9e\9fâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\80á\9e¾á\9e\8fá\9e¡á\9e¾á\9e\84â\80\8b á\9e\81á\9e\8eá\9f\88á\9e\96á\9f\81á\9e\9bâ\80\8bá\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\8aá\9f\86á\9e\8eá\9e¾á\9e\9aá\9e\80á\9e¶á\9e\9aâ\80\8b %s (á\9e\94á\9f\92á\9e\9aá\9e¾á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9f£)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "ពាក្យបញ្ជាដែលធ្វើឲ្យទាន់សម័យគ្មានអាគុយម៉ង់ទេ"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (កំណែ២ថ្មី)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "មិនអាចចាក់សោថតបញ្ជីបានឡើយ"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"ឯកសារលិបិក្រមមួយចំនួនបានបរាជ័យក្នុងការទាញយក ពួកវាត្រូវបានមិនអើពើ ឬ ប្រើឯកសារចាស់ជំនួសវិញ ។"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "អស្ចារ្យ អ្នកមានឈ្មោះកញ្ចប់លើសចំនួន APT នេះឆបគ្នា ។"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "អស្ចារ្យ អ្នកមានកំណែលើសចំនួន APT នេះឆបគ្នា ។"
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-#| msgid "The following NEW packages will be installed:"
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "កញ្ចប់ថ្មីខាងក្រោមនឹងត្រូវបានដំឡើង ៖"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "អស្ចារ្យ អ្នកមានកំណែលើសចំនួន APT នេះឆបគ្នា ។"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "អស្ចារ្យ, អ្នកមានភាពអាស្រ័យលើសចំនួន APT នេះឆបគ្នា ។"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "ព័ត៌មានដូចតទៅនេះ អាចជួយដោះស្រាយស្ថានភាពបាន ៖"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងដំណើរការ%s (ផ្តល់ឯកសារប្រមូលផ្តុំ)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-#| msgid "Internal error, problem resolver broke stuff"
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "កំហុសខាងក្នុង អ្នកដោះស្រាយបញ្ហាបានធ្វើឲ្យខូចឧបករណ៍"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "កញ្ចប់ %s %s រកមិនឃើញខណៈពេលកំពុងដំណើរការភាពអាស្រ័យឯកសារ"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "កំហុសខាងក្នុង ការធ្វើឲ្យប្រសើរទាំងអស់បានធ្វើឲ្យឧបករណ៍ខូច"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "មិនអាចថ្លែង បញ្ជីកញ្ចប់ប្រភពចប់ បានឡើយ %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-#| msgid "Couldn't find package %s"
-msgid "Couldn't find task %s"
-msgstr "មិនអាចរកកញ្ចប់ %s បានទេ"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "ការផ្ដល់ឯកសារប្រមូលផ្ដុំ"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "មិនអាចរកកញ្ចប់ %s បានទេ"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO កំហុសក្នុងការររក្សាទុកឃ្លាំងសម្ងាត់ប្រភព"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "á\9e\85á\9f\86á\9e\8eá\9e¶á\9f\86 á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\87á\9f\92á\9e\9aá\9e¾á\9e\9fâ\80\8b %s á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b regex '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "á\9e\94á\9f\92á\9e\8fá\9e¼á\9e\9aâ\80\8bá\9e\88á\9f\92á\9e\98á\9f\84á\9f\87â\80\8bá\9e\94á\9e¶á\9e\93á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8b, %s (%s -> %s) á\9f\94"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-#| msgid "but %s is to be installed"
-msgid "%s set to manual installed.\n"
-msgstr "ប៉ុន្តែ %s នឹងត្រូវបានដំឡើង"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum មិនផ្គួផ្គង"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "អ្នកប្រហែលជាចង់រត់ `apt-get -f install' ដើម្បីកែពួកវាទាំងនេះ ៖"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum មិនផ្គួផ្គង"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "គ្មានកូនសោសាធារណៈអាចរកបានក្នុងកូនសោ IDs ខាងក្រោមនេះទេ ៖\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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-get -f install' ដោយគ្មានកញ្ចប់ (ឬ បញ្ជាក់ដំណោះស្រាយ) ។"
+"ខ្ញុំមិនអាចរកទីតាំងឯកសារសម្រាប់កញ្ចប់ %s បានទេ ។ មានន័យថាអ្នកត្រូវការជួសជុលកញ្ចប់នេះដោយដៃ ។ "
+"(ដោយសារបាត់ស្ថាបត្យកម្ម)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"មិនអាចដំឡើងកញ្ចប់មួយចំនួនបានឡើយ ។ នេះមានន័យថាអ្នក\n"
-"បានស្នើរស្ថានភាពដែលមិនអាចធ្វើបានមួយ ឬ ប្រសិនបើអ្នកកំពុងប្រើការចែកចាយពុំមានលំនឹងនោះ កញ្ចប់"
-"ដែលបានទាមទារនឹងមិនទាន់បានបង្កើតឡើយ\n"
-" ឬ បានយកចេញពីការមកដល់ ។"
+"ខ្ញុំមិនអាចរកទីតាំងឯកសារសម្រាប់កញ្ចប់ %s បានទេ ។ មានន័យថាអ្នកត្រូវការជួសជុលកញ្ចប់នេះដោយដៃ ។"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "កញ្ចប់ឯកសារលិបិក្រមត្រូវបានខូច ។ គ្មានឈ្មោះឯកសារ ៖ វាលសម្រាប់កញ្ចប់នេះទេ %s ។"
+
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "ទំហំមិនបានផ្គួផ្គង"
+
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "ប្លុកក្រុមហ៊ុនលក់ %s គ្មានស្នាមផ្តិតម្រាមដៃ"
+
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"ចាប់តាំងពីអ្នកបានស្នើរប្រតិបត្តិការតែមួយមក វាទំនងហាក់ដូចជា\n"
-"កញ្ចប់ដែលមិនអាចដំឡើងបានដោយងាយ ហើយនិងការប្រឆាំងនឹងរបាយការណ៍កំហុស\n"
-"កញ្ចប់នោះ គួរតែត្រូវបានបរាជ័យ ។"
+"ការប្រើប្រាស់ចំណុចម៉ោន ស៊ីឌី-រ៉ូម %s\n"
+"កំពុងម៉ោនស៊ីឌី-រ៉ូម\n"
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\81á\9e¼á\9e\85â\80\8b"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾á\9e¢á\9e\8fá\9f\92á\9e\8fá\9e\9fá\9e\89á\9f\92á\9e\89á\9e¶á\9e\8eá\9e\93á\9e¶â\80\8b.. "
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "កញ្ចប់បន្ថែមដូចតទៅនេះ នឹងត្រូវបានដំឡើង ៖"
+#: apt-pkg/cdrom.cc:563
+#, c-format
+msgid "Stored label: %s\n"
+msgstr "បានទុកស្លាក ៖ %s \n"
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "កញ្ចប់ដែលបានផ្ដល់យោបល់ ៖"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "មិនកំពុងម៉ោន ស៊ីឌី-រ៉ូម ទេ..."
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "កញ្ចប់ដែលបានផ្ដល់អនុសាសន៍ ៖"
+#: apt-pkg/cdrom.cc:590
+#, c-format
+msgid "Using CD-ROM mount point %s\n"
+msgstr "ប្រើប្រាស់ចំណុចម៉ោន ស៊ីឌី-រ៉ូម %s\n"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\82á\9e\8eá\9e\93á\9e¶â\80\8bá\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\92á\9f\92á\9e\9cá\9e¾â\80\8bá\9e²á\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e¾á\9e\9a... "
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "á\9e\80á\9e¶á\9e\9aá\9e\98á\9e·á\9e\93á\9e\98á\9f\89á\9f\84á\9e\93â\80\8b á\9e\9fá\9f\8aá\9e¸á\9e\8cá\9e¸-á\9e\9aá\9f\89á\9e¼á\9e\98â\80\8b\n"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "á\9e\92á\9f\92á\9e\9cá\9e¾á\9e\9aá\9e½á\9e\85â\80\8b"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9e\84á\9f\8bá\9e\85á\9e¶á\9f\86á\9e\8cá\9e¸á\9e\9fâ\80\8b...\n"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "កំហុសខាងក្នុង អ្នកដោះស្រាយបញ្ហាបានធ្វើឲ្យខូចឧបករណ៍"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "កំពុងម៉ោន ស៊ីឌី-រ៉ូម...\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "á\9e\99á\9f\89á\9e¶á\9e\84á\9e á\9f\84á\9e\85á\9e\8eá\9e¶á\9e\9fá\9f\8bâ\80\8bá\9e\8fá\9f\92á\9e\9aá\9e¼á\9e\9câ\80\8bâ\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶á\9e\80á\9f\8bâ\80\8bâ\80\8bá\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8bâ\80\8bá\9e\98á\9e½á\9e\99 â\80\8bá\9e\8aá\9e¾á\9e\98á\9f\92á\9e\94á\9e¸â\80\8bá\9e\91á\9f\85â\80\8bâ\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9fá\9f\92á\9e\80á\9f\81á\9e\93â\80\8bá\9e\8cá\9e¸á\9e\9fâ\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8bâ\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\9bá\9e·á\9e\94á\9e·á\9e\80á\9f\92á\9e\9aá\9e\98â\80\8b..\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "មិនអាចរកកញ្ចប់ប្រភពសម្រាប់ %s បានឡើយ"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "បានរកឃើញ លិបិក្រមកញ្ចប់ %i លិបិក្រមប្រភព%i និង ហត្ថលេខា %i \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9f\86á\9e\9bá\9e\84â\80\8bá\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9e¶á\9e\89á\9e\99á\9e\80â\80\8bá\9e\9aá\9e½á\9e\85â\80\8b '%s'\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "á\9e\94á\9e¶á\9e\93á\9e\91á\9e»á\9e\80â\80\8bá\9e\9fá\9f\92á\9e\9bá\9e¶á\9e\80 á\9f\96 %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "អ្នកពុំមានទំហំទំនេរគ្រប់គ្រាន់ទេនៅក្នុង %s ឡើយ"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាមម្ដងទៀត ។\n"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "ត្រូវការយក %sB/%sB នៃប័ណ្ណសារប្រភព ។\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"ឌីសនេះត្រូវបានហៅ ៖ \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "ត្រូវការយក %sB នៃប័ណ្ណសារប្រភព ។\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "កំពុងចម្លងបញ្ជីកញ្ចប់..."
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "ទៅប្រមូលប្រភព %s\n"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "កំពុងសរសេរបញ្ជីប្រភពថ្មី\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aá\9e\91á\9f\85á\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bá\9e\99á\9e\80â\80\8bá\9e\94á\9f\90á\9e\8eá\9f\92á\9e\8eá\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\98á\9e½á\9e\99á\9e\85á\9f\86á\9e\93á\9e½á\9e\93 á\9f\94"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "á\9e\92á\9e¶á\9e\8fá\9e»á\9e\94á\9e\89á\9f\92á\9e\85á\9e¼á\9e\9bâ\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¸á\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8bâ\80\8bá\9e\8cá\9e¸á\9e\9fâ\80\8bá\9e\93á\9f\81á\9f\87á\9e\82á\9eºÂ á\9f\96\n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\9aá\9f\86á\9e\9bá\9e\84â\80\8bá\9e\80á\9e¶á\9e\9aá\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99â\80\8bá\9e\93á\9f\83á\9e\94á\9f\92á\9e\9aá\9e\97á\9e\96â\80\8bá\9e\8aá\9f\82á\9e\9bá\9e\94á\9e¶á\9e\93á\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99á\9e\9aá\9e½á\9e\85â\80\8bá\9e\93á\9f\85á\9e\80á\9f\92á\9e\93á\9e»á\9e\84 %s\n"
+msgid "Wrote %i records.\n"
+msgstr "á\9e\94á\9e¶á\9e\93á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9a %i á\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\8fá\9f\92á\9e\9aá\9e¶Â á\9f\94\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "á\9e\96á\9e¶á\9e\80á\9f\92á\9e\99â\80\8bá\9e\94á\9e\89á\9f\92á\9e\87á\9e¶â\80\8bá\9e\9fá\9f\92á\9e\9aá\9e¶á\9e\99 '%s' á\9e\94á\9e¶á\9e\93â\80\8bá\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8b á\9f\94\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "á\9e\94á\9e¶á\9e\93á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9a %i á\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\8fá\9f\92á\9e\9aá\9e¶â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99â\80\8b %i á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\94á\9e¶á\9e\8fá\9f\8bá\9e\94á\9e\84á\9f\8b á\9f\94\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "á\9e\96á\9e·á\9e\93á\9e·á\9e\8fá\9f\92á\9e\99â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\9fá\9e·á\9e\93â\80\8bá\9e\94á\9e¾á\9e\80á\9e\89á\9f\92á\9e\85á\9e\94á\9f\8b 'dpkg-dev' á\9e\98á\9e·á\9e\93â\80\8bá\9e\91á\9e¶á\9e\93á\9f\8bâ\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84â\80\8b á\9f\94\n"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "á\9e\94á\9e¶á\9e\93á\9e\9fá\9e\9aá\9e\9fá\9f\81á\9e\9aâ\80\8b %i á\9e\80á\9f\86á\9e\8eá\9e\8fá\9f\8bá\9e\8fá\9f\92á\9e\9aá\9e¶â\80\8bá\9e\87á\9e¶á\9e\98á\9e½á\9e\99á\9e½á\9e\99â\80\8b %i á\9e¯á\9e\80á\9e\9fá\9e¶á\9e\9aâ\80\8bá\9e\8aá\9f\82á\9e\9bâ\80\8bá\9e\98á\9e·á\9e\93â\80\8bá\9e\94á\9e¶á\9e\93â\80\8bá\9e\95á\9f\92á\9e\82á\9e½á\9e\95á\9f\92á\9e\82á\9e\84â\80\8b\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "សាងសងពាក្យបញ្ជា '%s' បានបរាជ័យ ។\n"
-
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "ដំណើរការកូនបានបរាជ័យ"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "បានសរសេរ %i កំណត់ត្រាជាមួយ %i ឯកសារដែលបាត់បង់ និង %i ឯកសារដែលមិនបានផ្គួផ្គង \n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "ត្រូវតែបញ្ជាក់យ៉ាងហោចណាស់មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "រាយបញ្ជីថត %spartial គឺបាត់បង់ ។"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "á\9e\98á\9e·á\9e\93â\80\8bá\9e¢á\9e¶á\9e\85â\80\8bá\9e\9fá\9e¶á\9e\84á\9e\9fá\9e\84á\9f\8bâ\80\8bâ\80\8bá\9e\96á\9f\90á\9e\8fá\9f\8cá\9e\98á\9e¶á\9e\93â\80\8bá\9e\97á\9e¶á\9e\96á\9e¢á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99â\80\8bá\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s"
+msgid "Preparing %s"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84á\9e\9aá\9f\80á\9e\94á\9e\85á\9f\86â\80\8b %s"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s មិនមានភាពអាស្រ័យស្ថាបនាឡើយ ។\n"
+msgid "Unpacking %s"
+msgstr "កំពុងស្រាយ %s"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%s ភាពអស្រ័យសម្រាប់ %s មិនអាចធ្វើឲ្យពេញចិត្ត ព្រោះរក %s កញ្ចប់មិនឃើញ "
+msgid "Preparing to configure %s"
+msgstr "កំពុងរៀបចំកំណត់រចនាសម្ព័ន្ធ %s"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាចតម្រូវចិត្តបានទេ ព្រោះ មិនមានកំណែនៃកញ្ចប់ %s ដែលអាចតម្រូវចិត្ត"
-"តម្រូវការកំណែបានឡើយ"
+msgid "Configuring %s"
+msgstr "កំពុងកំណត់រចនាសម្ព័ន្ធ %s"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "បរាជ័យក្នុងការតម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "កំហុសដំណើរការថត %s"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "á\9e\94á\9e\9aá\9e¶á\9e\87á\9f\90á\9e\99â\80\8bá\9e\80á\9f\92á\9e\93á\9e»á\9e\84á\9e\80á\9e¶á\9e\9aâ\80\8bá\9e\8fá\9e\98á\9f\92á\9e\9aá\9e¼á\9e\9cá\9e\85á\9e·á\9e\8fá\9f\92á\9e\8fá\9e\97á\9e¶á\9e\96á\9e¢á\9e¶á\9e\9fá\9f\92á\9e\9aá\9f\90á\9e\99 %s á\9e\9fá\9e\98á\9f\92á\9e\9aá\9e¶á\9e\94á\9f\8b %s: %s"
+msgid "Installed %s"
+msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\8aá\9f\86á\9e¡á\9e¾á\9e\84 %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "ភាពអាស្រ័យដែលបង្កើត %s មិនអាចបំពេញសេចក្ដីត្រូវការបានទេ ។"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "បានបរាជ័យក្នុងការដំណើរការបង្កើតភាពអាស្រ័យ"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "ម៉ូឌុលដែលគាំទ្រ ៖ "
-
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get គឺជាចំណុចប្រទាក់បន្ទាត់ពាក្យបញ្ជាសាមញ្ញមួយ សម្រាប់ធ្វើការទាញយក និង\n"
-"ដំឡើងកញ្ចប់ ។ ជាញឹកញាប់បំផុត គឺប្រើពាក្យបញ្ជាដើម្បីធ្វើឲ្យទាន់សម័យ\n"
-"និង ដំឡើង ។\n"
-"\n"
-"ពាក្យបញ្ជា ៖\n"
-" update - ទៅយកបញ្ជីកញ្ចប់ថ្មី\n"
-" upgrade - ធ្វើឲ្យប្រសើរ\n"
-" install - ដំឡើងកញ្ចប់ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n"
-" remove - យកកញ្ចប់ចេញ\n"
-" source - ទាញយកប័ណ្ណសារប្រភព\n"
-" build-dep - កំណត់រចនាសម្ព័ន្ធភាពអាស្រ័យក្នុងការស្ថាបនាសម្រាប់កញ្ចប់ប្រភព\n"
-" dist-upgrade - ការចែកចាយភាពល្អប្រសើរ សូមមើល apt-get(8)\n"
-" dselect-upgrade - ដាក់ពីក្រោយជម្រើស dselect\n"
-" clean - លុបឯកសារប័ណ្ណសារដែលបានទាញយក\n"
-" autoclean - លុបឯកសារប័ណ្ណសារដែលបានទាញយកចាស់\n"
-" check - ផ្ទៀងផ្ទាត់ថាមិនមានភាពអាស្រ័យដែលខូចទេ\n"
-"\n"
-"ជម្រើស ៖\n"
-" -h អត្ថបទជំនួយនេះ ៖\n"
-" -q ទិន្នផលដែលអាចចុះកំណត់ហេតុបាន - មិនមានទ្រនិចបង្ហាញដំណើរការឡើយ\n"
-" -qq គ្មានលទ្ធផលទេ លើកលែងតែកំហុស\n"
-" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង ឬ ស្រាយប័ណ្ណសារ\n"
-" -s No-act. ធ្វើការក្លែងការរៀបតាមលំដាប់\n"
-" -y សន្មតថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំរំលឹក\n"
-" -f ប៉ុនប៉ងធ្វើការបន្ត ប្រសិនបើការពិនិត្យភាពត្រឹមត្រូវបរាជ័យ\n"
-" -m ប៉ុនប៉ងធ្វើការបន្ត ប្រសិនបើប័ណ្ណសារមិនអាចដាក់ទីតាំងបាន\n"
-" -u បង្ហាញបញ្ជីកញ្ចប់ដែលបានធ្វើឲ្យប្រសើរផងដែរ\n"
-" -b ស្ថាបនាកញ្ចប់ប្រភព បន្ទាប់ពីទៅប្រមូលយកវា\n"
-" -V បង្ហាញលេខកំណែជាអក្សរ\n"
-" -c=? អានឯកសារកំណត់រចនាសម្ព័ន្ធនេះ\n"
-" -o=? កំណត់ជម្រើសកំណត់រចនាសម្ព័ន្ធតាមចិត្តមួយ ឧទ. -o dir::cache=/tmp\n"
-"សូមមើល apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "វាយ"
-
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "យក ៖"
-
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
-
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+msgid "Preparing for removal of %s"
+msgstr "កំពុងរៀបចំដើម្បីការយកចេញនៃ %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "á\9e\94á\9e¶á\9e\93â\80\8bá\9e\91á\9f\85â\80\8bá\9e\94á\9f\92á\9e\9aá\9e\98á\9e¼á\9e\9bâ\80\8b %sB á\9e\80á\9f\92á\9e\93á\9e»á\9e\84â\80\8b %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "á\9e\80á\9f\86á\9e\96á\9e»á\9e\84â\80\8bá\9e\99á\9e\80 %s á\9e\85á\9f\81á\9e\89"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [កំពុងធ្វើការ]"
+msgid "Removed %s"
+msgstr "បានយក %s ចេញ"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "កំពុងរៀបចំយក %s ចេញទាំងស្រុង"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "មិនស្គាល់កំណត់ត្រាកញ្ចប់ !"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "បានយក %s ចេញទាំងស្រុង"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"ការប្រើប្រាស់ ៖ apt-sortpkgs [ជម្រើស] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs ជាឧបករណ៍ធម្មតាដើម្បីតម្រៀបឯកសារកញ្ចប់ ។ ជម្រើស -s បានប្រើ\n"
-"សម្រាប់ចង្អុលប្រភេទនៃឯកសារអ្វីមួយដែលមាន ។\n"
-"\n"
-"ជម្រើស\n"
-" -h អត្ថបទជំនួយនេះ\n"
-" -s ប្រើការតម្រៀបឯកសារប្រភព\n"
-" -c=? អានឯកសារកំណត់រចនាសម្ព័ន្ធនេះ\n"
-" -o=? កំណត់ជម្រើសការកំណត់រចនាសម្ព័ន្ធតាមចិត្ត ឧ. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "ការកំណត់លំនាំដើមមិនល្អ !"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "មិនអាចបើកឯកសារ %s បានឡើយ"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "សង្កត់ បញ្ចូល ដើម្បីបន្ត ។"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "បានបិទការតភ្ជាប់មុនពេល"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "កំហុសមួយចំនួនបានកើតឡើងខណៈពេលពន្លាកញ្ចប់ ។ ខ្ញុំនឹងកំណត់រចនាសម្ប័ន្ធ"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "បន្ទាត់ %d វែងពេក (អតិបរមា %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "កញ្ចប់ដែលបានដំឡើង ។ នេះប្រហែលជាលទ្ធផលកំហុសស្ទួន"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "ឬ កំហុសដែលបង្កដោយការបាត់បង់ភាពអាស្រ័យ ។ មិនអីទេ គ្រាន់តែជាកំហុស "
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "កំហុសបានកើតឡើង ខណៈពេលកំពុងដំណើរការ %s (កំណែឯកសារថ្មី១)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "នៅខាងលើសារនេះគឺសំខាន់ណាស់ ។ សូមជួសជុលពួកវា ហើយរត់ការដំឡើងម្តងទៀត"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "បានទុកស្លាក ៖ %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "បញ្ចូលព័ត៌មានដែលមានចូលគ្នា"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "បានរកឃើញ លិបិក្រមកញ្ចប់ %i លិបិក្រមប្រភព%i និង ហត្ថលេខា %i \n"
+
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "ជ្រើសបានបរាជ័យ"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-28 07:55+0100\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-10-29 13:10-0400\n"
"Last-Translator: Sunjae Park <darehanl@gmail.com>\n"
"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, c-format
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
msgid "%s %s for %s compiled on %s %s\n"
msgstr "%s %s(%s), 컴파일 시각 %s %s\n"
msgstr "DB 파일, %s 파일을 열 수 없습니다: %s"
#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
-#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117 methods/gpgv.cc:272
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
msgid "Failed to stat %s"
msgstr "%s의 정보를 읽는 데 실패했습니다"
msgid " %s has no binary override entry either\n"
msgstr " %s에는 binary override 항목이 없습니다\n"
-#: ftparchive/contents.cc:317
+#: ftparchive/contents.cc:321
#, c-format
msgid "Internal error, could not locate member %s"
msgstr "내부 오류, %s 멤버를 찾을 수 없습니다"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
msgid "realloc - Failed to allocate memory"
msgstr "realloc - 메모리를 할당하는 데 실패했습니다"
msgid "Failed to read the override file %s"
msgstr "override 파일 %s을(를) 읽는 데 실패했습니다"
-#: ftparchive/multicompress.cc:71
+#: ftparchive/multicompress.cc:72
#, c-format
msgid "Unknown compression algorithm '%s'"
msgstr "'%s' 압축 알고리즘을 알 수 없습니다"
-#: ftparchive/multicompress.cc:101
+#: ftparchive/multicompress.cc:102
#, c-format
msgid "Compressed output %s needs a compression set"
msgstr "압축된 출력물 %s에는 압축 세트가 필요합니다"
-#: ftparchive/multicompress.cc:168 methods/rsh.cc:91
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
msgid "Failed to create IPC pipe to subprocess"
msgstr "하위 프로세스에 대한 IPC 파이프를 만드는 데 실패했습니다"
-#: ftparchive/multicompress.cc:194
+#: ftparchive/multicompress.cc:195
msgid "Failed to create FILE*"
msgstr "FILE*를 만드는 데 실패했습니다"
-#: ftparchive/multicompress.cc:197
+#: ftparchive/multicompress.cc:198
msgid "Failed to fork"
msgstr "fork하는 데 실패했습니다"
-#: ftparchive/multicompress.cc:211
+#: ftparchive/multicompress.cc:212
msgid "Compress child"
msgstr "압축 하위 프로세스"
-#: ftparchive/multicompress.cc:234
+#: ftparchive/multicompress.cc:235
#, c-format
msgid "Internal error, failed to create %s"
msgstr "내부 오류, %s을(를) 만드는 데 실패했습니다"
-#: ftparchive/multicompress.cc:285
+#: ftparchive/multicompress.cc:286
msgid "Failed to create subprocess IPC"
msgstr "하위 프로세스 IPC를 만드는 데 실패했습니다"
-#: ftparchive/multicompress.cc:320
+#: ftparchive/multicompress.cc:321
msgid "Failed to exec compressor "
msgstr "다음 압축 프로그램을 실행하는 데 실패했습니다: "
-#: ftparchive/multicompress.cc:359
+#: ftparchive/multicompress.cc:360
msgid "decompressor"
msgstr "압축 해제 프로그램"
-#: ftparchive/multicompress.cc:402
+#: ftparchive/multicompress.cc:403
msgid "IO to subprocess/file failed"
msgstr "하위 프로세스/파일에 입출력하는 데 실패했습니다"
-#: ftparchive/multicompress.cc:454
+#: ftparchive/multicompress.cc:455
msgid "Failed to read while computing MD5"
msgstr "MD5를 계산하는 동안 읽는 데 실패했습니다"
-#: ftparchive/multicompress.cc:471
+#: ftparchive/multicompress.cc:472
#, c-format
msgid "Problem unlinking %s"
msgstr "%s의 링크를 해제하는 데 문제가 있습니다"
-#: ftparchive/multicompress.cc:486 apt-inst/extract.cc:185
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
msgid "Failed to rename %s to %s"
msgstr "%s 파일의 이름을 %s(으)로 바꾸는 데 실패했습니다"
-#: cmdline/apt-get.cc:121
+#: cmdline/apt-get.cc:124
msgid "Y"
msgstr "Y"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
msgid "Regex compilation error - %s"
msgstr "정규식 컴파일 오류 - %s"
-#: cmdline/apt-get.cc:238
+#: cmdline/apt-get.cc:241
msgid "The following packages have unmet dependencies:"
msgstr "다음 꾸러미의 의존성이 맞지 않습니다:"
-#: cmdline/apt-get.cc:328
+#: cmdline/apt-get.cc:331
#, c-format
msgid "but %s is installed"
msgstr "하지만 %s 꾸러미를 설치했습니다"
-#: cmdline/apt-get.cc:330
+#: cmdline/apt-get.cc:333
#, c-format
msgid "but %s is to be installed"
msgstr "하지만 %s 꾸러미를 설치할 것입니다"
-#: cmdline/apt-get.cc:337
+#: cmdline/apt-get.cc:340
msgid "but it is not installable"
msgstr "하지만 설치할 수 없습니다"
-#: cmdline/apt-get.cc:339
+#: cmdline/apt-get.cc:342
msgid "but it is a virtual package"
msgstr "하지만 가상 꾸러미입니다"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not installed"
msgstr "하지만 설치하지 않았습니다"
-#: cmdline/apt-get.cc:342
+#: cmdline/apt-get.cc:345
msgid "but it is not going to be installed"
msgstr "하지만 %s 꾸러미를 설치하지 않을 것입니다"
-#: cmdline/apt-get.cc:347
+#: cmdline/apt-get.cc:350
msgid " or"
msgstr " 혹은"
-#: cmdline/apt-get.cc:376
+#: cmdline/apt-get.cc:379
msgid "The following NEW packages will be installed:"
msgstr "다음 새 꾸러미를 설치할 것입니다:"
-#: cmdline/apt-get.cc:402
+#: cmdline/apt-get.cc:405
msgid "The following packages will be REMOVED:"
msgstr "다음 꾸러미를 지울 것입니다:"
-#: cmdline/apt-get.cc:424
+#: cmdline/apt-get.cc:427
msgid "The following packages have been kept back:"
msgstr "다음 꾸러미를 과거 버전으로 유지합니다:"
-#: cmdline/apt-get.cc:445
+#: cmdline/apt-get.cc:448
msgid "The following packages will be upgraded:"
msgstr "다음 꾸러미를 업그레이드할 것입니다:"
-#: cmdline/apt-get.cc:466
+#: cmdline/apt-get.cc:469
msgid "The following packages will be DOWNGRADED:"
msgstr "다음 꾸러미를 다운그레이드할 것입니다:"
-#: cmdline/apt-get.cc:486
+#: cmdline/apt-get.cc:489
msgid "The following held packages will be changed:"
msgstr "고정되었던 다음 꾸러미를 바꿀 것입니다:"
-#: cmdline/apt-get.cc:539
+#: cmdline/apt-get.cc:542
#, c-format
msgid "%s (due to %s) "
msgstr "%s (%s때문에) "
-#: cmdline/apt-get.cc:547
+#: cmdline/apt-get.cc:550
msgid ""
"WARNING: The following essential packages will be removed.\n"
"This should NOT be done unless you know exactly what you are doing!"
"경고: 꼭 필요한 다음 꾸러미를 지우게 됩니다.\n"
"무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!"
-#: cmdline/apt-get.cc:578
+#: cmdline/apt-get.cc:581
#, c-format
msgid "%lu upgraded, %lu newly installed, "
msgstr "%lu개 업그레이드, %lu개 새로 설치, "
-#: cmdline/apt-get.cc:582
+#: cmdline/apt-get.cc:585
#, c-format
msgid "%lu reinstalled, "
msgstr "%lu개 다시 설치, "
-#: cmdline/apt-get.cc:584
+#: cmdline/apt-get.cc:587
#, c-format
msgid "%lu downgraded, "
msgstr "%lu개 업그레이드, "
-#: cmdline/apt-get.cc:586
+#: cmdline/apt-get.cc:589
#, c-format
msgid "%lu to remove and %lu not upgraded.\n"
msgstr "%lu개 지우기 및 %lu개 업그레이드 안 함.\n"
-#: cmdline/apt-get.cc:590
+#: cmdline/apt-get.cc:593
#, c-format
msgid "%lu not fully installed or removed.\n"
msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n"
-#: cmdline/apt-get.cc:664
+#: cmdline/apt-get.cc:667
msgid "Correcting dependencies..."
msgstr "의존성을 바로잡는 중입니다..."
-#: cmdline/apt-get.cc:667
+#: cmdline/apt-get.cc:670
msgid " failed."
msgstr " 실패."
-#: cmdline/apt-get.cc:670
+#: cmdline/apt-get.cc:673
msgid "Unable to correct dependencies"
msgstr "의존성을 바로잡을 수 없습니다"
-#: cmdline/apt-get.cc:673
+#: cmdline/apt-get.cc:676
msgid "Unable to minimize the upgrade set"
msgstr "업그레이드 집합을 최소화할 수 없습니다"
-#: cmdline/apt-get.cc:675
+#: cmdline/apt-get.cc:678
msgid " Done"
msgstr " 완료"
-#: cmdline/apt-get.cc:679
+#: cmdline/apt-get.cc:682
msgid "You might want to run `apt-get -f install' to correct these."
msgstr ""
"이 상황을 바로잡으려면 `apt-get -f install'을 실행해야 할 수도 있습니다."
-#: cmdline/apt-get.cc:682
+#: cmdline/apt-get.cc:685
msgid "Unmet dependencies. Try using -f."
msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오."
-#: cmdline/apt-get.cc:704
+#: cmdline/apt-get.cc:707
msgid "WARNING: The following packages cannot be authenticated!"
msgstr "경고: 다음 꾸러미를 인증할 수 없습니다!"
-#: cmdline/apt-get.cc:708
+#: cmdline/apt-get.cc:711
msgid "Authentication warning overridden.\n"
msgstr "인증 경고를 무시합니다.\n"
-#: cmdline/apt-get.cc:715
+#: cmdline/apt-get.cc:718
msgid "Install these packages without verification [y/N]? "
msgstr "확인하지 않고 꾸러미를 설치하시겠습니까 [y/N]? "
-#: cmdline/apt-get.cc:717
+#: cmdline/apt-get.cc:720
msgid "Some packages could not be authenticated"
msgstr "인증할 수 없는 꾸러미가 있습니다"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
msgid "There are problems and -y was used without --force-yes"
msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다"
-#: cmdline/apt-get.cc:770
+#: cmdline/apt-get.cc:773
msgid "Internal error, InstallPackages was called with broken packages!"
msgstr "내부 오류. 망가진 꾸러미에서 InstallPackages를 호출했습니다!"
-#: cmdline/apt-get.cc:779
+#: cmdline/apt-get.cc:782
msgid "Packages need to be removed but remove is disabled."
msgstr "꾸러미를 지워야 하지만 지우기가 금지되어 있습니다."
-#: cmdline/apt-get.cc:790
+#: cmdline/apt-get.cc:793
msgid "Internal error, Ordering didn't finish"
msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
msgid "Unable to lock the download directory"
msgstr "내려받기 디렉토리를 잠글 수 없습니다"
-#: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2093 cmdline/apt-get.cc:2334
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
#: apt-pkg/cachefile.cc:63
msgid "The list of sources could not be read."
msgstr "소스 목록을 읽을 수 없습니다."
-#: cmdline/apt-get.cc:831
+#: cmdline/apt-get.cc:834
msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십"
"시오."
-#: cmdline/apt-get.cc:836
+#: cmdline/apt-get.cc:839
#, c-format
msgid "Need to get %sB/%sB of archives.\n"
msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n"
-#: cmdline/apt-get.cc:839
+#: cmdline/apt-get.cc:842
#, c-format
msgid "Need to get %sB of archives.\n"
msgstr "%s바이트 아카이브를 받아야 합니다.\n"
-#: cmdline/apt-get.cc:844
-#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr "압축을 풀면 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n"
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr "압축을 풀면 %s바이트의 디스크 공간이 비워집니다.\n"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
msgid "Couldn't determine free space in %s"
msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다"
-#: cmdline/apt-get.cc:864
+#: cmdline/apt-get.cc:871
#, c-format
msgid "You don't have enough free space in %s."
msgstr "%s 안에 충분한 여유 공간이 없습니다."
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 "
"아닙니다."
# 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용.
-#: cmdline/apt-get.cc:881
+#: cmdline/apt-get.cc:889
msgid "Yes, do as I say!"
msgstr "Yes, do as I say!"
-#: cmdline/apt-get.cc:883
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
"You are about to do something potentially harmful.\n"
"계속하시려면 다음 문구를 입력하십시오: '%s'\n"
" ?] "
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
msgid "Abort."
msgstr "중단."
-#: cmdline/apt-get.cc:904
+#: cmdline/apt-get.cc:912
msgid "Do you want to continue [Y/n]? "
msgstr "계속 하시겠습니까 [Y/n]? "
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
msgid "Failed to fetch %s %s\n"
msgstr "%s 파일을 받는 데 실패했습니다 %s\n"
-#: cmdline/apt-get.cc:994
+#: cmdline/apt-get.cc:1002
msgid "Some files failed to download"
msgstr "일부 파일을 받는 데 실패했습니다"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
msgid "Download complete and in download only mode"
msgstr "내려받기를 마쳤고 내려받기 전용 모드입니다"
-#: cmdline/apt-get.cc:1001
+#: cmdline/apt-get.cc:1009
msgid ""
"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
"missing?"
"아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-"
"missing 옵션을 줘서 실행해야 할 것입니다."
-#: cmdline/apt-get.cc:1005
+#: cmdline/apt-get.cc:1013
msgid "--fix-missing and media swapping is not currently supported"
msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다"
-#: cmdline/apt-get.cc:1010
+#: cmdline/apt-get.cc:1018
msgid "Unable to correct missing packages."
msgstr "빠진 꾸러미를 바로잡을 수 없습니다."
-#: cmdline/apt-get.cc:1011
+#: cmdline/apt-get.cc:1019
msgid "Aborting install."
msgstr "설치를 중단합니다."
-#: cmdline/apt-get.cc:1045
+#: cmdline/apt-get.cc:1053
#, c-format
msgid "Note, selecting %s instead of %s\n"
msgstr "주의, %2$s 대신에 %1$s 꾸러미를 선택합니다\n"
-#: cmdline/apt-get.cc:1055
+#: cmdline/apt-get.cc:1063
#, c-format
msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
"%s 꾸러미를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n"
-#: cmdline/apt-get.cc:1073
+#: cmdline/apt-get.cc:1081
#, c-format
msgid "Package %s is not installed, so not removed\n"
msgstr "%s 꾸러미를 설치하지 않았으므로, 지우지 않습니다\n"
-#: cmdline/apt-get.cc:1084
+#: cmdline/apt-get.cc:1092
#, c-format
msgid "Package %s is a virtual package provided by:\n"
msgstr "%s 꾸러미는 다음 꾸러미가 제공하는 가상 꾸러미입니다:\n"
-#: cmdline/apt-get.cc:1096
+#: cmdline/apt-get.cc:1104
msgid " [Installed]"
msgstr " [설치함]"
-#: cmdline/apt-get.cc:1101
+#: cmdline/apt-get.cc:1109
msgid "You should explicitly select one to install."
msgstr "설치하려면 분명하게 하나를 선택해야 합니다."
-#: cmdline/apt-get.cc:1106
+#: cmdline/apt-get.cc:1114
#, c-format
msgid ""
"Package %s is not available, but is referred to by another package.\n"
"해당 꾸러미가 누락되었거나 지워졌다는 뜻입니다. 아니면 또 다른 곳에서\n"
"꾸러미를 받아와야 하는 경우일 수도 있습니다.\n"
-#: cmdline/apt-get.cc:1125
+#: cmdline/apt-get.cc:1133
msgid "However the following packages replace it:"
msgstr "하지만 다음 꾸러미가 대체합니다:"
-#: cmdline/apt-get.cc:1128
+#: cmdline/apt-get.cc:1136
#, c-format
msgid "Package %s has no installation candidate"
msgstr "%s 꾸러미는 설치할 수 있는 후보가 없습니다"
-#: cmdline/apt-get.cc:1148
+#: cmdline/apt-get.cc:1156
#, c-format
msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr "%s 꾸러미를 다시 설치하는 건 불가능합니다. 내려 받을 수 없습니다.\n"
-#: cmdline/apt-get.cc:1156
+#: cmdline/apt-get.cc:1164
#, c-format
msgid "%s is already the newest version.\n"
msgstr "%s 꾸러미는 이미 최신 버전입니다.\n"
-#: cmdline/apt-get.cc:1185
+#: cmdline/apt-get.cc:1193
#, c-format
msgid "Release '%s' for '%s' was not found"
msgstr "%2$s 꾸러미의 '%1$s' 릴리즈를 찾을 수 없습니다"
-#: cmdline/apt-get.cc:1187
+#: cmdline/apt-get.cc:1195
#, c-format
msgid "Version '%s' for '%s' was not found"
msgstr "%2$s 꾸러미의 '%1$s' 버전을 찾을 수 없습니다"
-#: cmdline/apt-get.cc:1193
+#: cmdline/apt-get.cc:1201
#, c-format
msgid "Selected version %s (%s) for %s\n"
msgstr "%3$s 꾸러미의 %1$s (%2$s) 버전을 선택합니다\n"
-#: cmdline/apt-get.cc:1330
+#: cmdline/apt-get.cc:1338
msgid "The update command takes no arguments"
msgstr "update 명령은 인수를 받지 않습니다"
-#: cmdline/apt-get.cc:1343
+#: cmdline/apt-get.cc:1351
msgid "Unable to lock the list directory"
msgstr "목록 디렉토리를 잠글 수 없습니다"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
msgid ""
"Some index files failed to download, they have been ignored, or old ones "
"used instead."
"일부 인덱스 파일을 내려받는 데 실패했습니다. 해당 파일을 무시하거나 과거의 버"
"전을 대신 사용합니다."
-#: cmdline/apt-get.cc:1433
+#: cmdline/apt-get.cc:1441
msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
"이 프로그램은 이것저것 지우지 못하게 되어 있으므로 AutoRemover 실행하지 못합"
"니다"
-#: cmdline/apt-get.cc:1465
+#: cmdline/apt-get.cc:1473
msgid ""
"The following packages were automatically installed and are no longer "
"required:"
msgstr "다음 새 꾸러미가 전에 자동으로 설치되었지만 더 이상 필요하지 않습니다:"
-#: cmdline/apt-get.cc:1467
+#: cmdline/apt-get.cc:1475
msgid "Use 'apt-get autoremove' to remove them."
msgstr "이들을 지우기 위해서는 'apt-get autoremove'를 사용하십시오."
-#: cmdline/apt-get.cc:1472
+#: cmdline/apt-get.cc:1480
msgid ""
"Hmm, seems like the AutoRemover destroyed something which really\n"
"shouldn't happen. Please file a bug report against apt."
"음.. AutoRemover가 뭔가를 부수었는데 이 문제는 실제 나타나서는\n"
"안되는 문제입니다. apt에 버그 보고를 해주십시오."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
msgid "The following information may help to resolve the situation:"
msgstr "이 상황을 해결하는 데 다음 정보가 도움이 될 수도 있습니다:"
-#: cmdline/apt-get.cc:1479
+#: cmdline/apt-get.cc:1487
msgid "Internal Error, AutoRemover broke stuff"
msgstr "내부 오류, 문제 해결 프로그램이 사고쳤습니다"
-#: cmdline/apt-get.cc:1498
+#: cmdline/apt-get.cc:1506
msgid "Internal error, AllUpgrade broke stuff"
msgstr "내부 오류, AllUpgrade 프로그램이 사고쳤습니다"
-#: cmdline/apt-get.cc:1545
+#: cmdline/apt-get.cc:1553
#, c-format
msgid "Couldn't find task %s"
msgstr "%s 작업를 찾을 수 없습니다"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
msgid "Couldn't find package %s"
msgstr "%s 꾸러미를 찾을 수 없습니다"
-#: cmdline/apt-get.cc:1683
+#: cmdline/apt-get.cc:1691
#, c-format
msgid "Note, selecting %s for regex '%s'\n"
msgstr "주의, 정규식 '%2$s'에 대하여 %1$s을(를) 선택합니다\n"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
msgstr "%s 꾸러미 수동설치로 지정합니다.\n"
-#: cmdline/apt-get.cc:1727
+#: cmdline/apt-get.cc:1735
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:1730
+#: cmdline/apt-get.cc:1738
msgid ""
"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
"solution)."
"의존성이 맞지 않습니다. 꾸러미 없이 'apt-get -f install'을 시도해 보십시오 "
"(아니면 해결 방법을 지정하십시오)."
-#: cmdline/apt-get.cc:1742
+#: cmdline/apt-get.cc:1750
msgid ""
"Some packages could not be installed. This may mean that you have\n"
"requested an impossible situation or if you are using the unstable\n"
"불안정 배포판을 사용해서 일부 필요한 꾸러미를 아직 만들지 않았거나,\n"
"아직 Incoming에서 나오지 않은 경우일 수도 있습니다."
-#: cmdline/apt-get.cc:1750
+#: cmdline/apt-get.cc:1758
msgid ""
"Since you only requested a single operation it is extremely likely that\n"
"the package is simply not installable and a bug report against\n"
"한 가지 작업만을 요청하셨으므로, 아마도 이 꾸러미를 설치할 수\n"
"없는 경우일 것이고 이 꾸러미에 버그 보고서를 제출해야 합니다."
-#: cmdline/apt-get.cc:1758
+#: cmdline/apt-get.cc:1766
msgid "Broken packages"
msgstr "망가진 꾸러미"
-#: cmdline/apt-get.cc:1787
+#: cmdline/apt-get.cc:1795
msgid "The following extra packages will be installed:"
msgstr "다음 꾸러미를 더 설치할 것입니다:"
-#: cmdline/apt-get.cc:1876
+#: cmdline/apt-get.cc:1884
msgid "Suggested packages:"
msgstr "제안하는 꾸러미:"
-#: cmdline/apt-get.cc:1877
+#: cmdline/apt-get.cc:1885
msgid "Recommended packages:"
msgstr "추천하는 꾸러미:"
-#: cmdline/apt-get.cc:1905
+#: cmdline/apt-get.cc:1913
msgid "Calculating upgrade... "
msgstr "업그레이드를 계산하는 중입니다... "
-#: cmdline/apt-get.cc:1908 methods/ftp.cc:702 methods/connect.cc:101
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
msgid "Failed"
msgstr "실패"
-#: cmdline/apt-get.cc:1913
+#: cmdline/apt-get.cc:1921
msgid "Done"
msgstr "완료"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
msgid "Internal error, problem resolver broke stuff"
msgstr "내부 오류, 문제 해결 프로그램이 사고쳤습니다"
-#: cmdline/apt-get.cc:2088
+#: cmdline/apt-get.cc:2096
msgid "Must specify at least one package to fetch source for"
msgstr "해당되는 소스 꾸러미를 가져올 꾸러미를 최소한 하나 지정해야 합니다"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
msgid "Unable to find a source package for %s"
msgstr "%s의 소스 꾸러미를 찾을 수 없습니다"
-#: cmdline/apt-get.cc:2167
+#: cmdline/apt-get.cc:2175
#, c-format
msgid "Skipping already downloaded file '%s'\n"
msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n"
-#: cmdline/apt-get.cc:2191
+#: cmdline/apt-get.cc:2203
#, c-format
msgid "You don't have enough free space in %s"
msgstr "%s에 충분한 공간이 없습니다"
-#: cmdline/apt-get.cc:2196
+#: cmdline/apt-get.cc:2209
#, c-format
msgid "Need to get %sB/%sB of source archives.\n"
msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n"
-#: cmdline/apt-get.cc:2199
+#: cmdline/apt-get.cc:2212
#, c-format
msgid "Need to get %sB of source archives.\n"
msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n"
-#: cmdline/apt-get.cc:2205
+#: cmdline/apt-get.cc:2218
#, c-format
msgid "Fetch source %s\n"
msgstr "%s 소스를 가져옵니다\n"
-#: cmdline/apt-get.cc:2236
+#: cmdline/apt-get.cc:2249
msgid "Failed to fetch some archives."
msgstr "일부 아카이브를 가져오는 데 실패했습니다."
-#: cmdline/apt-get.cc:2264
+#: cmdline/apt-get.cc:2277
#, c-format
msgid "Skipping unpack of already unpacked source in %s\n"
msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n"
-#: cmdline/apt-get.cc:2276
+#: cmdline/apt-get.cc:2289
#, c-format
msgid "Unpack command '%s' failed.\n"
msgstr "압축 풀기 명령 '%s' 실패.\n"
-#: cmdline/apt-get.cc:2277
+#: cmdline/apt-get.cc:2290
#, c-format
msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr "'dpkg-dev' 꾸러미가 설치되었는지를 확인해주십시오.\n"
-#: cmdline/apt-get.cc:2294
+#: cmdline/apt-get.cc:2307
#, c-format
msgid "Build command '%s' failed.\n"
msgstr "빌드 명령 '%s' 실패.\n"
-#: cmdline/apt-get.cc:2313
+#: cmdline/apt-get.cc:2326
msgid "Child process failed"
msgstr "하위 프로세스가 실패했습니다"
-#: cmdline/apt-get.cc:2329
+#: cmdline/apt-get.cc:2342
msgid "Must specify at least one package to check builddeps for"
msgstr "해당되는 빌드 의존성을 검사할 꾸러미를 최소한 하나 지정해야 합니다"
-#: cmdline/apt-get.cc:2357
+#: cmdline/apt-get.cc:2370
#, c-format
msgid "Unable to get build-dependency information for %s"
msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다"
-#: cmdline/apt-get.cc:2377
+#: cmdline/apt-get.cc:2390
#, c-format
msgid "%s has no build depends.\n"
msgstr "%s 꾸러미에 빌드 의존성이 없습니다.\n"
-#: cmdline/apt-get.cc:2429
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because the package %s cannot be "
"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 꾸러미를 찾을 수 없습니"
"다"
-#: cmdline/apt-get.cc:2482
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
"%s dependency for %s cannot be satisfied because no available versions of "
"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 꾸러미의 사용 가능한 버"
"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다"
-#: cmdline/apt-get.cc:2518
+#: cmdline/apt-get.cc:2531
#, 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:2543
+#: cmdline/apt-get.cc:2556
#, c-format
msgid "Failed to satisfy %s dependency for %s: %s"
msgstr "%2$s에 대한 %1$s 의존성을 만족시키는 데 실패했습니다: %3$s"
-#: cmdline/apt-get.cc:2557
+#: cmdline/apt-get.cc:2570
#, c-format
msgid "Build-dependencies for %s could not be satisfied."
msgstr "%s의 빌드 의존성을 만족시키지 못했습니다."
-#: cmdline/apt-get.cc:2561
+#: cmdline/apt-get.cc:2574
msgid "Failed to process build dependencies"
msgstr "빌드 의존성을 처리하는 데 실패했습니다"
-#: cmdline/apt-get.cc:2593
+#: cmdline/apt-get.cc:2606
msgid "Supported modules:"
msgstr "지원하는 모듈:"
-#: cmdline/apt-get.cc:2634
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
"Usage: apt-get [options] command\n"
" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "%s/%s 파일은 %s 꾸러미에 있는 파일을 덮어 씁니다"
-#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:748
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
#, c-format
msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "올바른 DEB 아카이브가 아닙니다. '%s'나 '%s' 혹은 '%s' 멤버가 없습니다"
msgid "File not found"
msgstr "파일이 없습니다"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
msgid "Failed to stat"
msgstr "파일 정보를 읽는 데 실패했습니다"
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
msgid "Failed to set modification time"
msgstr "파일 변경 시각을 설정하는 데 실패했습니다"
msgid "Couldn't access keyring: '%s'"
msgstr "키링에 접근할 수 없습니다: '%s'"
-#: methods/gpgv.cc:100
+#: methods/gpgv.cc:101
msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr "E: Acquire::gpgv::Options의 인자 목록이 너무 깁니다. 종료하는 중."
-#: methods/gpgv.cc:204
+#: methods/gpgv.cc:205
msgid ""
"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr "내부 오류: 서명은 올바르지만 키 지문을 확인할 수 없습니다!"
-#: methods/gpgv.cc:209
+#: methods/gpgv.cc:210
msgid "At least one invalid signature was encountered."
msgstr "최소한 하나 이상의 서명이 잘못되었습니다."
-#: methods/gpgv.cc:213
+#: methods/gpgv.cc:214
#, c-format
msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr "서명을 인증하기 위한 '%s' 실행할 수 없습니다(gnupg가 설치됐나요?)"
-#: methods/gpgv.cc:218
+#: methods/gpgv.cc:219
msgid "Unknown error executing gpgv"
msgstr "gpgv 실행 도중 알 수 없는 오류 발생"
-#: methods/gpgv.cc:249
+#: methods/gpgv.cc:250
msgid "The following signatures were invalid:\n"
msgstr "다음 서명이 올바르지 않습니다:\n"
-#: methods/gpgv.cc:256
+#: methods/gpgv.cc:257
msgid ""
"The following signatures couldn't be verified because the public key is not "
"available:\n"
msgid "Selection %s not found"
msgstr "선택한 %s이(가) 없습니다"
-#: apt-pkg/contrib/configuration.cc:434
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
msgid "Unrecognized type abbreviation: '%c'"
msgstr "이 타입 줄임말을 알 수 없습니다: '%c'"
-#: apt-pkg/contrib/configuration.cc:492
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
msgid "Opening configuration file %s"
msgstr "설정 파일 %s 파일을 여는 중입니다"
-#: apt-pkg/contrib/configuration.cc:510
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
msgid "Line %d too long (max %u)"
msgstr "%d번 줄이 너무 깁니다 (최대 %u)"
-#: apt-pkg/contrib/configuration.cc:606
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
msgid "Syntax error %s:%u: Block starts with no name."
msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다."
-#: apt-pkg/contrib/configuration.cc:625
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
msgid "Syntax error %s:%u: Malformed tag"
msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다"
-#: apt-pkg/contrib/configuration.cc:642
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
msgid "Syntax error %s:%u: Extra junk after value"
msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다"
-#: apt-pkg/contrib/configuration.cc:682
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다"
-#: apt-pkg/contrib/configuration.cc:689
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
msgid "Syntax error %s:%u: Too many nested includes"
msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
msgid "Syntax error %s:%u: Included from here"
msgstr "문법 오류 %s:%u: 여기서 include됩니다"
-#: apt-pkg/contrib/configuration.cc:702
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'"
-#: apt-pkg/contrib/configuration.cc:736
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
msgid "Syntax error %s:%u: Extra junk at end of file"
msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다"
msgid "MD5Sum mismatch"
msgstr "MD5Sum이 맞지 않습니다"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
msgid "Hash Sum mismatch"
msgstr "해쉬 합계가 서로 다릅니다"
-#: apt-pkg/acquire-item.cc:1091
+#: apt-pkg/acquire-item.cc:1100
msgid "There is no public key available for the following key IDs:\n"
msgstr "다음 키 ID의 공개키가 없습니다:\n"
-#: apt-pkg/acquire-item.cc:1204
+#: apt-pkg/acquire-item.cc:1213
#, c-format
msgid ""
"I wasn't able to locate a file for the %s package. This might mean you need "
"%s 꾸러미의 파일을 찾을 수 없습니다. 수동으로 이 꾸러미를 고쳐야 할 수도 있습"
"니다. (아키텍쳐가 빠졌기 때문입니다)"
-#: apt-pkg/acquire-item.cc:1263
+#: apt-pkg/acquire-item.cc:1272
#, c-format
msgid ""
"I wasn't able to locate file for the %s package. This might mean you need to "
"%s 꾸러미의 파일을 찾을 수 없습니다. 수동으로 이 꾸러미를 고쳐야 할 수도 있습"
"니다."
-#: apt-pkg/acquire-item.cc:1304
+#: apt-pkg/acquire-item.cc:1313
#, c-format
msgid ""
"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
"꾸러미 인덱스 파일이 손상되었습니다. %s 꾸러미에 Filename: 필드가 없습니다."
-#: apt-pkg/acquire-item.cc:1391
+#: apt-pkg/acquire-item.cc:1400
msgid "Size mismatch"
msgstr "크기가 맞지 않습니다"
"CD-ROM 마운트 위치로 %s 사용\n"
"CD-ROM을 마운트하는 중입니다\n"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
msgid "Identifying.. "
msgstr "알아보는 중입니다.. "
msgid "Stored label: %s\n"
msgstr "저장된 레이블: %s \n"
-#: apt-pkg/cdrom.cc:583
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD-ROM을 마운트 해제하는 중입니다...\n"
+
+#: apt-pkg/cdrom.cc:590
#, c-format
msgid "Using CD-ROM mount point %s\n"
msgstr "CD-ROM 마운트 위치 %s 사용\n"
-#: apt-pkg/cdrom.cc:601
+#: apt-pkg/cdrom.cc:608
msgid "Unmounting CD-ROM\n"
msgstr "CD-ROM 마운트 해제하는 중입니다\n"
-#: apt-pkg/cdrom.cc:605
+#: apt-pkg/cdrom.cc:612
msgid "Waiting for disc...\n"
msgstr "디스크를 기다리는 중입니다...\n"
#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
+#: apt-pkg/cdrom.cc:620
msgid "Mounting CD-ROM...\n"
msgstr "CD-ROM 마운트하는 중입니다...\n"
-#: apt-pkg/cdrom.cc:631
+#: apt-pkg/cdrom.cc:638
msgid "Scanning disc for index files..\n"
msgstr "디스크에서 색인 파일을 찾는 중입니다...\n"
-#: apt-pkg/cdrom.cc:671
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
"Found %u package indexes, %u source indexes, %u translation indexes and %u "
"signatures\n"
msgstr "꾸러미 색인 %u개, 소스 색인 %u개, 번역 색인 %u개, 서명 %u개 발견\n"
-#: apt-pkg/cdrom.cc:708
+#: apt-pkg/cdrom.cc:715
#, c-format
msgid "Found label '%s'\n"
msgstr "레이블 발견: %s \n"
-#: apt-pkg/cdrom.cc:737
+#: apt-pkg/cdrom.cc:744
msgid "That is not a valid name, try again.\n"
msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n"
-#: apt-pkg/cdrom.cc:753
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
"This disc is called: \n"
"이 디스크는 다음과 같습니다: \n"
"'%s'\n"
-#: apt-pkg/cdrom.cc:757
+#: apt-pkg/cdrom.cc:764
msgid "Copying package lists..."
msgstr "꾸러미 목록을 복사하는 중입니다..."
-#: apt-pkg/cdrom.cc:783
+#: apt-pkg/cdrom.cc:790
msgid "Writing new source list\n"
msgstr "새 소스 리스트를 쓰는 중입니다\n"
-#: apt-pkg/cdrom.cc:792
+#: apt-pkg/cdrom.cc:799
msgid "Source list entries for this disc are:\n"
msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n"
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD-ROM을 마운트 해제하는 중입니다...\n"
-
#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
msgid "Wrote %i records.\n"
msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
msgid "Directory '%s' missing"
msgstr "디렉토리 '%s' 없습니다."
-#: apt-pkg/deb/dpkgpm.cc:572
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
msgid "Preparing %s"
msgstr "%s 준비 중"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
msgid "Unpacking %s"
msgstr "%s을(를) 푸는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
msgid "Preparing to configure %s"
msgstr "%s을(를) 설정할 준비를 하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
msgid "Configuring %s"
msgstr "%s 설정 중"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
#, c-format
msgid "Processing triggers for %s"
msgstr "%s의 트리거를 처리하는 중"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
msgid "Installed %s"
msgstr "%s 설치했음"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
msgid "Preparing for removal of %s"
msgstr "%s을(를) 삭제할 준비 중"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
msgid "Removing %s"
msgstr "%s 지우는 중"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
msgid "Removed %s"
msgstr "%s 지움"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
msgid "Preparing to completely remove %s"
msgstr "%s을(를) 완전히 지울 준비를 하는 중입니다"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: apt-pkg/deb/dpkgpm.cc:625
#, c-format
msgid "Completely removed %s"
msgstr "%s을(를) 완전히 지웠습니다"
-#: apt-pkg/deb/dpkgpm.cc:749
+#: apt-pkg/deb/dpkgpm.cc:775
msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
"로그에 쓰는데 실패. openpty() 실패(/dev/pts가 마운트되어있지 않습니까?)\n"
msgid "Connection closed prematurely"
msgstr "연결이 너무 빨리 끊어졌습니다"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "%d번 줄이 너무 깁니다 (최대 %u)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)"
+
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)"
+
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "저장된 레이블: %s \n"
+
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "꾸러미 색인 %u개, 소스 색인 %u개, 번역 색인 %u개, 서명 %u개 발견\n"
+
#~ msgid "openpty failed\n"
#~ msgstr "openpty가 실패했습니다\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-09-16 17:51+0100\n"
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
"Language-Team: Kurdish <ku@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
-#, fuzzy, c-format
-msgid "Unable to read the cdrom database %s"
+#: cmdline/apt-cache.cc:143
+#, c-format
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr ""
+
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#, c-format
+msgid "Unable to locate package %s"
msgstr "Pakêt nehate dîtin %s"
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Navên paketan bi giştî :"
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr ""
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Pakêtên normal:"
-#: methods/cdrom.cc:166
-#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pakêtên farazî yên safî:"
-#: methods/cdrom.cc:171
-#, fuzzy
-msgid "Disk not found."
-msgstr "(nehate dîtin)"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pakêta tenê ya farazî:"
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-#, fuzzy
-msgid "File not found"
-msgstr "(nehate dîtin)"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Pakêtên hevbeş yên farazî:"
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-#, fuzzy
-msgid "Failed to stat"
-msgstr "%s venebû"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Winda: "
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr ""
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Guhertoyên vekirî yên giştî:"
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr ""
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Guhertoyên vekirî yên giştî:"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr ""
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Bindestên giştî:"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
msgstr ""
-#: methods/ftp.cc:173
+#: cmdline/apt-cache.cc:302
#, fuzzy
-msgid "Unable to determine the local name"
-msgstr "Nivîsandin ji bo %s ne pêkane"
+msgid "Total Desc/File relations: "
+msgstr "Guhertoyên vekirî yên giştî:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
msgstr ""
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
msgstr ""
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
msgstr ""
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Cihê giştî yê sist:"
-#: methods/ftp.cc:265
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Cihê giştî yê veqetandî: "
+
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
#, c-format
-msgid "Login script command '%s' failed, server said: %s"
+msgid "Package file %s is out of sync."
+msgstr "Pakêta dosya %s li derveyî demê ye."
+
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Pêwist e tu mînakekê bidî"
+
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Pakêt nayên dîtin"
+
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pelgehên Pakêt:"
+
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
msgstr ""
-#: methods/ftp.cc:291
+#: cmdline/apt-cache.cc:1532
#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr ""
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
msgstr ""
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr ""
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nehate dîtin)"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr ""
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Sazkirî: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr ""
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ne tiştek)"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr ""
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Berendam: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr ""
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Destika pakêtê:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr ""
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabloya guhertoyan:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr ""
+#: cmdline/apt-cache.cc:1618
+#, c-format
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Serneket"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s ji bo %s %s komkirî di %s %s de\n"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr ""
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr ""
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
msgstr ""
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr ""
-
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Bikaranîn: apt-config [vebijark] ferman\n"
+"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n"
+"\n"
+"Ferman\n"
+" shell - moda shell\n"
+" dump - Mîhengan nîşan dide\n"
+"\n"
+"Vebijark:\n"
+" -h Ev dosyeya alîkariyê ye.\n"
+" -c=? Dosyeya mîhengan nîşan dide\n"
+" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. "
+"mînak -o dir::cache=/tmp\n"
-#: methods/ftp.cc:798
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr ""
-
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr ""
+msgid "%s not a valid DEB package."
+msgstr "%s ne paketeke DEB ya derbasdar e."
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr ""
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
+#, c-format
+msgid "Unable to write to %s"
+msgstr "Nivîsandin ji bo %s ne pêkane"
-#: methods/ftp.cc:877
-#, fuzzy, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Danegira %s nehate vekirin: %s"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e"
-#: methods/ftp.cc:922
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr ""
+msgid "Error processing directory %s"
+msgstr "Di şixulandina pêrista %s de çewtî"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
-#: methods/ftp.cc:1109
-#, fuzzy
-msgid "Unable to invoke "
-msgstr "%s venebû"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
-#: methods/connect.cc:64
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Connecting to %s (%s)"
+msgid "Error processing contents %s"
+msgstr "Dema şixulandina naveroka %s çewtî"
+
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
msgstr ""
-#: methods/connect.cc:80
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr ""
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in"
-#: methods/connect.cc:86
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr ""
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB xerabe ye, navê dosyeyê weke %s.old hate guherandin"
-#: methods/connect.cc:93
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Danegir kevn e, ji bo bilindkirina %s hewl dide"
+
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-#: methods/connect.cc:108
+#: ftparchive/cachedb.cc:77
#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr ""
+msgid "Unable to open DB file %s: %s"
+msgstr "Danegira %s nehate vekirin: %s"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Connecting to %s"
+msgid "Failed to stat %s"
msgstr ""
-#: methods/connect.cc:167
-#, fuzzy, c-format
-msgid "Could not resolve '%s'"
-msgstr "%s ji hev nehate veçirandin"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Tomara kontrola arşîvê tuneye"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
msgstr ""
-#: methods/connect.cc:176
+#: ftparchive/writer.cc:76
#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr ""
-
-#: methods/connect.cc:223
-#, fuzzy, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Nivîsandin ji bo %s ne pêkane"
+msgid "W: Unable to read directory %s\n"
+msgstr "W: pelrêça %s nayê xwendin\n"
-#: methods/gpgv.cc:65
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Couldn't access keyring: '%s'"
+msgid "W: Unable to stat %s\n"
msgstr ""
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
msgstr ""
-#: methods/gpgv.cc:213
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
+msgid "Failed to resolve %s"
+msgstr "%s ji hev nehate veçirandin"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
msgstr ""
-#: methods/gpgv.cc:249
-#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "Ev pakêtên NÛ dê werine sazkirin:"
-
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "%s venebû"
-#: methods/gpgv.cc:272
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Failed to stat %s"
+msgid " DeLink %s [%s]\n"
msgstr ""
-#: methods/gzip.cc:64
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't open pipe for %s"
+msgid "Failed to readlink %s"
msgstr ""
-#: methods/gzip.cc:109
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Read error from %s process"
+msgid "Failed to unlink %s"
msgstr ""
-#: methods/http.cc:377
-msgid "Waiting for headers"
+#: ftparchive/writer.cc:273
+#, c-format
+msgid "*** Failed to link %s to %s"
msgstr ""
-#: methods/http.cc:523
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Got a single header line over %u chars"
+msgid " DeLink limit of %sB hit.\n"
msgstr ""
-#: methods/http.cc:531
-msgid "Bad header line"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Di arşîvê de qada pakêtê tuneye"
+
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#, c-format
+msgid " %s has no override entry\n"
msgstr ""
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#, c-format
+msgid " %s maintainer is %s not %s\n"
msgstr ""
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
+#: ftparchive/writer.cc:620
+#, c-format
+msgid " %s has no source override entry\n"
msgstr ""
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/writer.cc:624
+#, c-format
+msgid " %s has no binary override entry either\n"
msgstr ""
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
+#: ftparchive/contents.cc:321
+#, c-format
+msgid "Internal error, could not locate member %s"
msgstr ""
-#: methods/http.cc:627
-msgid "Unknown date format"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
msgstr ""
-#: methods/http.cc:774
-#, fuzzy
-msgid "Select failed"
-msgstr " neserketî."
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#, c-format
+msgid "Unable to open %s"
+msgstr "%s venebû"
-#: methods/http.cc:779
-msgid "Connection timed out"
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#, c-format
+msgid "Malformed override %s line %lu #1"
msgstr ""
-#: methods/http.cc:802
-#, fuzzy
-msgid "Error writing to output file"
-msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
-
-#: methods/http.cc:833
-#, fuzzy
-msgid "Error writing to file"
-msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#, c-format
+msgid "Malformed override %s line %lu #2"
+msgstr ""
-#: methods/http.cc:861
-#, fuzzy
-msgid "Error writing to the file"
-msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#, c-format
+msgid "Malformed override %s line %lu #3"
+msgstr ""
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#, c-format
+msgid "Failed to read the override file %s"
msgstr ""
-#: methods/http.cc:877
-msgid "Error reading from server"
+#: ftparchive/multicompress.cc:72
+#, c-format
+msgid "Unknown compression algorithm '%s'"
msgstr ""
-#: methods/http.cc:1104
-msgid "Bad header data"
+#: ftparchive/multicompress.cc:102
+#, c-format
+msgid "Compressed output %s needs a compression set"
msgstr ""
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
msgstr ""
-#: methods/http.cc:1228
-msgid "Internal error"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
msgstr ""
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
msgstr ""
-#: apt-pkg/contrib/mmap.cc:85
-#, c-format
-msgid "Couldn't make mmap of %lu bytes"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
msgstr ""
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Selection %s not found"
+msgid "Internal error, failed to create %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:492
-#, c-format
-msgid "Opening configuration file %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
msgstr ""
-#: apt-pkg/contrib/configuration.cc:510
-#, c-format
-msgid "Line %d too long (max %u)"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:606
-#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:625
-#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
+msgid "Problem unlinking %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgid "Failed to rename %s to %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:689
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "E"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
+msgid "Regex compilation error - %s"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
msgstr ""
-#: apt-pkg/contrib/configuration.cc:702
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr ""
+msgid "but %s is installed"
+msgstr "lê %s sazkirî ye"
-#: apt-pkg/contrib/configuration.cc:736
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr ""
+msgid "but %s is to be installed"
+msgstr "lê %s dê were sazkirin"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, fuzzy, c-format
-msgid "Unable to read %s"
-msgstr "%s venebû"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "lê sazkirina wê ne gengaz e"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr ""
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "lê paketeke farazî ye"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "lê ne sazkirî ye"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "lê dê neyê sazkirin"
+
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " û"
+
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Ev pakêtên NÛ dê werine sazkirin:"
+
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Ev pakêt dê werine RAKIRIN:"
+
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Ev paket dê werine bilindkirin:"
+
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:124
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Command line option %s is not boolean"
+msgid "%s (due to %s) "
+msgstr "%s (ji ber %s)"
+
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Option %s requires an argument."
+msgid "%lu upgraded, %lu newly installed, "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
+msgid "%lu reinstalled, "
+msgstr "%lu ji nû ve sazkirî"
-#: apt-pkg/contrib/cmndline.cc:234
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
+msgid "%lu downgraded, "
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:265
-#, fuzzy, c-format
-msgid "Option '%s' is too long"
-msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
-
-#: apt-pkg/contrib/cmndline.cc:298
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "Sense %s is not understood, try true or false."
+msgid "%lu to remove and %lu not upgraded.\n"
msgstr ""
-#: apt-pkg/contrib/cmndline.cc:348
+#: cmdline/apt-get.cc:593
#, c-format
-msgid "Invalid operation %s"
+msgid "%lu not fully installed or removed.\n"
msgstr ""
-#: apt-pkg/contrib/cdromutl.cc:52
-#, fuzzy, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Nivîsandin ji bo %s ne pêkane"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Bindestî tên serrastkirin..."
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, fuzzy, c-format
-msgid "Unable to change to %s"
-msgstr "Nivîsandin ji bo %s ne pêkane"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " neserketî."
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:87
-#, fuzzy, c-format
-msgid "Could not open lock file %s"
-msgstr "Danegira %s nehate vekirin: %s"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Temam"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:436
-#, fuzzy, c-format
-msgid "Could not open file %s"
-msgstr "Danegira %s nehate vekirin: %s"
-
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
msgstr ""
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr ""
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Pelrêça daxistinê nayê quflekirin"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
msgstr ""
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
+#: cmdline/apt-get.cc:839
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "This APT does not support the versioning system '%s'"
+msgid "Need to get %sB of archives.\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
+#: cmdline/apt-get.cc:847
+#, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
+#: cmdline/apt-get.cc:850
+#, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
+#, c-format
+msgid "Couldn't determine free space in %s"
msgstr ""
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
+#: cmdline/apt-get.cc:871
+#, c-format
+msgid "You don't have enough free space in %s."
msgstr ""
-#: apt-pkg/pkgcache.cc:225
-#, fuzzy
-msgid "Recommends"
-msgstr "Paketên tên tawsiyê kirin:"
-
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
msgstr ""
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
+#: cmdline/apt-get.cc:891
+#, c-format
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
+#, c-format
+msgid "Failed to fetch %s %s\n"
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
msgstr ""
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
msgstr ""
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
msgstr ""
-#: apt-pkg/depcache.cc:122
-#, fuzzy
-msgid "Candidate versions"
-msgstr " Berendam: "
-
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
msgstr ""
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
msgstr ""
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "%s venebû"
-
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "%s ji hev nehate veçirandin"
-
-#: apt-pkg/tagfile.cc:102
-#, fuzzy, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Pakêt nehate dîtin %s"
-
-#: apt-pkg/tagfile.cc:189
-#, fuzzy, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Pakêt nehate dîtin %s"
-
-#: apt-pkg/sourcelist.cc:90
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
+msgid "Note, selecting %s instead of %s\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:92
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
+msgid "Package %s is not installed, so not removed\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
+msgid "Package %s is a virtual package provided by:\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Sazkirî]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
msgstr ""
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Opening %s"
+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 ""
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
msgstr ""
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Malformed line %u in source list %s (type)"
+msgid "Package %s has no installation candidate"
msgstr ""
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr ""
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
+msgid "%s is already the newest version.\n"
msgstr ""
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+msgid "Release '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Index file type '%s' is not supported"
+msgid "Version '%s' for '%s' was not found"
msgstr ""
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgid "Selected version %s (%s) for %s\n"
msgstr ""
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
msgstr ""
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
msgstr ""
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Ev pakêtên NÛ dê werine sazkirin:"
+
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-#: apt-pkg/acquire.cc:829
-#, c-format
-msgid "Retrieving file %li of %li"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-#: apt-pkg/acquire-worker.cc:110
-#, c-format
-msgid "The method driver %s could not be found."
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
msgstr ""
-#: apt-pkg/acquire-worker.cc:159
-#, c-format
-msgid "Method %s did not start correctly"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
msgstr ""
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr ""
+
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
+msgid "Couldn't find task %s"
+msgstr "Danegira %s nehate vekirin: %s"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Packaging system '%s' is not supported"
+msgid "Couldn't find package %s"
msgstr ""
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
msgstr ""
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Unable to stat %s."
-msgstr "Nivîsandin ji bo %s ne pêkane"
+msgid "%s set to manually installed.\n"
+msgstr "lê %s dê were sazkirin"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Paketên şikestî"
+
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Paketên tên pêşniyaz kirin:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Paketên tên tawsiyê kirin:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
msgstr ""
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Serneket"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Temam"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
+msgid "Unable to find a source package for %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
+msgid "Skipping already downloaded file '%s'\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
+msgid "You don't have enough free space in %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
+msgid "Need to get %sB/%sB of source archives.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
+msgid "Need to get %sB of source archives.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
+msgid "Fetch source %s\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
msgstr ""
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
+msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
+msgid "Unpack command '%s' failed.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:2290
+#, c-format
+msgid "Check if the 'dpkg-dev' package is installed.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
+msgid "Unable to get build-dependency information for %s"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+msgid "%s has no build depends.\n"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr ""
-
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-#, fuzzy
-msgid "Reading package lists"
-msgstr "Paketên şikestî"
-
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Unable to write to %s"
-msgstr "Nivîsandin ji bo %s ne pêkane"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
msgstr ""
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "rename failed, %s (%s -> %s)."
+msgid "Failed to satisfy %s dependency for %s: %s"
msgstr ""
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
msgstr ""
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
msgstr ""
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
msgstr ""
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:2647
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)"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
msgstr ""
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
msgstr ""
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
msgstr ""
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
msgstr ""
-#: apt-pkg/cdrom.cc:529
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
+msgid "Fetched %sB in %s (%sB/s)\n"
msgstr ""
-#: apt-pkg/cdrom.cc:563
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Stored label: %s\n"
-msgstr ""
+msgid " [Working]"
+msgstr " [Dixebite]"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Using CD-ROM mount point %s\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
msgstr ""
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
+#: dselect/install:32
+msgid "Bad default setting!"
msgstr ""
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
msgstr ""
-#: apt-pkg/cdrom.cc:671
-#, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
msgstr ""
-#: apt-pkg/cdrom.cc:708
-#, c-format
-msgid "Found label '%s'\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
msgstr ""
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
msgstr ""
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: dselect/install:103
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr ""
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr ""
-
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr ""
-
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, c-format
-msgid "Directory '%s' missing"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Di şixulandina pêrista %s de çewtî"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr " Sazkirî: "
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr ""
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Danegira %s nehate vekirin: %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr ""
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
+#: dselect/update:30
+msgid "Merging available information"
msgstr ""
#: apt-inst/contrib/extracttar.cc:114
msgid "The diversion path is too long"
msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr ""
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr ""
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, fuzzy, c-format
+msgid "Unable to read %s"
+msgstr "%s venebû"
+
#: apt-inst/extract.cc:491
#, fuzzy, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr ""
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+#, fuzzy
+msgid "Reading package lists"
+msgstr "Paketên şikestî"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr ""
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr ""
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
+#: methods/cdrom.cc:114
+#, fuzzy, c-format
+msgid "Unable to read the cdrom database %s"
msgstr "Pakêt nehate dîtin %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Navên paketan bi giştî :"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Pakêtên normal:"
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr ""
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pakêtên farazî yên safî:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pakêta tenê ya farazî:"
+#: methods/cdrom.cc:171
+#, fuzzy
+msgid "Disk not found."
+msgstr "(nehate dîtin)"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Pakêtên hevbeş yên farazî:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+#, fuzzy
+msgid "File not found"
+msgstr "(nehate dîtin)"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Winda: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+#, fuzzy
+msgid "Failed to stat"
+msgstr "%s venebû"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Guhertoyên vekirî yên giştî:"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr ""
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Guhertoyên vekirî yên giştî:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr ""
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Bindestên giştî:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr ""
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
msgstr ""
-#: cmdline/apt-cache.cc:302
+#: methods/ftp.cc:173
#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Guhertoyên vekirî yên giştî:"
+msgid "Unable to determine the local name"
+msgstr "Nivîsandin ji bo %s ne pêkane"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
msgstr ""
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Cihê giştî yê sist:"
-
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Cihê giştî yê veqetandî: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakêta dosya %s li derveyî demê ye."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr ""
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Pêwist e tu mînakekê bidî"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr ""
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Pakêt nayên dîtin"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr ""
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pelgehên Pakêt:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr ""
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
msgstr ""
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr ""
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
msgstr ""
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nehate dîtin)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr ""
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Sazkirî: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr ""
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ne tiştek)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Berendam: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr ""
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Destika pakêtê:"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr ""
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabloya guhertoyan:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr ""
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr ""
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s ji bo %s %s komkirî di %s %s de\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr ""
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
msgstr ""
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr ""
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr ""
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
msgstr ""
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
msgstr ""
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
msgstr ""
-"Bikaranîn: apt-config [vebijark] ferman\n"
-"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n"
-"\n"
-"Ferman\n"
-" shell - moda shell\n"
-" dump - Mîhengan nîşan dide\n"
-"\n"
-"Vebijark:\n"
-" -h Ev dosyeya alîkariyê ye.\n"
-" -c=? Dosyeya mîhengan nîşan dide\n"
-" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. "
-"mînak -o dir::cache=/tmp\n"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
+#, fuzzy, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Danegira %s nehate vekirin: %s"
+
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr ""
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ne paketeke DEB ya derbasdar e."
+msgid "Data transfer failed, server said '%s'"
+msgstr ""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
msgstr ""
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?"
+#: methods/ftp.cc:1109
+#, fuzzy
+msgid "Unable to invoke "
+msgstr "%s venebû"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Di şixulandina pêrista %s de çewtî"
+msgid "[IP: %s %s]"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Dema şixulandina naveroka %s çewtî"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr ""
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
msgstr ""
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
msgstr ""
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:167
+#, fuzzy, c-format
+msgid "Could not resolve '%s'"
+msgstr "%s ji hev nehate veçirandin"
+
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in"
+msgid "Temporary failure resolving '%s'"
+msgstr ""
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB xerabe ye, navê dosyeyê weke %s.old hate guherandin"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr ""
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
+#, fuzzy, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Nivîsandin ji bo %s ne pêkane"
+
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Danegir kevn e, ji bo bilindkirina %s hewl dide"
+msgid "Couldn't access keyring: '%s'"
+msgstr ""
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Danegira %s nehate vekirin: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Tomara kontrola arşîvê tuneye"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr ""
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "Ev pakêtên NÛ dê werine sazkirin:"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-#: ftparchive/writer.cc:76
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: pelrêça %s nayê xwendin\n"
+msgid "Couldn't open pipe for %s"
+msgstr ""
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
+msgid "Read error from %s process"
msgstr ""
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr ""
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr ""
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr ""
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr ""
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr ""
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr ""
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr ""
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr ""
+
+#: methods/http.cc:774
+#, fuzzy
+msgid "Select failed"
+msgstr " neserketî."
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr ""
+
+#: methods/http.cc:802
+#, fuzzy
+msgid "Error writing to output file"
+msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+
+#: methods/http.cc:833
+#, fuzzy
+msgid "Error writing to file"
+msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+
+#: methods/http.cc:861
+#, fuzzy
+msgid "Error writing to the file"
+msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr ""
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr ""
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
msgstr ""
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "%s ji hev nehate veçirandin"
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr ""
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
msgstr ""
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "%s venebû"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr ""
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
+msgid "Selection %s not found"
msgstr ""
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
+msgid "Unrecognized type abbreviation: '%c'"
msgstr ""
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
+msgid "Opening configuration file %s"
msgstr ""
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "*** Failed to link %s to %s"
+msgid "Line %d too long (max %u)"
msgstr ""
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " DeLink limit of %sB hit.\n"
+msgid "Syntax error %s:%u: Block starts with no name."
msgstr ""
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Di arşîvê de qada pakêtê tuneye"
-
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s has no override entry\n"
+msgid "Syntax error %s:%u: Malformed tag"
msgstr ""
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s maintainer is %s not %s\n"
+msgid "Syntax error %s:%u: Extra junk after value"
msgstr ""
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no source override entry\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s has no binary override entry either\n"
+msgid "Syntax error %s:%u: Too many nested includes"
msgstr ""
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "Internal error, could not locate member %s"
+msgid "Syntax error %s:%u: Included from here"
msgstr ""
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
+#: apt-pkg/contrib/configuration.cc:707
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
msgstr ""
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Unable to open %s"
-msgstr "%s venebû"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr ""
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #1"
+msgid "%c%s... Error!"
msgstr ""
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #2"
+msgid "%c%s... Done"
msgstr ""
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #3"
+msgid "Command line option '%c' [from %s] is not known."
msgstr ""
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Failed to read the override file %s"
+msgid "Command line option %s is not understood"
msgstr ""
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Unknown compression algorithm '%s'"
+msgid "Command line option %s is not boolean"
msgstr ""
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Compressed output %s needs a compression set"
+msgid "Option %s requires an argument."
msgstr ""
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
msgstr ""
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
msgstr ""
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr ""
+#: apt-pkg/contrib/cmndline.cc:265
+#, fuzzy, c-format
+msgid "Option '%s' is too long"
+msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr ""
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
+msgid "Sense %s is not understood, try true or false."
msgstr ""
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
msgstr ""
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr ""
+#: apt-pkg/contrib/cdromutl.cc:52
+#, fuzzy, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Nivîsandin ji bo %s ne pêkane"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr ""
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, fuzzy, c-format
+msgid "Unable to change to %s"
+msgstr "Nivîsandin ji bo %s ne pêkane"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
msgstr ""
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
+msgid "Not using locking for read only lock file %s"
msgstr ""
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "E"
+#: apt-pkg/contrib/fileutl.cc:87
+#, fuzzy, c-format
+msgid "Could not open lock file %s"
+msgstr "Danegira %s nehate vekirin: %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
+msgid "Not using locking for nfs mounted lock file %s"
msgstr ""
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
msgstr ""
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "lê %s sazkirî ye"
+msgid "Waited for %s but it wasn't there"
+msgstr ""
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "lê %s dê were sazkirin"
-
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "lê sazkirina wê ne gengaz e"
-
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "lê paketeke farazî ye"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "lê ne sazkirî ye"
-
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "lê dê neyê sazkirin"
-
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " û"
-
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Ev pakêtên NÛ dê werine sazkirin:"
+msgid "Sub-process %s received a segmentation fault."
+msgstr ""
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Ev pakêt dê werine RAKIRIN:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr ""
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
msgstr ""
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Ev paket dê werine bilindkirin:"
+#: apt-pkg/contrib/fileutl.cc:436
+#, fuzzy, c-format
+msgid "Could not open file %s"
+msgstr "Danegira %s nehate vekirin: %s"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
msgstr ""
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
msgstr ""
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (ji ber %s)"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr ""
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
msgstr ""
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
msgstr ""
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ji nû ve sazkirî"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr ""
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
msgstr ""
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
msgstr ""
-#: cmdline/apt-get.cc:590
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu not fully installed or removed.\n"
+msgid "This APT does not support the versioning system '%s'"
msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Bindestî tên serrastkirin..."
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr ""
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " neserketî."
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr ""
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
msgstr ""
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Temam"
+#: apt-pkg/pkgcache.cc:225
+#, fuzzy
+msgid "Recommends"
+msgstr "Paketên tên tawsiyê kirin:"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
msgstr ""
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
msgstr ""
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
msgstr ""
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
msgstr ""
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
msgstr ""
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
msgstr ""
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
msgstr ""
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
msgstr ""
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
msgstr ""
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
msgstr ""
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Pelrêça daxistinê nayê quflekirin"
+#: apt-pkg/depcache.cc:122
+#, fuzzy
+msgid "Candidate versions"
+msgstr " Berendam: "
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
msgstr ""
-#: cmdline/apt-get.cc:836
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
msgstr ""
-#: cmdline/apt-get.cc:839
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s venebû"
+
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "%s ji hev nehate veçirandin"
+
+#: apt-pkg/tagfile.cc:102
+#, fuzzy, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Pakêt nehate dîtin %s"
+
+#: apt-pkg/tagfile.cc:189
+#, fuzzy, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Pakêt nehate dîtin %s"
+
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "Need to get %sB of archives.\n"
+msgid "Malformed line %lu in source list %s (URI)"
msgstr ""
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+msgid "Malformed line %lu in source list %s (dist)"
msgstr ""
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Couldn't determine free space in %s"
+msgid "Malformed line %lu in source list %s (absolute dist)"
msgstr ""
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "You don't have enough free space in %s."
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
msgstr ""
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
msgstr ""
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Malformed line %u in source list %s (type)"
msgstr ""
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
msgstr ""
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
msgstr ""
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/packagemanager.cc:399
#, c-format
-msgid "Failed to fetch %s %s\n"
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
msgstr ""
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
msgstr ""
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Retrieving file %li of %li"
msgstr ""
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
+msgid "The method driver %s could not be found."
msgstr ""
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
+msgid "Method %s did not start correctly"
msgstr ""
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Sazkirî]"
-
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr ""
+#: apt-pkg/acquire-worker.cc:398
+#, fuzzy, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:124
#, 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"
+msgid "Packaging system '%s' is not supported"
msgstr ""
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
msgstr ""
-#: cmdline/apt-get.cc:1128
-#, c-format
-msgid "Package %s has no installation candidate"
-msgstr ""
+#: apt-pkg/clean.cc:57
+#, fuzzy, c-format
+msgid "Unable to stat %s."
+msgstr "Nivîsandin ji bo %s ne pêkane"
-#: cmdline/apt-get.cc:1148
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-#: cmdline/apt-get.cc:1156
-#, c-format
-msgid "%s is already the newest version.\n"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-#: cmdline/apt-get.cc:1185
-#, c-format
-msgid "Release '%s' for '%s' was not found"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-#: cmdline/apt-get.cc:1187
-#, c-format
-msgid "Version '%s' for '%s' was not found"
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
msgstr ""
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Selected version %s (%s) for %s\n"
+msgid "Did not understand pin type %s"
msgstr ""
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
msgstr ""
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
msgstr ""
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
msgstr ""
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
msgstr ""
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Ev pakêtên NÛ dê werine sazkirin:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:153
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
msgstr ""
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
msgstr ""
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:182
+#, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
msgstr ""
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
+#: apt-pkg/pkgcachegen.cc:213
+#, c-format
+msgid "Error occurred while processing %s (NewVersion1)"
msgstr ""
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
+#: apt-pkg/pkgcachegen.cc:217
+#, c-format
+msgid "Error occurred while processing %s (UsePackage3)"
msgstr ""
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Danegira %s nehate vekirin: %s"
-
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Couldn't find package %s"
+msgid "Error occurred while processing %s (NewVersion2)"
msgstr ""
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
+msgid "Error occurred while processing %s (NewFileDesc2)"
msgstr ""
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "lê %s dê were sazkirin"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr ""
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr ""
+
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
-#: cmdline/apt-get.cc:1742
-msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
msgstr ""
-#: cmdline/apt-get.cc:1750
-msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
msgstr ""
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Paketên şikestî"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Paketên tên pêşniyaz kirin:"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr ""
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Paketên tên tawsiyê kirin:"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr ""
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
msgstr ""
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Temam"
+#: apt-pkg/acquire-item.cc:127
+#, c-format
+msgid "rename failed, %s (%s -> %s)."
+msgstr ""
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/acquire-item.cc:1213
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
+msgid ""
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/acquire-item.cc:1272
#, c-format
-msgid "You don't have enough free space in %s"
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
msgstr ""
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Fetch source %s\n"
+msgid "Vendor block %s contains no fingerprint"
msgstr ""
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
msgstr ""
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unpack command '%s' failed.\n"
+msgid "Stored label: %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
msgstr ""
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Build command '%s' failed.\n"
+msgid "Using CD-ROM mount point %s\n"
msgstr ""
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
msgstr ""
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
msgstr ""
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
msgstr ""
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
msgstr ""
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:678
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Found label '%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
msgstr ""
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-#: cmdline/apt-get.cc:2557
-#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
msgstr ""
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
msgstr ""
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
msgstr ""
-#: cmdline/apt-get.cc:2634
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#, c-format
+msgid "Wrote %i records.\n"
msgstr ""
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#, c-format
+msgid "Wrote %i records with %i missing files.\n"
msgstr ""
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#, c-format
+msgid "Wrote %i records with %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#, c-format
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-#: cmdline/acqprogress.cc:114
-msgid "Err "
+#: apt-pkg/deb/dpkgpm.cc:513
+#, c-format
+msgid "Directory '%s' missing"
msgstr ""
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
+msgid "Preparing %s"
msgstr ""
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid " [Working]"
-msgstr " [Dixebite]"
+msgid "Unpacking %s"
+msgstr ""
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
+msgid "Preparing to configure %s"
msgstr ""
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
msgstr ""
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Di şixulandina pêrista %s de çewtî"
-#: dselect/install:32
-msgid "Bad default setting!"
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr " Sazkirî: "
+
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
msgstr ""
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
+#: apt-pkg/deb/dpkgpm.cc:618
+#, c-format
+msgid "Removing %s"
msgstr ""
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
+#: apt-pkg/deb/dpkgpm.cc:619
+#, c-format
+msgid "Removed %s"
msgstr ""
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
msgstr ""
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
msgstr ""
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-#: dselect/update:30
-msgid "Merging available information"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Danegira %s nehate vekirin: %s"
+
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
msgstr ""
#, fuzzy
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-08-09 16:17+0200\n"
"Last-Translator: Priti Patil <prithisd@gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे "
-"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "चूकीची सी-डी रॉम"
-
-#: methods/cdrom.cc:166
-#, fuzzy, c-format
-#| msgid " Unable to unmount the CD-ROM in %s, it may still be in use."
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "%s मध्ये सीडी-रॉम माऊंट करण्यास असमर्थ,अजूनही ते वापरता येऊ शकेल."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "डिस्क सापडत नाही"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "फाईल सापडली नाही"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "स्टॅट करण्यास असमर्थ"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "बदलण्याचा वेळ निश्चित करण्यास असमर्थ"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //"
-
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "लॉग इन करत आहे"
-
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ"
-
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "स्थानिक नाव सांगण्यास असमर्थ"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n"
-#: methods/ftp.cc:204 methods/ftp.cc:232
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "सरà¥\8dवà¥\8dहर नà¥\87 सà¤\82बà¤\82ध à¤\9cà¥\8bडणà¥\8dयास नà¤\95ार दिला व साà¤\82à¤\97ितलà¥\87: %s"
+msgid "Unable to locate package %s"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c %s शà¥\8bधणà¥\8dयास à¤\85समरà¥\8dथ à¤\86हà¥\87"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "पॅकेजची सर्व नांवे: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " सामान्य पॅकेजेस्: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन "
-"निरर्थक आहे."
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " शुध्द आभासी पॅकेजेस्:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " एकमेव आभासी पॅकेजेस्:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr "मिश्रित आभासी पॅकेजेस्:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "वेळेअभावी संबंध जोडता येत नाही"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " हरवलेले/गहाळ: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "सरà¥\8dवà¥\8dहरनà¥\87 सà¤\82बà¤\82ध à¤\9cà¥\8bडणà¥\80 बà¤\82द à¤\95à¥\87लà¥\80"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "à¤\8fà¤\95à¥\82ण सà¥\8dपषà¥\8dà¤\9f à¤\86वà¥\83तà¥\8dया: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "त्रुटी वाचा"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "एकूण स्पष्ट आवृत्या: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "पà¥\8dरतिसाधानà¥\87 बफर à¤à¤°à¥\81न à¤\97à¥\87लà¥\87."
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "à¤\8fà¤\95à¥\82ण निरà¥\8dà¤à¤°à¤¤à¤¾:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "पà¥\8dरà¥\8bà¤\9fà¥\8bà¤\95à¥\89ल à¤\96राब à¤\9dालà¥\87"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "à¤\8fà¤\95à¥\82ण वà¥\8dहà¥\80à¤\88à¤\86र/सà¤\82à¤\9aिà¤\95ा परसà¥\8dपर सà¤\82बà¤\82ध:"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "लिहिण्यात त्रुटी"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "सà¥\89à¤\95à¥\87à¤\9f तयार à¤\95रà¥\82 शà¤\95त नाहà¥\80"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "à¤\8fà¤\95à¥\82ण मà¥\85पà¥\80à¤\82à¤\97सà¥\8d तरतà¥\82द: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "डà¥\87à¤\9fा सà¥\89à¤\95à¥\87à¤\9f à¤\9cà¥\8bडà¥\82 शà¤\95त नाहà¥\80,à¤\9cà¥\8bडणà¥\80 वà¥\87ळà¥\87à¤\85à¤à¤¾à¤µà¥\80 बà¤\82द à¤\95à¥\87लà¥\80"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "à¤\8fà¤\95à¥\82ण à¤\8fà¤\95तà¥\8dरित à¤\85à¤\95à¥\8dषरसà¤\82à¤\9a:"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "à¤\85समरà¥\8dथ"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "à¤\8fà¤\95à¥\82ण परावलà¤\82बित à¤\86वà¥\83तà¥\8dतà¥\80 à¤\85वà¤\95ाश:"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "पà¥\85सिवà¥\8dह सà¥\89à¤\95à¥\87à¤\9f à¤\9cà¥\8bडता यà¥\87त नाहà¥\80"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "à¤\8fà¤\95à¥\82ण दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\85वà¤\95ाश:"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "à¤\97à¥\87à¤\9fà¤\85à¥\85डà¥\8dरà¥\87सà¤\87नफà¥\8b लिसनिà¤\82à¤\97 सà¥\89à¤\95à¥\87à¤\9f à¤\98à¥\87णà¥\8dयास à¤\85समरà¥\8dथ हà¥\8bतà¥\87"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "हिशà¥\87बात à¤\98à¥\87तलà¥\87लà¥\80 à¤\8fà¤\95à¥\82ण à¤\85वà¤\95ाश(à¤\9cाà¤\97ा):"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "सॉकेट चिकटवता येत नाही"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "सà¥\89à¤\95à¥\87à¤\9f वर à¤\90à¤\95ता यà¥\87त नाहà¥\80"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "तà¥\81मà¥\8dहाला फà¤\95à¥\8dत à¤\8fà¤\95à¤\9a नमà¥\81ना दà¥\8dयावा लाà¤\97à¥\87ल"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "सà¥\89à¤\95à¥\87à¤\9fà¤\9aà¥\87 नाव साà¤\82à¤\97ता यà¥\87त नाहà¥\80"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "पà¥\85à¤\95à¥\87à¤\9cà¥\87स सापडलà¥\87 नाहà¥\80त"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "पà¥\8bरà¥\8dà¤\9f à¤\86à¤\9cà¥\8dà¤\9eा पाठवता यà¥\87त नाहà¥\80/पà¥\8bरà¥\8dà¤\9f à¤\86à¤\9cà¥\8dà¤\9eा पाठविणà¥\8dयास à¤\85समरà¥\8dथ"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c सà¤\82à¤\9aिà¤\95ा:"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "दृतिका सिंक नाही,पॅकेज संचिका क्ष-संदर्भ करता येत नाही"
-#: methods/ftp.cc:798
+#: cmdline/apt-cache.cc:1532
#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले"
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "एकत्रित पॅकेजेस:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "जोडणी स्विकारण्यास असमर्थ"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(मिळाले नाही)"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "फाईल हॅश करण्यात त्रुटी"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr "अधिष्ठापित केले:"
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(कोणताच नाही)"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "डेटा सॉकेट वेळेअभावी तुटले"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr "उमेदवार:"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr "पॅकेज (पिन):"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "पà¥\8dरशà¥\8dन"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr "à¤\86वà¥\83तà¥\8dतà¥\80 à¤\95à¥\8bषà¥\8dà¤\9fà¤\95:"
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "जारी करण्यास करण्यास असमर्थ"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "%s (%s) ला जोडत आहे"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[आयपी:%s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही"
+#: cmdline/apt-cache.cc:1618
+#, fuzzy, c-format
+msgid " %4i %s\n"
+msgstr "%4i %s\n"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s करिता %s %s वर संग्रहित\n"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "%s:%s (%s) ला जोडू शकत नाही"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"उपयोग:अॅप्ट-कॅश(पर्याय) आज्ञा\n"
+" अॅप्ट-कॅश(पर्याय) मिळवा संचिका १[संचिका २.... ]\n"
+" अॅप्ट-कॅश (पर्याय )दाखवा pkg1 [pkg2 ...]\n"
+"अॅप्ट कॅश (पर्याय) दाखवाsrc pkg1 [pkg2 ...]\n"
+"\n"
+"च्याAPT चे द्वयंक कॅश संचिता कौशल्याने हाताळण्यासाठी अॅप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n"
+"कॅश संचिका व त्यातील माहितीसाठी पृच्छा करा\n"
+"\n"
+"आज्ञावली\n"
+" मिळवा-उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n"
+"जेन कॅशेस-पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n"
+"शो पॅकेज-एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n"
+"शोएसआरसी-उगमस्थानाचा माहितीसंच दाखवा\n"
+" स्टॅट्स-काही पायाभूत आकडेवारी दाखवा\n"
+"डंप -संपूर्ण संचिका थोडक्यात दाखवा\n"
+"डंप अॅव्हेल-स्टंॅड आऊटसाठी उपलब्ध संचिका छापा\n"
+"अनमेट- न आठवलेली परावलंबने दाखवा\n"
+"शोधा-regex नमुन्यासाठी पॅकेजची यादी शोधा\n"
+"दाखवा -पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n"
+"अवलंबित -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n"
+"अतिअवलंबित -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n"
+" पॅकेज नावे- सर्व पॅकेजेससाठी यादी तयार करा\n"
+"डॉटी-ग्राफ व्हिससाठी पॅकेज आलेलं निर्माण करा\n"
+"xvcg-xvcg साठी पॅकेज आलेलं निर्माण करा\n"
+"धोरण -धोरण निर्धारणे दाखवा\n"
+"\n"
+"पर्याय : \n"
+"-h -हा साह्याकारी मजकूर\n"
+"-p=? पॅकेज कॅश \n"
+"-s=? उगमस्थान कॅश \n"
+"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n"
+"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n"
+"-c=? ही संरचना संचिका वाचा\n"
+"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n"
+"अधिक माहितीसाठी मार्गदर्शन पुस्तिकेचा अॅप्ट-कॅश(८) व अॅप्ट -कॉन्फ(५) ही पृष्ठे पहा \n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "%s ला जोडत आहे"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "%s रिझॉल्व्ह होऊ शकत नाही "
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "चलितमूल्य जोडीने नाहीत"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "%s %s ला जोडण्यास असमर्थ:"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"उपयोग : अॅप्ट-कॉन्फिग(पर्याय) आज्ञा \n"
+"\n"
+"अॅप्ट कन्फिग संचिता वाचण्यासाठी अॅप्ट-कन्फिग हे एक साधन आहे\n"
+"\n"
+"आज्ञावली : \n"
+"शेल - शेल मोड \n"
+"डंप - संरचना दाखवा \n"
+"\n"
+"पर्याय : \n"
+" -h हा साह्याकारी मजकूर \n"
+" -c= ? ही संरचना संचिका वाचा \n"
+" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "'%s': कीरिंग पर्यंत पोहोचू शकत नाही"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"दोष: ::gpgv:: कडून प्राप्त झालेला ऑर्गुमेंट सूचीचा पर्याय खूप लांबीचा. बाहेर पडत आहे."
+msgid "%s not a valid DEB package."
+msgstr "%s हे वैध डीईबी पॅकेज नाही "
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "किमान एक अवैध सही सापडली."
-
-#: methods/gpgv.cc:213
-#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gnupg संस्थापित केले आहे का?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी"
+"उपयोग : अॅप्ट - एक्स्ट्रॅक्ट टेंप्लेट्स संचिका १[संचिका २..... ]\n"
+" \n"
+"अॅप्ट- एक्स्टॅक्ट टेंम्प्लेट्स हे संरचना व नमुन्याची माहिती काढण्याचे साधन आहे \n"
+"डेबियन पॅकेजेस मधून \n"
+"\n"
+"पर्याय : \n"
+" -h हा साह्याकारी मजकूर \n"
+" -t टेंप डिर निर्धारित करा \n"
+" -c=? ही संरचना संचिका वाचा \n"
+" -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा जसे- -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "खालील सह्या अवैध आहेत:\n"
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
+#, c-format
+msgid "Unable to write to %s"
+msgstr "%s मध्ये लिहिण्यास असमर्थ "
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "debconf आवृत्ती मिळू शकत नाही,debconf अधिष्ठापित झाली काय?"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "%s स्टेट करण्यास असमर्थ"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "पॅकेजेसची विस्तारित यादी खूप मोठी आहे"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "%s साठी पाईप उघडता येत नाही"
+msgid "Error processing directory %s"
+msgstr "त्रुटी प्रक्रिया मार्गदर्शिका%s "
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "%s क्रियेपासून चूक वाचा"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "उगमस्थानाची विस्तारित यादी खूप मोठी आहे"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "शीर्षकासाठी थांबले आहे...."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "शीर्षक संचिकेमधून मजकूर संचिकेत लिहिण्यात त्रुटी"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "%u अक्षरांवर एक शीर्षक ओळ मिळाली"
+msgid "Error processing contents %s"
+msgstr "त्रुटी प्रक्रिया मजकूर %s"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "वाईट शीर्षक ओळ"
+#: ftparchive/apt-ftparchive.cc:553
+#, fuzzy
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"उपयोग : अॅप्ट -एफटीपीआरकाईव्ह (पर्याय) आज्ञावली \n"
+" आज्ञावली : पॅकेजेस द्वयंकमार्ग [ओव्हरराईड फाईल] [मार्ग उपसर्ग]\n"
+"उगमस्थान srcpath [ओव्हरराईड फाईल][मार्ग उपसर्ग]\n"
+"मजकूर मार्ग \n"
+"मोचन मार्ग \n"
+"संरचना(गट) निर्माण करा\n"
+" स्वच्छ संरचना \n"
+"\n"
+"अॅप्ट- एफटीपी फाईल संच डेबियन फाईलसंचासाठी अनुक्रम संचिका निर्माण करतो.तो\n"
+" dpkg स्कॅन पॅकेजेस व dpkg स्कॅनपॅकेजेस करतो.संपूर्ण स्वंयंचलित ते कार्याकारी बदल\n"
+" करण्यासाठी अनेक शैलींची निर्मिती करण्यास पुष्टि देतो\n"
+"\n"
+"अॅप्ट-एफटीपी फाईलसंच डेब्जच्या तरुरचनेपासून पॅकेज संचिका निर्माण करतो \n"
+"पॅकेज संचिकेमध्ये प्रत्येक पॅकेज तसेच एमडी५ हॅश व संचिकाआकारामधील सर्व \n"
+" नियंत्रक क्षेत्रांची माहिती असते.अग्रक्रम आणि विभाग यांच्या मूल्यांचा प्रभाव \n"
+"वाढविण्यासाठी ओव्हरराईड संचिकेला पुष्टि दिलेली असते \n"
+"\n"
+"तसेच अॅप्ट-एफटीपी फाईलसंच dscs च्या तरूरचनेपासून उगमस्थान संचिका निर्माण करतो \n"
+" उगमस्थान - ओव्हरराईड पर्यायाचा उपयोग एखाद्या src ओव्हरराईड संचिका नेमकेपणाने "
+"दाखविण्यास होतो \n"
+"\n"
+"'पॅकेजेस' आणि 'उगमस्थान' आज्ञावली तरूरचनेच्या मुळाशी दिल्या जाव्यात \n"
+"द्वयंक मार्गाचा निर्देश पुनरावर्ती शोधाच्या पाऱ्याकडे केलेला असावा आणि \n"
+" ओव्हरराईड संचिकेमध्ये ओव्हरराईड संकेत (फ्लॅग्ज) असावेत आणि \n"
+" संचिकानामक्षेत्रे असल्यास मार्ग उपसर्ग त्यांना जोडलेले असावेत.\n"
+"डेबियन फाईलसंचामधील नमुन्यादाखल उपयोग : \n"
+"अॅप्ट-एफटीपी फाईलसंच पॅकेजेस डिस्ट्स/पोटॅटो/मेन/द्वयंक-३८६/>\\\n"
+"डिस्ट्स/पोटॅटो/मेन/द्वयंक- ३८६/पॅकेजेस \n"
+"\n"
+"पर्याय : \n"
+" -h हा साह्याकारी मजकूर \n"
+"--md5 MD5 ची निर्मिती नियंत्रित करा \n"
+" -s= उगमस्थान ओव्हरराईड संचिका \n"
+" -q शांत \n"
+" -d= पर्यायी दृतिकादायी डेटाबेस निवडा \n"
+"--no-delink दुवा तोडणारा डिबग मार्ग समर्थ करा \n"
+" ---contents माहिती संचिकेची निर्मिती नियंत्रित करा \n"
+" -c= ही संरचना संचिका वाचा \n"
+" -o= एखादा अहेतुक संरचना पर्याय निर्धारित करा"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "निवडक भाग जुळत नाही"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले "
+#: ftparchive/apt-ftparchive.cc:832
+#, fuzzy, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "%s पॅकेज संचिका समुहातील काही संचिका सापडत नाही"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले"
+#: ftparchive/cachedb.cc:43
+#, fuzzy, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB खराब झाली होती,संचिका %s जुने म्हणून पुनर्नामांकित केली"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB जुने आहे,%s पुढच्या आवृतीसाठी प्रयत्न करत आहे"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "अपरिचित दिनांक प्रकार/स्वरूप "
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB स्वरुप वैध नाही. जर तुम्ही apt च्या जुन्या आवृत्तीपासून पुढिल आवृत्तीकृत करत असाल तर, "
+"कृपया माहितीसंच काढून टाका आणि पुनर्निर्मित करा"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "चुकले/असमर्थ निवड करा"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "%s: %s DB संचिका उघडण्यास असमर्थ"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "जोडणी वेळेअभावी तुटली"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "%s स्टेट करण्यास असमर्थ"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "निरà¥\8dà¤\97त फाà¤\88ल मधà¥\8dयà¥\87 लिहिताना तà¥\8dरà¥\81à¤\9fà¥\80/à¤\9aà¥\82à¤\95"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "à¤\85रà¥\8dà¤\95ाà¤\88वà¥\8dह मधà¥\8dयà¥\87 नियà¤\82तà¥\8dरण माहितà¥\80 सà¤\82à¤\9a नाहà¥\80"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "फाà¤\88ल मधà¥\8dयà¥\87 लिहिणà¥\8dयात à¤\9aà¥\82à¤\95/तà¥\8dरà¥\81à¤\9fà¥\80"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "सà¤\82à¤\95à¥\87तà¤\95 à¤\98à¥\87णà¥\8dयास à¤\85समरà¥\8dथ"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "धोक्याची सूचना:%s संचयिका वाचण्यास असमर्थ \n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "धो.सू.:%s स्टेट करण्यास असमर्थ\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "सर्व्हर मधून वाचण्यात चूक"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E:"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "à¤\9aà¥\81à¤\95à¥\80à¤\9aा शà¥\80रà¥\8dषà¤\95 डाà¤\9fा"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "धà¥\8b.सà¥\82.:"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "à¤\9cà¥\8bडणà¥\80 à¤\85यशसà¥\8dवà¥\80"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "à¤\88: सà¤\82à¤\9aिà¤\95à¥\87ला लाà¤\97à¥\82 हà¥\8bणाऱà¥\8dया à¤\9aà¥\81à¤\95ा"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "अंतर्गत त्रुटी"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "%s सोडवण्यास असमर्थ"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "रिà¤\95ामà¥\80 फाà¤\88ल mmap à¤\95रता यà¥\87णार नाहà¥\80"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "à¤\9fà¥\8dरà¥\80 à¤\9aालणà¥\87 à¤\85समरà¥\8dथ"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "mmap चे %lu बाईटस् करता येणार नाहीत"
+msgid "Failed to open %s"
+msgstr "%s उघडण्यास असमर्थ"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "%s निवडक भाग सापडत नाही"
-
-#: apt-pkg/contrib/configuration.cc:434
-#, fuzzy, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार "
+msgid " DeLink %s [%s]\n"
+msgstr "%s [%s] डी दुवा\n"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Opening configuration file %s"
-msgstr "%s संरचना फाईल उघडत आहे"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-#| msgid "Line %d too long (max %d)"
-msgid "Line %d too long (max %u)"
-msgstr "ओळ %d खूप लांब (कमाल %d)"
+msgid "Failed to readlink %s"
+msgstr "%s वाचणारा दुवा असमर्थ"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो."
+msgid "Failed to unlink %s"
+msgstr "%s दुवा काढण्यास असमर्थ"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग"
+msgid "*** Failed to link %s to %s"
+msgstr "%s चा %s दुवा साधण्यास असमर्थ"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक"
+msgid " DeLink limit of %sB hit.\n"
+msgstr "%sB हीट ची डिलींक मर्यादा\n"
-#: apt-pkg/contrib/configuration.cc:682
-#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "अर्काईव्ह ला पॅकेज जागा नाही"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्"
+msgid " %s has no override entry\n"
+msgstr "%s ला ओव्हरराईड/दुर्लक्षित जागा नाही\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट "
+msgid " %s maintainer is %s not %s\n"
+msgstr "%s देखभालकर्ता हा %s आणि %s नाही \n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी"
+msgid " %s has no source override entry\n"
+msgstr "%s ला उगम ओव्हरराईड/दुर्लक्षित जागा नाही\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक"
+msgid " %s has no binary override entry either\n"
+msgstr "%s ला द्वयंक ओव्हरराईड जागा नाही\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Unable to read %s"
-msgstr "%s वाचण्यास असमर्थ"
+msgid "Internal error, could not locate member %s"
+msgstr "अंतर्गत त्रुटी,%s मेंबर शोधू शकत नाही"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... चूक/त्रुटी!"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc-स्मरणस्थळ शोधण्यास असमर्थ"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... झाले"
+msgid "Unable to open %s"
+msgstr "%s उघडण्यास असमर्थ"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "à¤\86दà¥\87श रà¥\87à¤\96ा परà¥\8dयाय '%c' [पासà¥\82न %s] हà¥\87 माहित नाहà¥\80."
+msgid "Malformed override %s line %lu #1"
+msgstr "वà¥\8dयà¤\82à¤\97à¥\80त/हिडà¥\80स दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95à¥\87लà¥\87 %s रà¥\87षा %lu #1"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "à¤\86दà¥\87श रà¥\87à¤\96ा परà¥\8dयाय %s नà¥\80à¤\9f समà¤\9cला नाहà¥\80"
+msgid "Malformed override %s line %lu #2"
+msgstr "वà¥\8dयà¤\82à¤\97à¥\80त/हिडà¥\80स दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95à¥\87लà¥\87 %s रà¥\87षा %lu #2"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "à¤\86दà¥\87श रà¥\87à¤\96ा परà¥\8dयाय %s हà¥\87 बà¥\82लियन नाहà¥\80"
+msgid "Malformed override %s line %lu #3"
+msgstr "वà¥\8dयà¤\82à¤\97à¥\80त/हिडà¥\80स दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95à¥\87लà¥\87 %s रà¥\87षा %lu #3"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s requires an argument."
-msgstr "पर्याय %s साठी ऑर्गुमेंट पाहिजे"
+msgid "Failed to read the override file %s"
+msgstr "%s दुर्लक्षित संचिका वाचण्यास असमर्थ"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "परà¥\8dयाय %s: सà¤\82रà¤\9aितà¥\87à¤\9aà¥\8dया यादà¥\80तà¥\80ल à¤\95लमाà¤\82à¤\9aा तपशà¥\80लाला à¤\85सलà¥\87à¤\9a पाहिà¤\9cà¥\87 तà¥\87 =<मà¥\82लà¥\8dय>."
+msgid "Unknown compression algorithm '%s'"
+msgstr "माहित नसलà¥\87लà¥\80/लà¥\87 सà¤\82à¤\95à¥\8dषà¥\87प पदà¥\8dधतà¥\80/à¤\85लà¤\97à¥\8bरिथम '%s'"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "%s परà¥\8dयाय ला पà¥\82रà¥\8dणाà¤\82à¤\95 à¤\91रà¥\8dà¤\97à¥\81मà¥\87à¤\82à¤\9f पाहिà¤\9cà¥\87,'%s' नà¤\95à¥\8b"
+msgid "Compressed output %s needs a compression set"
+msgstr "%s सà¤\82à¤\95लित à¤\86à¤\8aà¤\9fपà¥\81à¤\9f/निरà¥\8dà¤\97त साठà¥\80 सà¤\82à¤\95à¥\8dषà¥\87प सà¤\82à¤\9aाà¤\9aà¥\80 à¤\97रà¤\9c"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "'%s' पर्याय खूप लांब आहे"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "संचिका * तयार करण्यास असमर्थ"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "%s अवैध क्रिया"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "नविन प्रक्रिया(प्रोसेस) निर्माण करण्यास असमर्थ"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "चॉईल्ड(प्रोसेस)ला संकलित करा"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "%s मध्ये बदलण्यास असमर्थ"
+msgid "Internal error, failed to create %s"
+msgstr "अंतर्गत त्रुटी, %s तयार करण्यास असमर्थ"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "सà¥\80डà¥\80-रà¥\89म सà¥\8dà¤\9fà¥\85à¤\9f करण्यास असमर्थ"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "à¤\86यपà¥\80सà¥\80 à¤\89पà¤\95à¥\8dरिया तयार करण्यास असमर्थ"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "%s कुलूप फाईल उघडता येत नाही"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "असंकलितकर्ता "
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO ची उपक्रिया/संचिका असमर्थ "
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "%s कुलुप मिळवता येत नाही"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "MD5 कामप्युटींग करतांना वाचण्यासाठी असमर्थ"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "%s साठà¥\80 थाà¤\82बलà¥\8b पण तà¥\87 तà¥\87थà¥\87 नवà¥\8dहतà¥\87"
+msgid "Problem unlinking %s"
+msgstr "%s दà¥\81वा मà¥\8bà¤\95ळा/सà¥\81à¤\9fा à¤\95रणà¥\8dयास à¤\85डà¤\9aण"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "%s à¤\89पà¤\95à¥\8dरियà¥\87ला सà¥\87à¤\97मà¥\87à¤\82à¤\9fà¥\87शन दà¥\8bष पà¥\8dरापà¥\8dत à¤\9dाला."
+msgid "Failed to rename %s to %s"
+msgstr "%s ला पà¥\81नरà¥\8dनामाà¤\82à¤\95न %s à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ "
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "होय"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "%s उपक्रिया अचानकपणे बाहेर पडली"
+msgid "Regex compilation error - %s"
+msgstr "रिजेक्स कंपायलेशन त्रुटी -%s "
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "%s फाईल उघडता येत नाही"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "वाà¤\9aा, %lu à¤\85à¤\9cà¥\82नहà¥\80 वाà¤\9aणà¥\8dयासाठà¥\80 à¤\86हà¥\87 पण à¤\86ता à¤\95ाहà¥\80 à¤\89रलà¥\80 नाहà¥\80"
+msgid "but %s is installed"
+msgstr "पण %s सà¤\82सà¥\8dथापित à¤\9dालà¥\87"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "लिहा, %lu à¤\85à¤\9cà¥\82नहà¥\80 लिहिणà¥\8dयासाठà¥\80 à¤\86हà¥\87 पण लिहिता यà¥\87त नाहà¥\80"
+msgid "but %s is to be installed"
+msgstr "पण %s सà¤\82सà¥\8dथापित à¤\95रायà¤\9aà¥\87 à¤\86हà¥\87"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "फाà¤\88ल बà¤\82द à¤\95रणà¥\8dयात à¤\85डà¤\9aण"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "पण तà¥\87 सà¤\82सà¥\8dथापित à¤\95रणà¥\8dयाà¤\9cà¥\8bà¤\97à¥\87 नाहà¥\80"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "फाà¤\88ल à¤\85नलिà¤\82à¤\95िà¤\82à¤\97 à¤\95रणà¥\8dयात à¤\85डà¤\9aण"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "पण तà¥\87 à¤\86à¤à¤¾à¤¸à¥\80 पà¥\85à¤\95à¥\87à¤\9c à¤\86हà¥\87"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "सà¤\82à¤\9aिà¤\95à¥\87à¤\9aà¥\80 syncing समसà¥\8dया"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "पण तà¥\87 सà¤\82सà¥\8dथापित à¤\95à¥\87लà¥\87 नाहà¥\80"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "पण तà¥\87 सà¤\82सà¥\8dथापित हà¥\8bणार नाहà¥\80"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष फाà¤\88ल à¤\96राब à¤\9dालà¥\80 à¤\86हà¥\87"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr "à¤\95िà¤\82वा"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष फाà¤\88ल हà¥\80 विà¤\9cà¥\8bड à¤\86वà¥\83तà¥\8dतà¥\80 à¤\86हà¥\87"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "à¤\96ालà¥\80ल नविन पà¥\85à¤\95à¥\87à¤\9cà¥\87स सà¤\82सà¥\8dथापित हà¥\8bतà¥\80ल:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तà¥\80à¤\95à¥\8bष वà¥\87à¤\97ळà¥\8dया वासà¥\8dतà¥\81विदà¥\8dयà¥\87 साठà¥\80 बनवला à¤\97à¥\87ला"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स परत ठà¥\87वलà¥\80 à¤\97à¥\87लà¥\80:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "à¤\85वलà¤\82बित"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स पà¥\81ढिल à¤\86वà¥\83तà¥\8dतà¥\80à¤\95à¥\83त हà¥\8bतà¥\80ल:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "पà¥\82रà¥\8dव à¤\85वलà¤\82बित"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स पà¥\81ढà¤\9aà¥\8dया à¤\86वà¥\83तà¥\8dतà¥\80à¤\95à¥\83त हà¥\8bणार नाहà¥\80त:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "सà¥\81à¤\9aवणà¥\87"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "पà¥\81ढिल ठà¥\87वलà¥\87लà¥\80 पà¥\85à¤\95à¥\87à¤\9cà¥\87स बदलतà¥\80ल:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "शिफारस"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (च्या मुळे %s)"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "परस्परविरोध"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n"
+"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "परत त्याठिकाणी आणा"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले,"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "अप्रचलित"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu पुनर्संस्थापित केले,"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu मागील आवृत्तीकृत केले,"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "अत्यावश्यक"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "आवश्यक"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "मानà¤\95"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "डिपà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c बरà¥\8bबर/दà¥\81रà¥\82सà¥\8dत à¤\95रत à¤\86हà¥\87..."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "à¤\8fà¤\9aà¥\8dà¤\9bिà¤\95"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr "à¤\85यशसà¥\8dवà¥\80/à¤\9aà¥\82à¤\95à¥\80à¤\9aà¥\87 à¤\9dालà¥\87."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "à¤\85धिà¤\95"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "डिपà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c बरà¥\8bबर à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ à¤\86हà¥\87 "
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "à¤\85वलà¤\82बित रà¤\9aना बाà¤\82धणà¥\80 à¤\95रत à¤\86हà¥\87"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "à¤\86वà¥\83तà¥\8dतà¥\80à¤\95à¥\83त सà¤\82à¤\9a à¤\95मà¥\80तà¤\95मà¥\80 à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "à¤\95à¤\82à¥\85डिडà¥\87à¤\9f à¤\86वà¥\83तà¥\8dतà¥\8dया"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr "à¤\9dालà¥\87"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "à¤\85वलà¤\82बित/विसà¤\82बà¥\82न à¤\85सलà¥\87लà¥\87 à¤\89तà¥\8dपादन "
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "हà¥\87 बरà¥\8bबर à¤\95रणà¥\8dयासाठà¥\80 तà¥\81मà¥\8dहाला `apt-get -f सà¤\82सà¥\8dथापना' पà¥\8dरà¥\8bà¤\97à¥\8dराम à¤\9aालà¥\82 à¤\95रावा लाà¤\97à¥\87ल."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-#| msgid "Merging available information"
-msgid "Reading state information"
-msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा "
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-#| msgid "Failed to open %s"
-msgid "Failed to open StateFile %s"
-msgstr "%s उघडण्यास असमर्थ"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! "
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-#| msgid "Failed to write file %s"
-msgid "Failed to write temporary StateFile %s"
-msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही"
-#: apt-pkg/sourcelist.cc:90
-#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "%s स्त्रोत सुचीमध्ये(यूआरआय)%lu वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला"
-#: apt-pkg/sourcelist.cc:92
-#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "%s स्त्रोत सुचीमध्ये(डिआएसटी) %lu वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!"
-#: apt-pkg/sourcelist.cc:95
-#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "%s स्त्रोत सुचीमध्ये(यूआरआय पार्स)%lu वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे"
-#: apt-pkg/sourcelist.cc:101
-#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "%s स्त्रोत सुचीमध्ये(निरंकुश डिआएसटी) %lu वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही"
-#: apt-pkg/sourcelist.cc:108
-#, fuzzy, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "%s (डीआयएसटी पार्स)स्त्रोत सुचीमध्ये %lu वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "%s उघडत आहे"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "उगमांच्या याद्या वाचता येणार नाहीत."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, fuzzy, c-format
-msgid "Line %u too long in source list %s."
-msgstr "%s स्त्रोत सुचीमध्ये ओळ %u खूप लांब आहे."
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:236
-#, fuzzy, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "%s (प्रकार)स्त्रोत सुचीमध्ये %u वाईट/व्यंग रेषा"
+#: cmdline/apt-get.cc:839
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही "
+msgid "Need to get %sB of archives.\n"
+msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:847
#, fuzzy, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "%s (विक्रेता आयडी)स्त्रोत सुचीमध्ये %u वाईट/व्यंग रेषा "
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "उघडल्यानंतर %sB ची अधिक डिस्क जागा वापरली जाईल.\n"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "उघडल्यानंतर %sB डिस्क जागा मोकळी होईल.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
-"ह्याचे आधिष्ठापन सुरु करण्यासाठी अत्यावश्यक तात्पुरते काढुन टाकण्याची गरज आहे%s पॅकेज "
-"गुंतागुंतीमुळे/Pre-Depends पूर्व अवलंबित आवर्तन.हे नेहमीच वाईट असते, पण जर तुम्हाला ते खरोखर "
-"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा."
+msgid "Couldn't determine free space in %s"
+msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही"
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही"
+msgid "You don't have enough free space in %s."
+msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "हो, मी म्ह्टल्याप्रमाणे करा!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही."
+"तुम्ही संभाव्य काहीतरी नुकसानकारक करणार होतात.\n"
+"पुढे '%s' उक्ती मध्ये लिहिणार \n"
+" ?] "
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "व्यत्यय/बंद करा."
+
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
+#, fuzzy, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "%s घेण्यासाठी नाकाम\n"
+
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"दà¥\8bष,पà¥\85à¤\95à¥\87à¤\9c समसà¥\8dया निवारà¤\95::निवारण à¤\95रताà¤\82ना à¤\85डथळा निरà¥\8dमाण à¤\9dाला, हà¥\8dयाà¤\9aà¥\87 à¤\95ारण सà¥\8dथà¤\97ित "
-"पà¥\85à¤\95à¥\87à¤\9cà¥\87स à¤\85सà¥\82 शà¤\95तà¥\87."
+"à¤\95ाहà¥\80 à¤\86रà¥\8dà¤\95ाà¤\87वà¥\8dहà¤\9c à¤\86णणà¥\8dयास à¤\85समरà¥\8dथ, à¤\95दाà¤\9aित apt-get रन à¤\95रà¥\81न à¤\85दà¥\8dययावत à¤\95रा à¤\95िà¤\82वा --fix- "
+"बरà¥\8bबर पà¥\8dरयतà¥\8dन à¤\95राहरवलà¥\87लà¥\87/à¤\97हाळ?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "संचयिका यादीत %s पार्शल हरवले आहे."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ."
-#: apt-pkg/acquire.cc:63
-#, fuzzy, c-format
-#| msgid "Archive directory %spartial is missing"
-msgid "Archive directory %spartial is missing."
-msgstr "ऑर्काइव्ह संचयिकेत %s पार्शल हरवले आहे."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "संस्थापन खंडित करत आहे."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "%s à¤\95ारà¥\8dयपधà¥\8dदतà¥\80à¤\9aा डà¥\8dराà¤\87वà¥\8dहर सापडà¥\82 शà¤\95ला नाहà¥\80. "
+msgid "Package %s is not installed, so not removed\n"
+msgstr "%s पà¥\85à¤\95à¥\87à¤\9c सà¤\82सà¥\8dथापित à¤\95à¥\87लà¥\87लà¥\87 नाहà¥\80,मà¥\8dहणà¥\82न à¤\95ाढलà¥\87 नाहà¥\80\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "%s à¤\95ारà¥\8dयपधà¥\8dदतà¥\80 यà¥\8bà¤\97à¥\8dय रà¥\80तà¥\80नà¥\87 सà¥\81रà¥\81 à¤\9dालà¥\87लà¥\80 नाहà¥\80"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "%s हà¥\87 à¤\86à¤à¤¾à¤¸à¥\80 पà¥\85à¤\95à¥\87à¤\9c हà¥\8dयाà¤\82à¤\9aà¥\8dयाà¤\95डà¥\82न तरतà¥\82द à¤\95à¥\87लà¥\87 à¤\86हà¥\87,:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr "[संस्थापित केले]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "तुम्ही संस्थापित करण्यासाठी एक निश्चित स्पष्टपणे निवडले पाहिजे."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही"
+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"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "यà¥\8bà¤\97à¥\8dय à¤\85सा पà¥\85à¤\95à¥\87à¤\9cिà¤\82à¤\97 पà¥\8dरणालà¥\80 पà¥\8dरà¤\95ार निशà¥\8dà¤\9aित à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ "
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "तथापि à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स मधà¥\8dयà¥\87 बदल à¤\9dाला:"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Unable to stat %s."
-msgstr "%s स्टॅट करण्यात असमर्थ. "
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला"
+msgid "Package %s has no installation candidate"
+msgstr "%s पॅकेजला संस्थापित कॅन्डिडेट नाही"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "उगमांच्या याद्या वाचता येणार नाहीत."
+#: cmdline/apt-get.cc:1156
+#, c-format
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही."
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s ही आधीच नविन आवृत्ती आहे.\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही "
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही"
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "%s पिनà¤\9aा पà¥\8dरà¤\95ार समà¤\9cलà¥\87ला नाहà¥\80"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "%s साठà¥\80 %s (%s) निवडलà¥\87लà¥\80 à¤\86वà¥\83तà¥\8dतà¥\80.\n"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "पिन à¤\95रिता पà¥\8dराधानà¥\8dय/à¤\85à¤\97à¥\8dरà¤\95à¥\8dरम (à¤\95िà¤\82वा शà¥\82नà¥\8dय)निरà¥\8dदà¥\87शà¥\80त à¤\95à¥\87लà¥\87ला नाहà¥\80"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "सà¥\81धारित à¤\86वà¥\83तà¥\8dतà¥\80à¤\9aा विधान à¤\86रà¥\8dà¤\97à¥\8dयà¥\81मà¥\87à¤\82à¤\9fस à¤\98à¥\87à¤\8a शà¤\95त नाहà¥\80."
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "à¤\85सà¥\8dथायà¥\80 सà¥\8dमà¥\83तिà¤\95à¥\8bष मधà¥\8dयà¥\87 विसà¤\82à¤\97त à¤\86वà¥\83तà¥\80à¤\95रण पà¥\8dरणालà¥\80 à¤\86हà¥\87"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "सà¤\82à¤\9aयिà¤\95ा यादà¥\80ला à¤\95à¥\81लà¥\81प लावणà¥\8dयात à¤\85समरà¥\8dथ"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "%s (नविन पॅकेज) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"काही अनुक्रमणिका संचयिका डाऊनलोड करण्यास असमर्थ,त्या दुर्लक्षित झाल्या, किंवा "
+"त्याऐवजी जुन्या वापरल्या गेल्या."
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "%s (वापरातील पॅकेज१) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "खालील नविन पॅकेजेस संस्थापित होतील:"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "%s प्रक्रिया करीत असतांना दोष आढळून आला(वापरातील पॅकेज२)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "%s (नविन आवृत्ती १) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले"
+
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले"
+
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "%s पॅकेज सापडू शकले नाही"
+
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "%s(वापरातील पॅकेज३) प्रक्रिया करीत असतांना दोष आढळून आला"
+msgid "Couldn't find package %s"
+msgstr "%s पॅकेज सापडू शकले नाही"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "%s(नविन आवृती२) प्रक्रिया करीत असतांना दोष आढळून आला"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "सूचना, '%s' रिजेक्स साठी %s ची निवड करत आहे\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
+msgid "%s set to manually installed.\n"
+msgstr "पण %s संस्थापित करायचे आहे"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-"à¤\85रà¥\87वा!, तà¥\81मà¥\8dहà¥\80 तर हà¥\8dया à¤\8fपिà¤\9fà¥\80à¤\9aà¥\8dया à¤\95ारà¥\8dयà¤\95à¥\8dषमतà¥\87पà¥\87à¤\95à¥\8dषाहà¥\80 पà¥\85à¤\95à¥\87à¤\9c नाà¤\82वाà¤\82à¤\9aà¥\8dया सà¤\82à¤\96à¥\8dयà¥\87à¤\9aà¥\80 मरà¥\8dयादा à¤\93लाà¤\82डलà¥\80 "
-"à¤\86हà¥\87."
+"तà¥\81मà¥\8dहाला à¤\95दाà¤\9aित `apt-get -f install'(à¤\8fपà¥\80à¤\9fà¥\80-à¤\97à¥\87à¤\9f -à¤\8fफ सà¤\82सà¥\8dथापन') पà¥\8dरà¥\8bà¤\97à¥\8dराम à¤\9aालà¥\82 à¤\95रावा "
+"लाà¤\97à¥\87ल'यात बदल à¤\95रणà¥\8dयासाठà¥\80:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे."
+"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन (`apt-get -f install') पॅकेजशिवाय प्रयत्न करा "
+"(किंवा पर्याय सांगा)."
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-#| msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे."
+"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n"
+"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n"
+"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n"
+"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा "
-"ओलांडली आहे."
+"जेव्हा तुम्ही एका क्रियेची विनंती केली तेव्हा असं की\n"
+"ते पॅकेज संस्थापित होऊ शकत नाही आणि त्याच्या विरूद्ध \n"
+"दोष आढाव्याची नोंद ठेवली पाहिजे."
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "तुटलेली पॅकेजेस"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "%s (तरतूद/पुरवलेल्या संचिका जमा) प्रक्रिया करीत असतांना दोष आढळून आला"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही "
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "सुचवलेली पॅकेजेस:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "शिफारस केलेली पॅकेजेस:"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "पॅकेज याद्या वाचत आहोत"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "पुढिल आवृत्तीची गणती करीत आहे..."
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "तरतà¥\82द/पà¥\81रवलà¥\87लà¥\8dया सà¤\82à¤\9aिà¤\95ा सà¤\82à¤\97à¥\8dरहित à¤\95रà¥\80त à¤\86हà¥\87"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "à¤\85समरà¥\8dथ"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "%s मध्ये लिहिण्यास असमर्थ "
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "झाले"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले"
-#: apt-pkg/acquire-item.cc:127
-#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n"
-#: apt-pkg/acquire-item.cc:1091
-#, fuzzy
-#| msgid "There are no public key available for the following key IDs:\n"
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "पुढील कळ ओळखचिन्हासाठी सामायिक कळ उपलब्ध नाही:\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "%s मध्ये पुरेशी जागा नाही"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते "
-"स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) "
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हालाहे पॅकेज स्वहस्ते "
-"स्थिर/निश्चित करण्याची गरज आहे."
+msgid "Need to get %sB of source archives.\n"
+msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr ""
-"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/"
-"ठिकाण %s."
+msgid "Fetch source %s\n"
+msgstr "%s उगम घ्या\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "à¤\86à¤\95ार à¤\9cà¥\81ळतनाहà¥\80"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "à¤\95ाहà¥\80 à¤\85रà¥\8dà¤\95ाà¤\88वà¥\8dहà¤\9c à¤\86णणà¥\8dयास à¤\85समरà¥\8dथ."
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"सिडी-रॉमचे माउंट स्थान %s वापरुन\n"
-"सिडी-रॉम माउंट होत आहे\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "ओळखत आहे.."
-
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "ग्रहण केलेले नामदर्शक: %s \n"
+msgid "Unpack command '%s' failed.\n"
+msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "सिडी-रॉम अनमाउंट करत आहे\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "सिडी-रॉम माउंट होत आहे...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid "Found %i package indexes, %i source indexes and %i signatures\n"
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"%i पॅकेजेसची यादी/सूची , %i स्त्रोताची यादी/सूची आणि %i स्वाक्षऱ्या/सिगनेचर्स सापडल्या \n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-#| msgid "Stored label: %s\n"
-msgid "Found label '%s'\n"
-msgstr "ग्रहण केलेले नामदर्शक: %s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"ह्या डिस्कला/चकतीला: म्हणतात\n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "नविन स्त्रोत सूची लिहित आहे\n"
+msgid "Build command '%s' failed.\n"
+msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "हà¥\8dया डिसà¥\8dà¤\95/à¤\9aà¤\95तà¥\80 à¤\95रिता सà¥\8dतà¥\8dरà¥\8bत सà¥\82à¤\9aà¥\80à¤\9aà¥\8dया पà¥\8dरवà¥\87शिà¤\95ा à¤\86हà¥\87त: \n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "à¤\9aाà¤\88लà¥\8dड पà¥\8dरà¤\95à¥\8dरिया à¤\85यशसà¥\8dवà¥\80"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-#| msgid "Unmounting CD-ROM..."
-msgid "Unmounting CD-ROM...\n"
-msgstr "सिडी-रॉम अनमाउंट होत आहे..."
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i माहितीसंच लिहिले.\n"
+msgid "Unable to get build-dependency information for %s"
+msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n"
+msgid "%s has no build depends.\n"
+msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s "
+"डिपेंडन्सी पूर्ण होऊ शकत नाही"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: cmdline/apt-get.cc:2531
#, fuzzy, c-format
-#| msgid "Lists directory %spartial is missing."
-msgid "Directory '%s' missing"
-msgstr "संचयिका यादीत %s पार्शल हरवले आहे."
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज पण नवीन आहे"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Preparing %s"
-msgstr "%s तयार à¤\95रित à¤\86हà¥\87"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "%s साठà¥\80 %s डिपà¥\87à¤\82डनà¥\8dसà¥\80 पà¥\82रà¥\8dण हà¥\8bणà¥\8dयास à¤\85समरà¥\8dथ: %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s"
-msgstr "%s सà¥\81à¤\9fà¥\87/मà¥\8bà¤\95ळà¥\87 à¤\95रà¥\80त à¤\86हà¥\87 "
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "%s साठà¥\80 बाà¤\82धणà¥\80-डिपà¥\87à¤\82डनà¥\8dसà¥\80à¤\9c पà¥\82रà¥\8dण हà¥\8bà¤\8a शà¤\95त नाहà¥\80."
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "%s संरचने साठी तयार करत आहे"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ "
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "%s संरचित होत आहे"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "त्रुटी प्रक्रिया मार्गदर्शिका%s "
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"apt-get [पर्याय] आदेश\n"
+" apt-get [पर्याय] संस्थापना pkg1 [pkg2 ...] काढून टाका\n"
+" apt-get[पर्याय] pkg1 [pkg2 ...] उगम\n"
+"\n"
+"apt-get हा डाऊनलोड करण्यासाठी सोपी आदेश रेखित संवादमंच आहे आणि\n"
+"पॅकेज संस्थापित करत आहे. नेहमी वापरले जाणारे आदेश म्हणजे पुढिल आवृत्ती\n"
+"'आणि संस्थापित करा\n"
+"\n"
+"आदेश\n"
+"पॅकेजच्या नव्या याद्यांच्या सुधारित आवृत्त्या-जमा करा\n"
+" पुढिल आवृत्त्या-पुढिल आवृत्त्या तयार करा\n"
+"संस्थापना - नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n"
+"कायमचे काढा -पॅकेजेस कायमची काढा\n"
+"उगमस्थान -उगमस्थान अर्काईव्हज डाऊनलोड करा\n"
+"बांधणी-डिप -उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n"
+"डिस्ट-पुढिल आवृत्ती-वितरण पुढिल आवृत्ती,बघा apt-get(8)\n"
+"न निवड -पुढिल आवृत्ती\n"
+"स्वच्छ करा-डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n"
+"check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n"
+"\n"
+"पर्याय\n"
+" -h - हा मदत मजकूर आहे\n"
+" -q - हा नोंद करण्यासारखा निर्गत आहे-प्रगती निदर्शक नाही\n"
+" -qq - त्रुटींसाठी, च्याशिवाय निर्गत नाही\n"
+" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n"
+" -s क्रिया नाही-\n"
+" -y - सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n"
+" -f - अखंडता परिक्षण असफल झाल्यास पुढे जाण्याचा प्रयत्न करा\n"
+" -m - अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n"
+" -u - पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n"
+" -b - ते मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n"
+" -V - व्हरबोस आवृत्ती क्रमांक दाखवा\n"
+" -c=?- ही संरचित फाईल वाचा\n"
+" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,eg -o dir::cache=/tmp\n"
+"apt-get(8), sources.list(5),आणि apt.conf(5)\n"
+"अधिक माहिती व पर्यायांसाठी पुस्तिका पाने\n"
+" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s संस्थापित झाले"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "दाबा"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "मिळवा:"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "%s काढून टाकत आहे"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "आय.जी.एन."
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "%s काढून टाकले"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "दोष इ.आर.आर."
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s) मध्ये %sB मिळविला\n"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Completely removed %s"
-msgstr "%s संपूर्ण काढून टाकले"
+msgid " [Working]"
+msgstr "[काम करत आहे]"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/acqprogress.cc:271
+#, 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"
-#: methods/rred.cc:219
-#, fuzzy
-#| msgid "Could not open file %s"
-msgid "Could not patch file"
-msgstr "%s फाईल उघडता येत नाही"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "अनोळखी पॅकेज माहिती संच!"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "अकाली जोडणी बंद झाली"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"वापर:apt-sortpkgs [पर्याय] फाईल१[फाईल २...]\n"
+"\n"
+" apt-sortpkgs हे पॅकेज फाईल्सचं वर्गीकरण करणारी एक साधी आज्ञावली आहे. -s पर्याय हा "
+"फाईल\n"
+"कुठल्या प्रकारची आहे हे दाखवण्यासाठी वापरतात.\n"
+"\n"
+"पर्याय\n"
+" -h हा मदत मजकूर\n"
+" -s उगमस्थान फाईल वापरा\n"
+" -c=? ही संरचना फाईल वाचा\n"
+" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,eg -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "चूकीचे मूलभूत निश्चितीकरण!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "पुढे जाण्यासाठी एंटर दाबा."
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
#: apt-inst/contrib/arfile.cc:132
#, fuzzy
-#| msgid "Failed to read the archive headers"
msgid "Failed to read the archive headers"
msgstr "अर्काईव्ह शीर्षक वाचण्यास असमर्थ आहे"
msgid "The diversion path is too long"
msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ "
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s वाचण्यास असमर्थ"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "info आणि temp संचिका सारख्याच फाईलप्रणालीत असणे आवश्यक आहे"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "पॅकेज याद्या वाचत आहोत"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
#: apt-inst/deb/debfile.cc:50
#, fuzzy, c-format
-#| msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "हा वैध DEB अर्काईव्ह नाही, ह्याला '%s' किंवा '%s'मेंबर नाही"
msgid "Unparsable control file"
msgstr "अनपार्सेबल नियंत्रण फाईल"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "पॅकेज %s शोधण्यास असमर्थ आहे"
+msgid "Unable to read the cdrom database %s"
+msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "पॅकेजची सर्व नांवे: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे "
+"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " सामान्य पॅकेजेस्: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "चूकीची सी-डी रॉम"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " शुध्द आभासी पॅकेजेस्:"
+#: methods/cdrom.cc:166
+#, fuzzy, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "%s मध्ये सीडी-रॉम माऊंट करण्यास असमर्थ,अजूनही ते वापरता येऊ शकेल."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " एकमेव आभासी पॅकेजेस्:"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "डिस्क सापडत नाही"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr "मिशà¥\8dरित à¤\86à¤à¤¾à¤¸à¥\80 पà¥\85à¤\95à¥\87à¤\9cà¥\87सà¥\8d:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "फाà¤\88ल सापडलà¥\80 नाहà¥\80"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " हरवलेले/गहाळ: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "स्टॅट करण्यास असमर्थ"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "à¤\8fà¤\95à¥\82ण सà¥\8dपषà¥\8dà¤\9f à¤\86वà¥\83तà¥\8dया: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "बदलणà¥\8dयाà¤\9aा वà¥\87ळ निशà¥\8dà¤\9aित à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-#| msgid "Total distinct versions: "
-msgid "Total Distinct Descriptions: "
-msgstr "एकूण स्पष्ट आवृत्या: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "एकूण निर्भरता:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "लॉग इन करत आहे"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "à¤\8fà¤\95à¥\82ण वà¥\8dहà¥\80à¤\88à¤\86र/सà¤\82à¤\9aिà¤\95ा परसà¥\8dपर सà¤\82बà¤\82ध:"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "पिà¤\85र नाव साà¤\82à¤\97णà¥\8dयास/सापडणà¥\8dयास à¤\85समरà¥\8dथ"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-#| msgid "Total ver/file relations: "
-msgid "Total Desc/File relations: "
-msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "स्थानिक नाव सांगण्यास असमर्थ"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "एकूण मॅपींगस् तरतूद: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "एकूण एकत्रित अक्षरसंच:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "एकूण परावलंबित आवृत्ती अवकाश:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "एकूण दुर्लक्षित अवकाश:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन "
+"निरर्थक आहे."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "पà¥\85à¤\95à¥\87à¤\9c सà¤\82à¤\9aिà¤\95ा %s सिà¤\82à¤\95à¥\8dरà¥\8bनाà¤\87à¤\9c नाहà¥\80त"
+msgid "TYPE failed, server said: %s"
+msgstr "सरà¥\8dवà¥\8dहरनà¥\87 %s साà¤\82à¤\97ितलà¥\87: à¤\9fाà¤\88प à¤\85समरà¥\8dथ:"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "तà¥\81मà¥\8dहाला फà¤\95à¥\8dत à¤\8fà¤\95à¤\9a नमà¥\81ना दà¥\8dयावा लाà¤\97à¥\87ल"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "वà¥\87ळà¥\87à¤\85à¤à¤¾à¤µà¥\80 सà¤\82बà¤\82ध à¤\9cà¥\8bडता यà¥\87त नाहà¥\80"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "पà¥\85à¤\95à¥\87à¤\9cà¥\87स सापडलà¥\87 नाहà¥\80त"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "सरà¥\8dवà¥\8dहरनà¥\87 सà¤\82बà¤\82ध à¤\9cà¥\8bडणà¥\80 बà¤\82द à¤\95à¥\87लà¥\80"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "पà¥\85à¤\95à¥\87à¤\9c सà¤\82à¤\9aिà¤\95ा:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "तà¥\8dरà¥\81à¤\9fà¥\80 वाà¤\9aा"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "दà¥\83तिà¤\95ा सिà¤\82à¤\95 नाहà¥\80,पà¥\85à¤\95à¥\87à¤\9c सà¤\82à¤\9aिà¤\95ा à¤\95à¥\8dष-सà¤\82दरà¥\8dठà¤\95रता यà¥\87त नाहà¥\80"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "पà¥\8dरतिसाधानà¥\87 बफर à¤à¤°à¥\81न à¤\97à¥\87लà¥\87."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "प्रोटोकॉल खराब झाले"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "एकत्रित पॅकेजेस:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "लिहिण्यात त्रुटी"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(मिळाले नाही)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "सॉकेट तयार करू शकत नाही"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr "अधिष्ठापित केले:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(कोणताच नाही)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "पॅसिव्ह सॉकेट जोडता येत नाही"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr "उमेदवार:"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "गेटअॅड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr "पà¥\85à¤\95à¥\87à¤\9c (पिन):"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "सà¥\89à¤\95à¥\87à¤\9f à¤\9aिà¤\95à¤\9fवता यà¥\87त नाहà¥\80"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr "आवृत्ती कोष्टक:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "सॉकेट वर ऐकता येत नाही"
-#: cmdline/apt-cache.cc:1618
-#, fuzzy, c-format
-#| msgid "%4i %s\n"
-msgid " %4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "सॉकेटचे नाव सांगता येत नाही"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s करिता %s %s वर संग्रहित\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"उपयोग:अॅप्ट-कॅश(पर्याय) आज्ञा\n"
-" अॅप्ट-कॅश(पर्याय) मिळवा संचिका १[संचिका २.... ]\n"
-" अॅप्ट-कॅश (पर्याय )दाखवा pkg1 [pkg2 ...]\n"
-"अॅप्ट कॅश (पर्याय) दाखवाsrc pkg1 [pkg2 ...]\n"
-"\n"
-"च्याAPT चे द्वयंक कॅश संचिता कौशल्याने हाताळण्यासाठी अॅप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n"
-"कॅश संचिका व त्यातील माहितीसाठी पृच्छा करा\n"
-"\n"
-"आज्ञावली\n"
-" मिळवा-उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n"
-"जेन कॅशेस-पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n"
-"शो पॅकेज-एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n"
-"शोएसआरसी-उगमस्थानाचा माहितीसंच दाखवा\n"
-" स्टॅट्स-काही पायाभूत आकडेवारी दाखवा\n"
-"डंप -संपूर्ण संचिका थोडक्यात दाखवा\n"
-"डंप अॅव्हेल-स्टंॅड आऊटसाठी उपलब्ध संचिका छापा\n"
-"अनमेट- न आठवलेली परावलंबने दाखवा\n"
-"शोधा-regex नमुन्यासाठी पॅकेजची यादी शोधा\n"
-"दाखवा -पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n"
-"अवलंबित -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n"
-"अतिअवलंबित -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n"
-" पॅकेज नावे- सर्व पॅकेजेससाठी यादी तयार करा\n"
-"डॉटी-ग्राफ व्हिससाठी पॅकेज आलेलं निर्माण करा\n"
-"xvcg-xvcg साठी पॅकेज आलेलं निर्माण करा\n"
-"धोरण -धोरण निर्धारणे दाखवा\n"
-"\n"
-"पर्याय : \n"
-"-h -हा साह्याकारी मजकूर\n"
-"-p=? पॅकेज कॅश \n"
-"-s=? उगमस्थान कॅश \n"
-"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n"
-"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n"
-"-c=? ही संरचना संचिका वाचा\n"
-"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n"
-"अधिक माहितीसाठी मार्गदर्शन पुस्तिकेचा अॅप्ट-कॅश(८) व अॅप्ट -कॉन्फ(५) ही पृष्ठे पहा \n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "à¤\95à¥\83पया तबà¤\95डà¥\80 डà¥\8dराà¤\88वà¥\8dहमधà¥\8dयà¥\87 ठà¥\87वà¥\82न à¤\8fà¤\82à¤\9fर दाबा"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "डà¥\87à¤\9fा सà¥\89à¤\95à¥\87à¤\9f à¤\9cà¥\8bडणà¥\80 वà¥\87ळà¥\87à¤\85à¤à¤¾à¤µà¥\80 तà¥\81à¤\9fलà¥\80"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "तà¥\81मà¤\9aà¥\8dया सà¤\82à¤\9aामधà¥\80ल सरà¥\8dव सà¥\80डà¥\80à¤\9cसाठà¥\80 याà¤\9a à¤\95à¥\83तà¥\80à¤\9aà¥\80 पà¥\81नरावà¥\83तà¥\8dतà¥\80 à¤\95रा(हà¥\80à¤\9a à¤\95à¥\83तà¥\80 à¤\95रा)"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "à¤\9cà¥\8bडणà¥\80 सà¥\8dविà¤\95ारणà¥\8dयास à¤\85समरà¥\8dथ"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "à¤\9aलितमà¥\82लà¥\8dय à¤\9cà¥\8bडà¥\80नà¥\87 नाहà¥\80त"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "फाà¤\88ल हà¥\85श à¤\95रणà¥\8dयात तà¥\8dरà¥\81à¤\9fà¥\80"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"उपयोग : अॅप्ट-कॉन्फिग(पर्याय) आज्ञा \n"
-"\n"
-"अॅप्ट कन्फिग संचिता वाचण्यासाठी अॅप्ट-कन्फिग हे एक साधन आहे\n"
-"\n"
-"आज्ञावली : \n"
-"शेल - शेल मोड \n"
-"डंप - संरचना दाखवा \n"
-"\n"
-"पर्याय : \n"
-" -h हा साह्याकारी मजकूर \n"
-" -c= ? ही संरचना संचिका वाचा \n"
-" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "डेटा सॉकेट वेळेअभावी तुटले"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s हे वैध डीईबी पॅकेज नाही "
+msgid "Data transfer failed, server said '%s'"
+msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"उपयोग : अॅप्ट - एक्स्ट्रॅक्ट टेंप्लेट्स संचिका १[संचिका २..... ]\n"
-" \n"
-"अॅप्ट- एक्स्टॅक्ट टेंम्प्लेट्स हे संरचना व नमुन्याची माहिती काढण्याचे साधन आहे \n"
-"डेबियन पॅकेजेस मधून \n"
-"\n"
-"पर्याय : \n"
-" -h हा साह्याकारी मजकूर \n"
-" -t टेंप डिर निर्धारित करा \n"
-" -c=? ही संरचना संचिका वाचा \n"
-" -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा जसे- -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "प्रश्न"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "debconf आवृत्ती मिळू शकत नाही,debconf अधिष्ठापित झाली काय?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "जारी करण्यास करण्यास असमर्थ"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "पॅकेजेसची विस्तारित यादी खूप मोठी आहे"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "%s (%s) ला जोडत आहे"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "त्रुटी प्रक्रिया मार्गदर्शिका%s "
+msgid "[IP: %s %s]"
+msgstr "[आयपी:%s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "उगमस्थानाची विस्तारित यादी खूप मोठी आहे"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "शीर्षक संचिकेमधून मजकूर संचिकेत लिहिण्यात त्रुटी"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "त्रुटी प्रक्रिया मजकूर %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली"
-#: ftparchive/apt-ftparchive.cc:553
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-ftparchive [options] command\n"
-#| "Commands: packages binarypath [overridefile [pathprefix]]\n"
-#| " sources srcpath [overridefile [pathprefix]]\n"
-#| " contents path\n"
-#| " release path\n"
-#| " generate config [groups]\n"
-#| " clean config\n"
-#| "\n"
-#| "apt-ftparchive generates index files for Debian archives. It supports\n"
-#| "many styles of generation from fully automated to functional "
-#| "replacements\n"
-#| "for dpkg-scanpackages and dpkg-scansources\n"
-#| "\n"
-#| "apt-ftparchive generates Package files from a tree of .debs. The\n"
-#| "Package file contains the contents of all the control fields from\n"
-#| "each package as well as the MD5 hash and filesize. An override file\n"
-#| "is supported to force the value of Priority and Section.\n"
-#| "\n"
-#| "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-#| "The --source-override option can be used to specify a src override file\n"
-#| "\n"
-#| "The 'packages' and 'sources' command should be run in the root of the\n"
-#| "tree. BinaryPath should point to the base of the recursive search and \n"
-#| "override file should contain the override flags. Pathprefix is\n"
-#| "appended to the filename fields if present. Example usage from the \n"
-#| "Debian archive:\n"
-#| " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-#| " dists/potato/main/binary-i386/Packages\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text\n"
-#| " --md5 Control MD5 generation\n"
-#| " -s=? Source override file\n"
-#| " -q Quiet\n"
-#| " -d=? Select the optional caching database\n"
-#| " --no-delink Enable delinking debug mode\n"
-#| " --contents Control contents file generation -c=? Read this "
-#| "configuration file\n"
-#| " -o=? Set an arbitrary configuration option"
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"उपयोग : अॅप्ट -एफटीपीआरकाईव्ह (पर्याय) आज्ञावली \n"
-" आज्ञावली : पॅकेजेस द्वयंकमार्ग [ओव्हरराईड फाईल] [मार्ग उपसर्ग]\n"
-"उगमस्थान srcpath [ओव्हरराईड फाईल][मार्ग उपसर्ग]\n"
-"मजकूर मार्ग \n"
-"मोचन मार्ग \n"
-"संरचना(गट) निर्माण करा\n"
-" स्वच्छ संरचना \n"
-"\n"
-"अॅप्ट- एफटीपी फाईल संच डेबियन फाईलसंचासाठी अनुक्रम संचिका निर्माण करतो.तो\n"
-" dpkg स्कॅन पॅकेजेस व dpkg स्कॅनपॅकेजेस करतो.संपूर्ण स्वंयंचलित ते कार्याकारी बदल\n"
-" करण्यासाठी अनेक शैलींची निर्मिती करण्यास पुष्टि देतो\n"
-"\n"
-"अॅप्ट-एफटीपी फाईलसंच डेब्जच्या तरुरचनेपासून पॅकेज संचिका निर्माण करतो \n"
-"पॅकेज संचिकेमध्ये प्रत्येक पॅकेज तसेच एमडी५ हॅश व संचिकाआकारामधील सर्व \n"
-" नियंत्रक क्षेत्रांची माहिती असते.अग्रक्रम आणि विभाग यांच्या मूल्यांचा प्रभाव \n"
-"वाढविण्यासाठी ओव्हरराईड संचिकेला पुष्टि दिलेली असते \n"
-"\n"
-"तसेच अॅप्ट-एफटीपी फाईलसंच dscs च्या तरूरचनेपासून उगमस्थान संचिका निर्माण करतो \n"
-" उगमस्थान - ओव्हरराईड पर्यायाचा उपयोग एखाद्या src ओव्हरराईड संचिका नेमकेपणाने "
-"दाखविण्यास होतो \n"
-"\n"
-"'पॅकेजेस' आणि 'उगमस्थान' आज्ञावली तरूरचनेच्या मुळाशी दिल्या जाव्यात \n"
-"द्वयंक मार्गाचा निर्देश पुनरावर्ती शोधाच्या पाऱ्याकडे केलेला असावा आणि \n"
-" ओव्हरराईड संचिकेमध्ये ओव्हरराईड संकेत (फ्लॅग्ज) असावेत आणि \n"
-" संचिकानामक्षेत्रे असल्यास मार्ग उपसर्ग त्यांना जोडलेले असावेत.\n"
-"डेबियन फाईलसंचामधील नमुन्यादाखल उपयोग : \n"
-"अॅप्ट-एफटीपी फाईलसंच पॅकेजेस डिस्ट्स/पोटॅटो/मेन/द्वयंक-३८६/>\\\n"
-"डिस्ट्स/पोटॅटो/मेन/द्वयंक- ३८६/पॅकेजेस \n"
-"\n"
-"पर्याय : \n"
-" -h हा साह्याकारी मजकूर \n"
-"--md5 MD5 ची निर्मिती नियंत्रित करा \n"
-" -s= उगमस्थान ओव्हरराईड संचिका \n"
-" -q शांत \n"
-" -d= पर्यायी दृतिकादायी डेटाबेस निवडा \n"
-"--no-delink दुवा तोडणारा डिबग मार्ग समर्थ करा \n"
-" ---contents माहिती संचिकेची निर्मिती नियंत्रित करा \n"
-" -c= ही संरचना संचिका वाचा \n"
-" -o= एखादा अहेतुक संरचना पर्याय निर्धारित करा"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "%s:%s (%s) ला जोडू शकत नाही"
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "%s ला जोडत आहे"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "निवडक भाग जुळत नाही"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "%s रिझॉल्व्ह होऊ शकत नाही "
-#: ftparchive/apt-ftparchive.cc:832
-#, fuzzy, c-format
-#| msgid "Some files are missing in the package file group '%s'"
-msgid "Some files are missing in the package file group `%s'"
-msgstr "%s पॅकेज संचिका समुहातील काही संचिका सापडत नाही"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी"
-#: ftparchive/cachedb.cc:43
-#, fuzzy, c-format
-#| msgid "DB was corrupted, file renamed to %s.old"
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB खराब झाली होती,संचिका %s जुने म्हणून पुनर्नामांकित केली"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB जुने आहे,%s पुढच्या आवृतीसाठी प्रयत्न करत आहे"
+msgid "Unable to connect to %s %s:"
+msgstr "%s %s ला जोडण्यास असमर्थ:"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "'%s': कीरिंग पर्यंत पोहोचू शकत नाही"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
msgstr ""
-"DB स्वरुप वैध नाही. जर तुम्ही apt च्या जुन्या आवृत्तीपासून पुढिल आवृत्तीकृत करत असाल तर, "
-"कृपया माहितीसंच काढून टाका आणि पुनर्निर्मित करा"
+"दोष: ::gpgv:: कडून प्राप्त झालेला ऑर्गुमेंट सूचीचा पर्याय खूप लांबीचा. बाहेर पडत आहे."
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!"
+
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "किमान एक अवैध सही सापडली."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "%s: %s DB संचिका उघडण्यास असमर्थ"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gnupg संस्थापित केले आहे का?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "अर्काईव्ह मध्ये नियंत्रण माहिती संच नाही"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "सà¤\82à¤\95à¥\87तà¤\95 à¤\98à¥\87णà¥\8dयास à¤\85समरà¥\8dथ"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "à¤\96ालà¥\80ल सहà¥\8dया à¤\85वà¥\88ध à¤\86हà¥\87त:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "धोक्याची सूचना:%s संचयिका वाचण्यास असमर्थ \n"
+msgid "Couldn't open pipe for %s"
+msgstr "%s साठी पाईप उघडता येत नाही"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "धो.सू.:%s स्टेट करण्यास असमर्थ\n"
+msgid "Read error from %s process"
+msgstr "%s क्रियेपासून चूक वाचा"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E:"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "शीर्षकासाठी थांबले आहे...."
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "धो.सू.:"
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "%u अक्षरांवर एक शीर्षक ओळ मिळाली"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "à¤\88: सà¤\82à¤\9aिà¤\95à¥\87ला लाà¤\97à¥\82 हà¥\8bणाऱà¥\8dया à¤\9aà¥\81à¤\95ा"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "वाà¤\88à¤\9f शà¥\80रà¥\8dषà¤\95 à¤\93ळ"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले "
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "अपरिचित दिनांक प्रकार/स्वरूप "
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "चुकले/असमर्थ निवड करा"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "जोडणी वेळेअभावी तुटली"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "सर्व्हर मधून वाचण्यात चूक"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "चुकीचा शीर्षक डाटा"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "जोडणी अयशस्वी"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "अंतर्गत त्रुटी"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "रिकामी फाईल mmap करता येणार नाही"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "%s सोडवण्यास असमर्थ"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "mmap चे %lu बाईटस् करता येणार नाहीत"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "ट्री चालणे असमर्थ"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "%s निवडक भाग सापडत नाही"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
+#, fuzzy, c-format
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार "
+
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to open %s"
-msgstr "%s à¤\89à¤\98डणà¥\8dयास à¤\85समरà¥\8dथ"
+msgid "Opening configuration file %s"
+msgstr "%s सà¤\82रà¤\9aना फाà¤\88ल à¤\89à¤\98डत à¤\86हà¥\87"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "ओळ %d खूप लांब (कमाल %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "%s [%s] डी दुवा\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो."
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Failed to readlink %s"
-msgstr "%s वाचणारा दुवा असमर्थ"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "Failed to unlink %s"
-msgstr "%s दुवा काढण्यास असमर्थ"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "%s चा %s दुवा साधण्यास असमर्थ"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr "%sB हीट ची डिलींक मर्यादा\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "अर्काईव्ह ला पॅकेज जागा नाही"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट "
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no override entry\n"
-msgstr "%s ला ओव्हरराईड/दुर्लक्षित जागा नाही\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr "%s देखभालकर्ता हा %s आणि %s नाही \n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid " %s has no source override entry\n"
-msgstr "%s ला उगम ओव्हरराईड/दुर्लक्षित जागा नाही\n"
+msgid "%c%s... Error!"
+msgstr "%c%s... चूक/त्रुटी!"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr "%s ला द्वयंक ओव्हरराईड जागा नाही\n"
+msgid "%c%s... Done"
+msgstr "%c%s... झाले"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "à¤\85à¤\82तरà¥\8dà¤\97त तà¥\8dरà¥\81à¤\9fà¥\80,%s मà¥\87à¤\82बर शà¥\8bधà¥\82 शà¤\95त नाहà¥\80"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "à¤\86दà¥\87श रà¥\87à¤\96ा परà¥\8dयाय '%c' [पासà¥\82न %s] हà¥\87 माहित नाहà¥\80."
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc-स्मरणस्थळ शोधण्यास असमर्थ"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "आदेश रेखा पर्याय %s नीट समजला नाही"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Unable to open %s"
-msgstr "%s उघडण्यास असमर्थ"
+msgid "Command line option %s is not boolean"
+msgstr "आदेश रेखा पर्याय %s हे बूलियन नाही"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "वà¥\8dयà¤\82à¤\97à¥\80त/हिडà¥\80स दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95à¥\87लà¥\87 %s रà¥\87षा %lu #1"
+msgid "Option %s requires an argument."
+msgstr "परà¥\8dयाय %s साठà¥\80 à¤\91रà¥\8dà¤\97à¥\81मà¥\87à¤\82à¤\9f पाहिà¤\9cà¥\87"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "वà¥\8dयà¤\82à¤\97à¥\80त/हिडà¥\80स दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95à¥\87लà¥\87 %s रà¥\87षा %lu #2"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "परà¥\8dयाय %s: सà¤\82रà¤\9aितà¥\87à¤\9aà¥\8dया यादà¥\80तà¥\80ल à¤\95लमाà¤\82à¤\9aा तपशà¥\80लाला à¤\85सलà¥\87à¤\9a पाहिà¤\9cà¥\87 तà¥\87 =<मà¥\82लà¥\8dय>."
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "व्यंगीत/हिडीस दुर्लक्षित केले %s रेषा %lu #3"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "%s पर्याय ला पूर्णांक ऑर्गुमेंट पाहिजे,'%s' नको"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "%s दुर्लक्षित संचिका वाचण्यास असमर्थ"
+msgid "Option '%s' is too long"
+msgstr "'%s' पर्याय खूप लांब आहे"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "माहित नसलेली/ले संक्षेप पद्धती/अलगोरिथम '%s'"
+msgid "Sense %s is not understood, try true or false."
+msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "%s संकलित आऊटपुट/निर्गत साठी संक्षेप संचाची गरज"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "संचिका * तयार करण्यास असमर्थ"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "नविन प्रक्रिया(प्रोसेस) निर्माण करण्यास असमर्थ"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "चॉईल्ड(प्रोसेस)ला संकलित करा"
+msgid "Invalid operation %s"
+msgstr "%s अवैध क्रिया"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "अंतर्गत त्रुटी, %s तयार करण्यास असमर्थ"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "आयपीसी उपक्रिया तयार करण्यास असमर्थ"
+msgid "Unable to stat the mount point %s"
+msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "%s मध्ये बदलण्यास असमर्थ"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "à¤\85सà¤\82à¤\95लितà¤\95रà¥\8dता "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "सà¥\80डà¥\80-रà¥\89म सà¥\8dà¤\9fà¥\85à¤\9f à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO ची उपक्रिया/संचिका असमर्थ "
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "MD5 कामप्युटींग करतांना वाचण्यासाठी असमर्थ"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "%s कुलूप फाईल उघडता येत नाही"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Problem unlinking %s"
-msgstr "%s दुवा मोकळा/सुटा करण्यास अडचण"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "होय"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "%s कुलुप मिळवता येत नाही"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "रिजेक्स कंपायलेशन त्रुटी -%s "
+msgid "Waited for %s but it wasn't there"
+msgstr "%s साठी थांबलो पण ते तेथे नव्हते"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:"
+#: apt-pkg/contrib/fileutl.cc:387
+#, c-format
+msgid "Sub-process %s received a segmentation fault."
+msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला."
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "but %s is installed"
-msgstr "पण %s संस्थापित झाले"
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is to be installed"
-msgstr "पण %s संस्थापित करायचे आहे"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "%s उपक्रिया अचानकपणे बाहेर पडली"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "पण ते संस्थापित करण्याजोगे नाही"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "%s फाईल उघडता येत नाही"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "पण ते आभासी पॅकेज आहे"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "पण ते संस्थापित केले नाही"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "पण तà¥\87 सà¤\82सà¥\8dथापित हà¥\8bणार नाहà¥\80"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "फाà¤\88ल बà¤\82द à¤\95रणà¥\8dयात à¤\85डà¤\9aण"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr "à¤\95िà¤\82वा"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "फाà¤\88ल à¤\85नलिà¤\82à¤\95िà¤\82à¤\97 à¤\95रणà¥\8dयात à¤\85डà¤\9aण"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "à¤\96ालà¥\80ल नविन पà¥\85à¤\95à¥\87à¤\9cà¥\87स सà¤\82सà¥\8dथापित हà¥\8bतà¥\80ल:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "सà¤\82à¤\9aिà¤\95à¥\87à¤\9aà¥\80 syncing समसà¥\8dया"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "à¤\96ालà¥\80ल नविन पà¥\85à¤\95à¥\87à¤\9cà¥\87स à¤\95ायमà¤\9aà¥\80 à¤\95ाढà¥\82न à¤\9fाà¤\95लà¥\80 à¤\9cातà¥\80ल:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स परत ठà¥\87वलà¥\80 à¤\97à¥\87लà¥\80:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष फाà¤\88ल à¤\96राब à¤\9dालà¥\80 à¤\86हà¥\87"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87स पà¥\81ढिल à¤\86वà¥\83तà¥\8dतà¥\80à¤\95à¥\83त हà¥\8bतà¥\80ल:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तिà¤\95à¥\8bष फाà¤\88ल हà¥\80 विà¤\9cà¥\8bड à¤\86वà¥\83तà¥\8dतà¥\80 à¤\86हà¥\87"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "खालील पॅकेजेस पुढच्या आवृत्तीकृत होणार नाहीत:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "पà¥\81ढिल ठà¥\87वलà¥\87लà¥\80 पà¥\85à¤\95à¥\87à¤\9cà¥\87स बदलतà¥\80ल:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "पà¥\85à¤\95à¥\87à¤\9c à¤\85सà¥\8dथाà¤\88 सà¥\8dमà¥\83तà¥\80à¤\95à¥\8bष वà¥\87à¤\97ळà¥\8dया वासà¥\8dतà¥\81विदà¥\8dयà¥\87 साठà¥\80 बनवला à¤\97à¥\87ला"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (च्या मुळे %s)"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "अवलंबित"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n"
-"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "पूर्व अवलंबित"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले,"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "सुचवणे"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu पुनर्संस्थापित केले,"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "शिफारस"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu मागील आवृत्तीकृत केले,"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "परस्परविरोध"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "परत त्याठिकाणी आणा"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "अप्रचलित"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..."
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr "à¤\85यशसà¥\8dवà¥\80/à¤\9aà¥\82à¤\95à¥\80à¤\9aà¥\87 à¤\9dालà¥\87."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "à¤\85तà¥\8dयावशà¥\8dयà¤\95"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "डिपà¥\87नà¥\8dडनà¥\8dसà¥\80à¤\9c बरà¥\8bबर à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ à¤\86हà¥\87 "
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "à¤\86वशà¥\8dयà¤\95"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "à¤\86वà¥\83तà¥\8dतà¥\80à¤\95à¥\83त सà¤\82à¤\9a à¤\95मà¥\80तà¤\95मà¥\80 à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "मानà¤\95"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr "à¤\9dालà¥\87"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "à¤\8fà¤\9aà¥\8dà¤\9bिà¤\95"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "हà¥\87 बरà¥\8bबर à¤\95रणà¥\8dयासाठà¥\80 तà¥\81मà¥\8dहाला `apt-get -f सà¤\82सà¥\8dथापना' पà¥\8dरà¥\8bà¤\97à¥\8dराम à¤\9aालà¥\82 à¤\95रावा लाà¤\97à¥\87ल."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "à¤\85धिà¤\95"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "à¤\85नमà¥\87à¤\9f डिपà¥\87à¤\82डनà¥\8dसà¥\80à¤\9c.-f.वापरà¥\82न पà¥\8dरयतà¥\8dन à¤\95रा "
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "à¤\85वलà¤\82बित रà¤\9aना बाà¤\82धणà¥\80 à¤\95रत à¤\86हà¥\87"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "धà¥\8bà¤\95à¥\8dयाà¤\9aà¥\80 सà¥\82à¤\9aना:à¤\96ालà¥\80ल पà¥\85à¤\95à¥\87à¤\9cà¥\87सà¥\8d पà¥\8dरमाणित à¤\95रà¥\81 शà¤\95त नाहà¥\80! "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "à¤\95à¤\82à¥\85डिडà¥\87à¤\9f à¤\86वà¥\83तà¥\8dतà¥\8dया"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "पà¥\8dरमाणà¥\80à¤\95रणाà¤\9aà¥\80 धà¥\8bà¤\95à¥\8dयाà¤\9aà¥\80 सà¥\82à¤\9aना दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\95रा.\n"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "à¤\85वलà¤\82बित/विसà¤\82बà¥\82न à¤\85सलà¥\87लà¥\87 à¤\89तà¥\8dपादन "
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s उघडण्यास असमर्थ"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही"
+#: apt-pkg/sourcelist.cc:90
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "%s स्त्रोत सुचीमध्ये(यूआरआय)%lu वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ"
+#: apt-pkg/sourcelist.cc:92
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "%s स्त्रोत सुचीमध्ये(डिआएसटी) %lu वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:95
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "%s स्त्रोत सुचीमध्ये(यूआरआय पार्स)%lu वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:836
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n"
+#: apt-pkg/sourcelist.cc:101
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "%s स्त्रोत सुचीमध्ये(निरंकुश डिआएसटी) %lu वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:839
-#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n"
+#: apt-pkg/sourcelist.cc:108
+#, fuzzy, c-format
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "%s (डीआयएसटी पार्स)स्त्रोत सुचीमध्ये %lu वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "उघडल्यानंतर %sB ची अधिक डिस्क जागा वापरली जाईल.\n"
+msgid "Opening %s"
+msgstr "%s उघडत आहे"
-#: cmdline/apt-get.cc:847
-#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "उघडल्यानंतर %sB डिस्क जागा मोकळी होईल.\n"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, fuzzy, c-format
+msgid "Line %u too long in source list %s."
+msgstr "%s स्त्रोत सुचीमध्ये ओळ %u खूप लांब आहे."
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
-#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही"
+#: apt-pkg/sourcelist.cc:236
+#, fuzzy, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr "%s (प्रकार)स्त्रोत सुचीमध्ये %u वाईट/व्यंग रेषा"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही."
-
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही."
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही "
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "हो, मी म्ह्टल्याप्रमाणे करा!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, fuzzy, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "%s (विक्रेता आयडी)स्त्रोत सुचीमध्ये %u वाईट/व्यंग रेषा "
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"तà¥\81मà¥\8dहà¥\80 सà¤\82à¤à¤¾à¤µà¥\8dय à¤\95ाहà¥\80तरà¥\80 नà¥\81à¤\95सानà¤\95ारà¤\95 à¤\95रणार हà¥\8bतात.\n"
-"पà¥\81ढà¥\87 '%s' à¤\89à¤\95à¥\8dतà¥\80 मधà¥\8dयà¥\87 लिहिणार \n"
-" ?] "
+"हà¥\8dयाà¤\9aà¥\87 à¤\86धिषà¥\8dठापन सà¥\81रà¥\81 à¤\95रणà¥\8dयासाठà¥\80 à¤\85तà¥\8dयावशà¥\8dयà¤\95 तातà¥\8dपà¥\81रतà¥\87 à¤\95ाढà¥\81न à¤\9fाà¤\95णà¥\8dयाà¤\9aà¥\80 à¤\97रà¤\9c à¤\86हà¥\87%s पà¥\85à¤\95à¥\87à¤\9c "
+"à¤\97à¥\81à¤\82ताà¤\97à¥\81à¤\82तà¥\80मà¥\81ळà¥\87/Pre-Depends पà¥\82रà¥\8dव à¤\85वलà¤\82बित à¤\86वरà¥\8dतन.हà¥\87 नà¥\87हमà¥\80à¤\9a वाà¤\88à¤\9f à¤\85सतà¥\87, पण à¤\9cर तà¥\81मà¥\8dहाला तà¥\87 à¤\96रà¥\8bà¤\96र "
+"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "व्यत्यय/बंद करा."
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? "
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
-#, fuzzy, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s घेण्यासाठी नाकाम\n"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित "
+"पॅकेजेस असू शकते."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "à¤\95ाहà¥\80 सà¤\82à¤\9aिà¤\95ा डाà¤\8aनलà¥\8bड à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "à¤\85डà¤\9aणà¥\80 दà¥\82र à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ, तà¥\81मà¥\8dहà¥\80 तà¥\81à¤\9fलà¥\87लà¥\87 पà¥\85à¤\95à¥\87à¤\9c à¤\98à¥\87तलà¥\87लà¥\87 à¤\86हà¥\87."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "संचयिका यादीत %s पार्शल हरवले आहे."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- "
-"बरोबर प्रयत्न कराहरवलेले/गहाळ?"
+#: apt-pkg/acquire.cc:63
+#, fuzzy, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "ऑर्काइव्ह संचयिकेत %s पार्शल हरवले आहे."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr ""
-"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ."
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "संस्थापन खंडित करत आहे."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "%s कार्यपध्दतीचा ड्राइव्हर सापडू शकला नाही. "
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n"
+msgid "Method %s did not start correctly"
+msgstr "%s कार्यपध्दती योग्य रीतीने सुरु झालेली नाही"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ "
+
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "%s हà¥\87 à¤\86à¤à¤¾à¤¸à¥\80 पà¥\85à¤\95à¥\87à¤\9c हà¥\8dयाà¤\82à¤\9aà¥\8dयाà¤\95डà¥\82न तरतà¥\82द à¤\95à¥\87लà¥\87 à¤\86हà¥\87,:\n"
+msgid "Unable to stat %s."
+msgstr "%s सà¥\8dà¤\9fà¥\85à¤\9f à¤\95रणà¥\8dयात à¤\85समरà¥\8dथ. "
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr "[संस्थापित केले]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "तुम्ही संस्थापित करण्यासाठी एक निश्चित स्पष्टपणे निवडले पाहिजे."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही "
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "%s पिनचा प्रकार समजलेला नाही"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "तथापि खालील पॅकेजेस मध्ये बदल झाला:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "%s (नविन पॅकेज) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "%s पॅकेजला संस्थापित कॅन्डिडेट नाही"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "%s (वापरातील पॅकेज१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1148
-#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s हà¥\80 à¤\86धà¥\80à¤\9a नविन à¤\86वà¥\83तà¥\8dतà¥\80 à¤\86हà¥\87.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "%s पà¥\8dरà¤\95à¥\8dरिया à¤\95रà¥\80त à¤\85सताà¤\82ना दà¥\8bष à¤\86ढळà¥\82न à¤\86ला(वापरातà¥\80ल पà¥\85à¤\95à¥\87à¤\9c२)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "%s (नविन आवृत्ती १) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "%s(वापरातील पॅकेज३) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही."
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "%s(नविन आवृती२) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"à¤\95ाहà¥\80 à¤\85नà¥\81à¤\95à¥\8dरमणिà¤\95ा सà¤\82à¤\9aयिà¤\95ा डाà¤\8aनलà¥\8bड à¤\95रणà¥\8dयास à¤\85समरà¥\8dथ,तà¥\8dया दà¥\81रà¥\8dलà¤\95à¥\8dषित à¤\9dालà¥\8dया, à¤\95िà¤\82वा "
-"तà¥\8dयाà¤\90वà¤\9cà¥\80 à¤\9cà¥\81नà¥\8dया वापरलà¥\8dया à¤\97à¥\87लà¥\8dया."
+"à¤\85रà¥\87वा!, तà¥\81मà¥\8dहà¥\80 तर हà¥\8dया à¤\8fपिà¤\9fà¥\80à¤\9aà¥\8dया à¤\95ारà¥\8dयà¤\95à¥\8dषमतà¥\87पà¥\87à¤\95à¥\8dषाहà¥\80 पà¥\85à¤\95à¥\87à¤\9c नाà¤\82वाà¤\82à¤\9aà¥\8dया सà¤\82à¤\96à¥\8dयà¥\87à¤\9aà¥\80 मरà¥\8dयादा à¤\93लाà¤\82डलà¥\80 "
+"à¤\86हà¥\87."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-#| msgid "The following NEW packages will be installed:"
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "खालील नविन पॅकेजेस संस्थापित होतील:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा "
+"ओलांडली आहे."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:"
-
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-#| msgid "Internal error, problem resolver broke stuff"
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "%s (तरतूद/पुरवलेल्या संचिका जमा) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-#| msgid "Couldn't find package %s"
-msgid "Couldn't find task %s"
-msgstr "%s पॅकेज सापडू शकले नाही"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही "
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Couldn't find package %s"
-msgstr "%s पॅकेज सापडू शकले नाही"
+msgid "Couldn't stat source package list %s"
+msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "सà¥\82à¤\9aना, '%s' रिà¤\9cà¥\87à¤\95à¥\8dस साठà¥\80 %s à¤\9aà¥\80 निवड à¤\95रत à¤\86हà¥\87\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "पà¥\81नरà¥\8dनामाà¤\82à¤\95न à¤\85यशसà¥\8dवà¥\80, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-#| msgid "but %s is to be installed"
-msgid "%s set to manual installed.\n"
-msgstr "पण %s संस्थापित करायचे आहे"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही"
+
+#: apt-pkg/acquire-item.cc:1100
+#, fuzzy
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "पुढील कळ ओळखचिन्हासाठी सामायिक कळ उपलब्ध नाही:\n"
+
+#: apt-pkg/acquire-item.cc:1213
+#, 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 ""
-"तà¥\81मà¥\8dहाला à¤\95दाà¤\9aित `apt-get -f install'(à¤\8fपà¥\80à¤\9fà¥\80-à¤\97à¥\87à¤\9f -à¤\8fफ सà¤\82सà¥\8dथापन') पà¥\8dरà¥\8bà¤\97à¥\8dराम à¤\9aालà¥\82 à¤\95रावा "
-"लाà¤\97à¥\87ल'यात बदल à¤\95रणà¥\8dयासाठà¥\80:"
+"मà¥\80 %s पà¥\85à¤\95à¥\87à¤\9cà¤\95रà¥\80ता सà¤\82à¤\9aिà¤\95ा शà¥\8bधणà¥\8dयास समरà¥\8dथ नवà¥\8dहतà¥\8b. याà¤\9aा à¤\85रà¥\8dथ à¤\85साà¤\95à¥\80 तà¥\81मà¥\8dहाला हà¥\87 पà¥\85à¤\95à¥\87à¤\9c सà¥\8dवहसà¥\8dतà¥\87 "
+"सà¥\8dथिर/निशà¥\8dà¤\9aित à¤\95रणà¥\8dयाà¤\9aà¥\80 à¤\97रà¤\9c à¤\86हà¥\87(हरवलà¥\87लà¥\8dया à¤\86रà¥\8dà¤\9aमà¥\81ळà¥\87) "
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"à¤\85नमà¥\87à¤\9f डिपà¥\87à¤\82डनà¥\8dसà¥\80à¤\9c.à¤\8fपà¥\80à¤\9fà¥\80-à¤\97à¥\87à¤\9f -à¤\8fफ सà¤\82सà¥\8dथापन (`apt-get -f install') पà¥\85à¤\95à¥\87à¤\9cशिवाय पà¥\8dरयतà¥\8dन à¤\95रा "
-"(किंवा पर्याय सांगा)."
+"मà¥\80 %s पà¥\85à¤\95à¥\87à¤\9cà¤\95रà¥\80ता सà¤\82à¤\9aिà¤\95ा शà¥\8bधणà¥\8dयास समरà¥\8dथ नवà¥\8dहतà¥\8b. याà¤\9aा à¤\85रà¥\8dथ à¤\85साà¤\95à¥\80 तà¥\81मà¥\8dहालाहà¥\87 पà¥\85à¤\95à¥\87à¤\9c सà¥\8dवहसà¥\8dतà¥\87 "
+"स्थिर/निश्चित करण्याची गरज आहे."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n"
-"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n"
-"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n"
-"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील."
+"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/"
+"ठिकाण %s."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "आकार जुळतनाही"
+
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत"
+
+#: apt-pkg/cdrom.cc:529
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"जेव्हा तुम्ही एका क्रियेची विनंती केली तेव्हा असं की\n"
-"ते पॅकेज संस्थापित होऊ शकत नाही आणि त्याच्या विरूद्ध \n"
-"दोष आढाव्याची नोंद ठेवली पाहिजे."
+"सिडी-रॉमचे माउंट स्थान %s वापरुन\n"
+"सिडी-रॉम माउंट होत आहे\n"
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "तà¥\81à¤\9fलà¥\87लà¥\80 पà¥\85à¤\95à¥\87à¤\9cà¥\87स"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "à¤\93ळà¤\96त à¤\86हà¥\87.."
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:"
+#: apt-pkg/cdrom.cc:563
+#, c-format
+msgid "Stored label: %s\n"
+msgstr "ग्रहण केलेले नामदर्शक: %s \n"
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "सुचवलेली पॅकेजेस:"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "सिडी-रॉम अनमाउंट होत आहे..."
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "शिफारस केलेली पॅकेजेस:"
+#: apt-pkg/cdrom.cc:590
+#, c-format
+msgid "Using CD-ROM mount point %s\n"
+msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "पà¥\81ढिल à¤\86वà¥\83तà¥\8dतà¥\80à¤\9aà¥\80 à¤\97णतà¥\80 à¤\95रà¥\80त à¤\86हà¥\87..."
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "सिडà¥\80-रà¥\89म à¤\85नमाà¤\89à¤\82à¤\9f à¤\95रत à¤\86हà¥\87\n"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "à¤\9dालà¥\87"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "डिसà¥\8dà¤\95/à¤\9aà¤\95तà¥\80 à¤\95रिता पà¥\8dरतिà¤\95à¥\8dषा à¤\95रà¥\80त à¤\86हà¥\87...\n"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "सिडी-रॉम माउंट होत आहे...\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "à¤\89à¤\97म शà¥\8bधणà¥\8dयासाठà¥\80 à¤\95िमान à¤\8fà¤\95 पà¥\85à¤\95à¥\87à¤\9c दà¥\87णà¥\87/साà¤\82à¤\97णà¥\87 à¤\97रà¤\9cà¥\87à¤\9aà¥\87 à¤\86हà¥\87"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "सà¤\82à¤\9aिà¤\95ाà¤\9aà¥\8dया यादà¥\80/सà¥\82à¤\9aà¥\80साठà¥\80 डिसà¥\8dà¤\95/à¤\9aà¤\95तà¥\80 बारà¤\95ाà¤\88नà¥\87 तपासत à¤\86हà¥\87..\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"%i पॅकेजेसची यादी/सूची , %i स्त्रोताची यादी/सूची आणि %i स्वाक्षऱ्या/सिगनेचर्स सापडल्या \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "à¤\86धà¥\80à¤\9a डाà¤\8aनलà¥\8bड à¤\95à¥\87लà¥\87लà¥\80 '%s' फाà¤\88ल सà¥\8bडà¥\82न दà¥\8dया\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "à¤\97à¥\8dरहण à¤\95à¥\87लà¥\87लà¥\87 नामदरà¥\8dशà¤\95: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "%s मध्ये पुरेशी जागा नाही"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"ह्या डिस्कला/चकतीला: म्हणतात\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..."
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "%s उगम घ्या\n"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "नविन स्त्रोत सूची लिहित आहे\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "à¤\95ाहà¥\80 à¤\85रà¥\8dà¤\95ाà¤\88वà¥\8dहà¤\9c à¤\86णणà¥\8dयास à¤\85समरà¥\8dथ."
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "हà¥\8dया डिसà¥\8dà¤\95/à¤\9aà¤\95तà¥\80 à¤\95रिता सà¥\8dतà¥\8dरà¥\8bत सà¥\82à¤\9aà¥\80à¤\9aà¥\8dया पà¥\8dरवà¥\87शिà¤\95ा à¤\86हà¥\87त: \n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n"
+msgid "Wrote %i records.\n"
+msgstr "%i माहितीसंच लिहिले.\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n"
-
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "चाईल्ड प्रक्रिया अयशस्वी"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "संचयिका यादीत %s पार्शल हरवले आहे."
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "%s साठà¥\80 बाà¤\82धणà¥\80 डिपà¥\87à¤\82डनà¥\8dसà¥\80 माहितà¥\80 मिळवणà¥\8dयास à¤\85समरà¥\8dथ"
+msgid "Preparing %s"
+msgstr "%s तयार à¤\95रित à¤\86हà¥\87"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s ला बाà¤\82धणà¥\80 डिपà¥\87à¤\82डनà¥\8dस नाहà¥\80त.\n"
+msgid "Unpacking %s"
+msgstr "%s सà¥\81à¤\9fà¥\87/मà¥\8bà¤\95ळà¥\87 à¤\95रà¥\80त à¤\86हà¥\87 "
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही"
+msgid "Preparing to configure %s"
+msgstr "%s संरचने साठी तयार करत आहे"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s "
-"डिपेंडन्सी पूर्ण होऊ शकत नाही"
+msgid "Configuring %s"
+msgstr "%s संरचित होत आहे"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
#, fuzzy, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज पण नवीन आहे"
+msgid "Processing triggers for %s"
+msgstr "त्रुटी प्रक्रिया मार्गदर्शिका%s "
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "%s साठà¥\80 %s डिपà¥\87à¤\82डनà¥\8dसà¥\80 पà¥\82रà¥\8dण हà¥\8bणà¥\8dयास à¤\85समरà¥\8dथ: %s"
+msgid "Installed %s"
+msgstr "%s सà¤\82सà¥\8dथापित à¤\9dालà¥\87"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ "
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:"
-
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"apt-get [पर्याय] आदेश\n"
-" apt-get [पर्याय] संस्थापना pkg1 [pkg2 ...] काढून टाका\n"
-" apt-get[पर्याय] pkg1 [pkg2 ...] उगम\n"
-"\n"
-"apt-get हा डाऊनलोड करण्यासाठी सोपी आदेश रेखित संवादमंच आहे आणि\n"
-"पॅकेज संस्थापित करत आहे. नेहमी वापरले जाणारे आदेश म्हणजे पुढिल आवृत्ती\n"
-"'आणि संस्थापित करा\n"
-"\n"
-"आदेश\n"
-"पॅकेजच्या नव्या याद्यांच्या सुधारित आवृत्त्या-जमा करा\n"
-" पुढिल आवृत्त्या-पुढिल आवृत्त्या तयार करा\n"
-"संस्थापना - नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n"
-"कायमचे काढा -पॅकेजेस कायमची काढा\n"
-"उगमस्थान -उगमस्थान अर्काईव्हज डाऊनलोड करा\n"
-"बांधणी-डिप -उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n"
-"डिस्ट-पुढिल आवृत्ती-वितरण पुढिल आवृत्ती,बघा apt-get(8)\n"
-"न निवड -पुढिल आवृत्ती\n"
-"स्वच्छ करा-डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n"
-"check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n"
-"\n"
-"पर्याय\n"
-" -h - हा मदत मजकूर आहे\n"
-" -q - हा नोंद करण्यासारखा निर्गत आहे-प्रगती निदर्शक नाही\n"
-" -qq - त्रुटींसाठी, च्याशिवाय निर्गत नाही\n"
-" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n"
-" -s क्रिया नाही-\n"
-" -y - सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n"
-" -f - अखंडता परिक्षण असफल झाल्यास पुढे जाण्याचा प्रयत्न करा\n"
-" -m - अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n"
-" -u - पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n"
-" -b - ते मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n"
-" -V - व्हरबोस आवृत्ती क्रमांक दाखवा\n"
-" -c=?- ही संरचित फाईल वाचा\n"
-" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,eg -o dir::cache=/tmp\n"
-"apt-get(8), sources.list(5),आणि apt.conf(5)\n"
-"अधिक माहिती व पर्यायांसाठी पुस्तिका पाने\n"
-" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n"
-
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "दाबा"
-
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "मिळवा:"
-
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "आय.जी.एन."
-
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "दोष इ.आर.आर."
+msgid "Preparing for removal of %s"
+msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s) मध्ये %sB मिळविला\n"
+msgid "Removing %s"
+msgstr "%s काढून टाकत आहे"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr "[काम करत आहे]"
+msgid "Removed %s"
+msgstr "%s काढून टाकले"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "अनोळखी पॅकेज माहिती संच!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s संपूर्ण काढून टाकले"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"वापर:apt-sortpkgs [पर्याय] फाईल१[फाईल २...]\n"
-"\n"
-" apt-sortpkgs हे पॅकेज फाईल्सचं वर्गीकरण करणारी एक साधी आज्ञावली आहे. -s पर्याय हा "
-"फाईल\n"
-"कुठल्या प्रकारची आहे हे दाखवण्यासाठी वापरतात.\n"
-"\n"
-"पर्याय\n"
-" -h हा मदत मजकूर\n"
-" -s उगमस्थान फाईल वापरा\n"
-" -c=? ही संरचना फाईल वाचा\n"
-" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,eg -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "चूकीचे मूलभूत निश्चितीकरण!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "%s फाईल उघडता येत नाही"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "पुढे जाण्यासाठी एंटर दाबा."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "अकाली जोडणी बंद झाली"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "ओळ %d खूप लांब (कमाल %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "ग्रहण केलेले नामदर्शक: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "%i पॅकेजेसची यादी/सूची , %i स्त्रोताची यादी/सूची आणि %i स्वाक्षऱ्या/सिगनेचर्स "
+#~ "सापडल्या \n"
+
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "चुकले/असमर्थ निवड करा"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-16 00:35+0100\n"
"Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.ui.no>\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Klarer ikke å lese CD-databasen %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan "
-"ikke bruke «apt-get update» til å legge til nye CD-plater."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Feil CD-plate"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i "
-"bruk."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk ikke funnet."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fant ikke fila"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Klarte ikke å få status"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Klarte ikke å sette endringstidspunkt"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //"
+msgid "Unable to locate package %s"
+msgstr "Klarer ikke å finne pakken %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Logger inn"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Plassmengde pakkenavn: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Klarte ikke å fastslå navnet på motparten"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Vanlige pakker: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Klarte ikke å fastslå det lokale navnet"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Rent virtuelle pakker: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Tjeneren nektet oss å kople til og sa: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Enkle virtuelle pakker: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER mislykkes, tjeneren sa: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Sammensatte virtuelle pakker: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS mislykkes, tjeneren sa: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Mangler: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::"
-"ftp::ProxyLogin» er tomt."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Antall unike versjoner: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Antall unike versjoner: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE mislykkes, tjeneren sa: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Antall avhengighetsforhold: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Tidsavbrudd på forbindelsen"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Antall forhold versjon/fil: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Tjeneren lukket forbindelsen"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Antall forhold versjon/fil: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Lesefeil"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Antall tilbudte tilknyttinger: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Et svar oversvømte bufferen."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Antall utvidede strenger: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokollødeleggelse"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total plass for avhengighetsforhold/versjoner: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Skrivefeil"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Plass brukt av slark: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Klarte ikke å opprette en sokkel"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Samlet mengde redegjort plass: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Pakkefila %s er ikke oppdatert."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Mislyktes"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Du må oppgi nøyaktig ett mønster"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Klarte ikke å koble til en passiv sokkel."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Fant ingen pakker"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pakkefiler:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Klarte ikke å binde til sokkel"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr ""
+"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Klarte ikke å lytte til sokkel"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Klarte ikke å avgjøre sokkelnavnet"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Låste pakker:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Klarte ikke å sende PORT-kommandoen"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ikke funnet)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Ukjent adressefamilie %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installert: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT mislykkes, tjeneren sa: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ingen)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Tidsavbrudd på tilkoblingen til datasokkelen"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Klarte ikke å godta tilkoblingen"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pakke låst til: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem ved oppretting av nøkkel for fil"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versjonstabell:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Klarte ikke å hente fila, tjeneren sa «%s»"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Tidsavbrudd på datasokkelen"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s %s kompilert på %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Spørring"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Klarte ikke å starte"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Kobler til %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Bruk: apt-cache [innstillinger] kommando\n"
+" apt-cache [innstillinger] add fil1 [fil2 ...]\n"
+" apt-cache [innstillinger] showpkg pakke1 [pakke2 ...]\n"
+" apt-cache [innstillinger] showsrc pakke1 [pakke2 ...]\n"
+"\n"
+"apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n"
+"lagerfiler, og spørre dem om informasjon.\n"
+"\n"
+"Ordrer:\n"
+" add - Legg en fil til kildelageret\n"
+" gencaches - Bygg lagrene for både pakke og kildekode\n"
+" showpkg - Vis overordnet informasjon om en enkelt pakke\n"
+" showsrc - Vis data om kildekoden\n"
+" stats - Vis en enkel statistikk\n"
+" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n"
+" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n"
+" unmet - Vis uinnfridde avhengighetsforhold\n"
+" search - Søk i pakkelista etter et regulært uttrykkr\n"
+" show - Vis et lesbart oppslag for pakken\n"
+" depends - Vis rå informasjon om avhengighetsforholdene for pakken\n"
+" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for "
+"pakken\n"
+" pkgnames - List alle pakkenavn\n"
+" dotty - Lag pakke-grafer for GraphVis\n"
+" xvcg - Lag pakke-grafer for xvcg\n"
+" policy - Vis regelinnstillingerr\n"
+"\n"
+"Innstillinger:\n"
+" -h Denne hjelpeteksten\n"
+" -p=? Pakkelageret.\n"
+" -s=? Kildekodelageret.\n"
+" -q Ikke vis framdrift.\n"
+" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
+"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Oppgi et navn for disken, eksempelvis «Debian 2.1r1 disk 1»"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Sett inn en disk i lagringsenheten og trykk Enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Ikke parvise argumenter"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Klarte ikke å koble til %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Bruk: apt-config [innstillinger] kommando\n"
+"\n"
+"apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n"
+"\n"
+"Ordrer:\n"
+" shell - Skallmodus\n"
+" dump - Vis innstillingene\n"
+"\n"
+"Innstillinger:\n"
+" -h Denne hjelpeteksten\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Kobler til %s"
+msgid "%s not a valid DEB package."
+msgstr "%s er ikke en gyldig debianpakke."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Klarte ikke å slå opp «%s»"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
+"\n"
+"apt-extracttemplates er et verktøy til å hente ut informasjon om "
+"innstillinger\n"
+"og maler fra debianpakker.\n"
+"\n"
+"Innstillinger:\n"
+" -h Denne hjelpeteksten\n"
+" -t Lag en midlertidig mappe\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Midlertidig feil ved oppslag av «%s»"
+msgid "Unable to write to %s"
+msgstr "Kan ikke skrive til %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Kan ikke fastslå debconf-versjonen. Er debconf installert?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Klarte ikke å koble til %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista over pakkeutvidelser er for lang"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Klarte ikke å slå opp i nøkkelring; «%s»"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Argumentliste fra Acquire::gpgv::Options for lang. Avbryter."
+msgid "Error processing directory %s"
+msgstr "Feil ved lesing av katalogen %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista over kildeutvidelser er for lang"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Minst en ugyldig signatur ble funnet."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Feil ved skriving av topptekst til innholdsfila"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Klarte ikke kjøre «%s» for å verifisere signaturen (er gnupg installert?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Ukjent feil ved kjøring av gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "De følgende signaturene var ugyldige:\n"
+msgid "Error processing contents %s"
+msgstr "Det oppsto en feil ved lesing av %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen "
-"ikke er tilgjengelig:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Klarte ikke å få statusen på %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Klarte ikke å åpne rør for %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Lesefeil fra %s-prosessen"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Bruk: apt-ftparchive [innstillinger] ordre\n"
+"Ordrer: packages binærsti [overstyringsfil [sti-prefiks]]\n"
+" sources kildesti [overstyringsfil [sti-prefiks]]\n"
+" contents sti\n"
+" release sti\n"
+" generate config [grupper]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive oppretter indeksfiler for debianarkiver. Mange ulike\n"
+"metoder er støttet - fra helautomatiske til funksjonelle\n"
+"erstatninger for dpkg-scanpackages og dpkg-scansources.\n"
+"\n"
+"apt-ftparchive oppretter «Packages»-filer fra et tre med debianpakker.\n"
+"«Packages»-fila inneholder alle kontrollfeltene fra hver pakke i tillegg til\n"
+"MD5-nøkkel og filstørrelse. Du kan bruke en overstyringsfil for å tvinge\n"
+"gjennom verdier for prioritet og kategori.\n"
+"\n"
+"apt-ftparchive kan på samme måte opprette kildefiler fra et tre\n"
+"med .dsc-filer. Du kan bruke en overstyringsfil med --source-override.\n"
+"\n"
+"Kommandoene «packages» og «sources» skal kjøres i rota av katalogtreet.\n"
+"«Binærsti» skal peke til toppkatalogen for det rekursive søket, og\n"
+"overstyringsfila skal inneholde innstillinger for overstyring.\n"
+"Sti-prefikset blir lagt til feltene for filnavn, dersom det er oppgitt. Her "
+"er\n"
+"et eksempel på bruk i debianarkivet:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Innstillinger:\n"
+" -h Vis denne hjelpeteksten.\n"
+" --md5 Styrer MD5-opprettelsen\n"
+" -s=? Overstyringsfil for kildekode.\n"
+" -q Stille.\n"
+" -d=? Velger om du vil bruke en mellomlagerdatabase.\n"
+" --no-delink Bruk avlusingsmodus med «delinking».\n"
+" --contents Styrer opprettelse av innholdsfila.\n"
+" -c=? Les denne oppsettsfila.\n"
+" -o=? Setter en vilkårlig innstilling"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Venter på hoder"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ingen utvalg passet"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Fikk en enkel hodelinje over %u tegn"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Ødelagt hodelinje"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP-tjeneren sendte et ugyldig svarhode"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Enkelte filer mangler i pakkegruppa «%s»"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Denne HTTP-tjeneren har ødelagt støtte for område"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Databasen er gammel, forsøker å oppgradere %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Ukjent datoformat"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, "
+"fjern og så gjenopprett databasen."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Utvalget mislykkes"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Klarte ikke å åpne Databasefila %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Tidsavbrudd på forbindelsen"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Klarte ikke å få statusen på %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Feil ved skriving til utfil"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arkivet har ingen kontrollpost"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Feil ved skriving til fil"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Klarte ikke å finne en peker"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Feil ved skriving til fila"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "A: Klarte ikke å lese katalogen %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "A: Klarte ikke å få statusen på %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Feil ved lesing fra tjeneren"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F:"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Ødelagte hodedata"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "A:"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Forbindelsen mislykkes"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Det er feil ved fila"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Intern feil"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Klarte ikke å slå opp %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kan ikke utføre mmap på en tom fil"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Klarte ikke å finne fram i treet"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Kunne ikke lage mmap av %lu bytes"
+msgid "Failed to open %s"
+msgstr "Klarte ikke å åpne %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Fant ikke utvalget %s"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Ukjent typeforkortelse: «%c»"
+msgid "Failed to readlink %s"
+msgstr "Klarte ikke å lese lenken %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Åpner oppsettsfila %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linje %d er for lang (maks %d)"
+msgid "Failed to unlink %s"
+msgstr "Klarte ikke å oppheve lenken %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaksfeil %s:%u: Blokka starter uten navn."
+msgid "*** Failed to link %s to %s"
+msgstr "*** Klarte ikke å lenke %s til %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaksfeil %s:%u: Feil på taggen"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink-grensa på %s B er nådd.\n"
+
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arkivet har ikke noe pakkefelt"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien"
+msgid " %s has no override entry\n"
+msgstr " %s har ingen overstyringsoppføring\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s-vedlikeholderen er %s, ikke %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer"
+msgid " %s has no source override entry\n"
+msgstr " %s har ingen kildeoverstyringsoppføring\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaksfeil %s:%u: Inkludert herfra"
+msgid " %s has no binary override entry either\n"
+msgstr " %s har ingen binæroverstyringsoppføring heller\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet"
+msgid "Internal error, could not locate member %s"
+msgstr "Intern feil, fant ikke medlemmet %s"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Klarte ikke å tildele minne"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Unable to read %s"
-msgstr "Klarer ikke å lese %s"
+msgid "Unable to open %s"
+msgstr "Klarte ikke å åpne %s"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s ... Feil"
+msgid "Malformed override %s line %lu #1"
+msgstr "Ugyldig overstyring %s linje %lu #1"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s ... Ferdig"
+msgid "Malformed override %s line %lu #2"
+msgstr "Ugyldig overstyring %s linje %lu #2"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)."
+msgid "Malformed override %s line %lu #3"
+msgstr "Ugyldig overstyring %s linje %lu #3"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Skjønner ikke kommandolinjevalget %s"
+msgid "Failed to read the override file %s"
+msgstr "Klarte ikke å lese overstyringsfila %s"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Kommandolinjevalget %s er ikke boolsk"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Ukjent komprimeringsalgoritme «%s»"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Valget %s krever et argument."
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimert utdata %s trenger et komprimeringssett"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Klarte ikke å opprette IPC-rør til underprosessen"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Valget %s må ha et heltallsargument, ikke «%s»"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Klarte ikke å opprette FILE*"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Valget «%s» er for langt"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Klarte ikke å forgreine prosess"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Skjønner ikke %s. Prøv «true» eller «false»."
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Komprimer barneprosess"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Invalid operation %s"
-msgstr "Ugyldig operasjon %s"
+msgid "Internal error, failed to create %s"
+msgstr "Intern feil, klarte ikke å opprette %s"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Klarer ikke å fastsette monteringspunktet %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Klarte ikke å opprette underprosessen IPC"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Klarer ikke å endre %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Klarte ikke å kjøre komprimeringen"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Klarer ikke å få statusen på CD-spilleren"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekomprimering"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Klarte ikke å kommunisere med underprosess/fil"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Kunne ikke åpne låsefila %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Klarte ikke å lese under utregning av MD5"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s"
+msgid "Problem unlinking %s"
+msgstr "Problem ved oppheving av lenken til %s"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not get lock %s"
-msgstr "Får ikke låst %s"
+msgid "Failed to rename %s to %s"
+msgstr "Klarte ikke å endre navnet på %s til %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Ventet på %s, men den ble ikke funnet"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Underprosessen %s mottok et minnefeilsignal."
+msgid "Regex compilation error - %s"
+msgstr "Kompileringsfeil i regulært uttrykk - %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Underprosessen %s ga en feilkode (%u)"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgende pakker har uinnfridde avhengighetsforhold:"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Underprosessen %s avsluttet uventet"
+msgid "but %s is installed"
+msgstr "men %s er installert"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Could not open file %s"
-msgstr "Kunne ikke åpne fila %s"
+msgid "but %s is to be installed"
+msgstr "men %s skal installeres"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "men lar seg ikke installere"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "men er en virtuell pakke"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem ved låsing av fila"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "men er ikke installert"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problem ved oppheving av lenke til fila"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "men skal ikke installeres"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem ved oppdatering av fila"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " eller"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Tomt pakkelager"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Følgende NYE pakker vil bli installert:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Pakkens lagerfil er ødelagt"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Følgende pakker vil bli FJERNET:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Følgende pakker er holdt tilbake:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Denne APT støtter ikke versjonssystemet «%s»"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Følgende pakker vil bli oppgradert:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Pakkelageret ble bygd for en annen arkitektur"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Følgende pakker vil bli NEDGRADERT:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Avhenger av"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Følgende pakker vil bli endret:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Forutsetter"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (pga. %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Foreslår"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Anbefaler"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu oppgraderte, %lu nylig installerte, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Er i konflikt med"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu installert på nytt, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Erstatter"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderte, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Nuller"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu å fjerne og %lu ikke oppgradert.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pakker ikke fullt installert eller fjernet.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "viktig"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Retter på avhengighetsforhold ..."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "påkrevet"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " mislyktes."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "vanlig"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Klarer ikke å rette på avhengighetsforholdene"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "valgfri"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Klarer ikke å minimere oppgraderingsettet"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "tillegg"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Utført"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Skaper oversikt over avhengighetsforhold"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versjons-kandidater"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Oppretter avhengighetsforhold"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Fletter tilgjengelig informasjon"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Autentiseringsadvarsel overstyrt.\n"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Klarte ikke å åpne %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Installer disse pakkene uten verifikasjon [j/N]? "
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Klarte ikke å skrive fila %s"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Noen pakker ble ikke autentisert"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Klarer ikke å fortolke pakkefila %s (1)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Klarer ikke å fortolke pakkefila %s (2)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Feil på linje %lu i kildelista %s (nettadresse)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakker trenges å fjernes, men funksjonen er slått av."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Feil på linje %lu i kildelista %s (dist)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern feil, sortering fullførte ikke"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Klarer ikke å låse nedlastingsmappa"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Feil på %lu i kildelista %s (Absolutt dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Kan ikke lese kildlista."
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Feil på %lu i kildelista %s (dist fortolking)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Så rart ... Størrelsene stemmer ikke overens, send en e-post til "
+"apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Opening %s"
-msgstr "Åpner %s"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Må hente %sB/%sB med arkiver.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linje %u i kildelista %s er for lang"
+msgid "Need to get %sB of archives.\n"
+msgstr "Må hente %sB med arkiver.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Feil på %u i kildelista %s (type)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Etter utpakking vil %sB ekstra diskplass bli brukt.\n"
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typen «%s» er ukjent i linje %u i kildelista %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Etter utpakking vil %sB diskplass bli ledig.\n"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Feil på %u i kildelista %s (selgers id)"
+msgid "Couldn't determine free space in %s"
+msgstr "Klarte ikke bestemme ledig plass i %s"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:871
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+msgid "You don't have enough free space in %s."
+msgstr "Dessverre, ikke nok ledig plass i %s"
+
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-"Den forestående installasjon må midlertidig fjerne den meget viktige pakken %"
-"s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du "
-"virkelig vil det, så bruk innstillingen APT::Force-LoopBreak."
+"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring."
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Oversiktsfil av typen «%s» støttes ikke"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, gjør som jeg sier!"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den."
+"Du er iferd med å utføre en mulig skadelig handling.\n"
+"For å fortsette skriv inn teksten «%s»\n"
+" ?] "
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Avbryter."
+
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Vil du fortsette [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
+#, c-format
+msgid "Failed to fetch %s %s\n"
+msgstr "Klarte ikke å skaffe %s %s\n"
+
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Noen av filene kunne ikke lastes ned"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Nedlasting fullført med innstillinga «bare nedlasting»"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker "
-"som holdes tilbake."
+"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller «--"
+"fix-missing»."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "«--fix-missing» og bytte av media støttes nå ikke"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Klarer ikke å rette på manglende pakker."
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Avbryter istallasjonen."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Listemappa %spartial mangler."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Merk, velger %s istedenfor %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Arkivmappa %spartial mangler."
+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"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Henter fil %li av %li (%s gjenværende)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Henter fil %li av %li"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pakken %s er en virtuell pakke, som oppfylt av:\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installert]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Du må velge en pakke som skal installeres."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Finner ikke metode-driveren %s."
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Følgende pakker erstatter den imidlertid:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoden %s startet ikke korrekt"
+msgid "Package %s has no installation candidate"
+msgstr "Pakken %s har ingen installasjonskandidat"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter."
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Pakkesystemet «%s» støttes ikke"
+msgid "%s is already the newest version.\n"
+msgstr "%s er allerede nyeste versjon.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Klarer ikke bestemme en passende pakkesystemtype"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Utgave «%s» av «%s» ble ikke funnet"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "Klarer ikke finne informasjonom %s."
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versjon «%s» av «%s» ble ikke funnet"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Utvalgt versjon %s (%s) for %s\n"
+
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Oppdaterings-kommandoen tar ingen argumenter"
+
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Kan ikke låse listemappa"
+
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»."
+"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle "
+"ble brukt isteden. "
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Kan ikke lese kildlista."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes."
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Følgende NYE pakker vil bli installert:"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Det kan hende du vil kjøre «apt-get update» for å rette på disse problemene"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ugyldig oppslag i foretrekksfila, manglende pakkehode"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Forsto ikke spikring av typen %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgende informasjon kan være til hjelp med å løse problemet:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Ingen prioritet (eller null) spesifisert for pin"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern feil, problemløser ødela noe"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Lageret har et uoverensstemmende versjonssystem"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Intern feil - «AllUpgrade» ødela noe"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Klarte ikke å finne pakken %s"
+
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Feil oppsto under behandling av %s (NewPackage)"
+msgid "Couldn't find package %s"
+msgstr "Klarte ikke å finne pakken %s"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Feil oppsto under behandling av %s (UsePackage1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Merk, velger %s istedenfor det regulære uttrykket «%s»\n"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "men %s skal installeres"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Feil oppsto under behandling av %s (UsePackage2)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Feil oppsto under behandling av %s (NewVersion1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Noen pakker kunne ikke installeres. Dette kan bety at du har bedt om\n"
+"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n"
+"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n"
+"distribusjonen."
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Feil oppsto under behandling av %s (UsePackage3)"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"Ettersom du bare bestilte et enkelt inngrep er det overveiende sannsynlig\n"
+"at pakken helt enkelt ikke kan installeres, og du bør fylle ut en "
+"feilmelding."
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Feil oppsto under behandling av %s (NewVersion2)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Ødelagte pakker"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Følgende ekstra pakker vil bli installert."
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Jøss, du har overgått antallet pakkenavn denne APT klarer."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Foreslåtte pakker:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Jøss, du har overgått antallet versjoner denne APT klarer."
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Anbefalte pakker"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Jøss, du har overgått antallet versjoner denne APT klarer."
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Beregner oppgradering... "
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer."
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Mislyktes"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Utført"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Intern feil, problemløser ødela noe"
+
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Feil oppsto under behandling av %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Klarer ikke å finne en kildekodepakke for %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Feil oppsto under behandling av %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Hopper over allerede nedlastet fil «%s»\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Fant ikke pakken %s %s ved behandling av filkrav"
+msgid "You don't have enough free space in %s"
+msgstr "Du har ikke nok ledig plass i %s"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Kunne ikke finne informasjon om %s - lista over kildekodepakker"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Leser pakkelister"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Samler inn filtilbud"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Skaffer kildekode %s\n"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Klarte ikke å skaffe alle arkivene."
+
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Kan ikke skrive til %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Omgår utpakking av allerede utpakket kilde i %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO-feil ved lagring av kildekode-lager"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Utpakkingskommandoen «%s» mislyktes.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "klarte ikke å endre navnet, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Sjekk om pakken «dpkg-dev» er installert.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Feil MD5sum"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Byggekommandoen «%s» mislyktes.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Feil MD5sum"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Barneprosessen mislyktes"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
-"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken "
-"selv (fordi arkitekturen mangler)."
+msgid "Unable to get build-dependency information for %s"
+msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne denne "
-"pakken selv."
+msgid "%s has no build depends.\n"
+msgstr "%s har ingen avhengigheter.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, 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."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Feil størrelse"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk"
-
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Bruker CD-ROM monteringspunkt %s\n"
-"Monterer CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Indentifiserer.."
+"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige "
+"versjoner av pakken %s som oppfyller versjonskravene"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Lagret merkelapp: %s \n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Klarte ikke å tilfredsstille %s avhengighet for %s: den installerte pakken %"
+"s er for ny"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Bruker CD-ROM monteringspunkt %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Avmonterer CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Venter på CD-en...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Monterer CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Leter gjennom CD for indeksfiler..\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Fant %i pakkeindekser, %i kildeindekser og %i signaturer\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Lagret merkelapp: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Klarte ikke å behandle forutsetningene for bygging"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Det er ikke et gyldig navn, prøv igjen.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Støttede moduler:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"CD-en er kalt: \n"
-"«%s»\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopierer pakkelister..."
+"Bruk: apt-get [innstillinger] kommando\n"
+" apt-get [innstillinger] install|remove pakke1 [pakke2 ...]\n"
+" apt-get [innstillinger] source pakke1 [pakke2 ...]\n"
+"\n"
+"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja for å "
+"laste ned og\n"
+"installere pakker. De kommandoene som brukes mest er «update» og «install».\n"
+"\n"
+"Ordrer:\n"
+" update - Hent nye pakkelister\n"
+" upgrade - Utfør en oppgradering\n"
+" install - Installér nye pakker (Bruk pakkenavn - ikke filnavn (foo.deb))\n"
+" remove - Fjern pakker\n"
+" source - Last ned kildekode fra arkivene\n"
+" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n"
+" dist-upgrade - Oppgradér utgave, les apt-get(8)\n"
+" dselect-upgrade - Følg «dselect» sine anbefalinger\n"
+" clean - Slett nedlastede arkivfiler\n"
+" autoclean - Slett gamle nedlastede arkivfiler\n"
+" check - Se etter om det finnes brutte avhengigheter\n"
+"\n"
+"Innstillinger:\n"
+" -h Denne hjelpteksten.\n"
+" -q Loggbar tilbakemelding - ikke vis framdrift\n"
+" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n"
+" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n"
+" -s Simulering - bare simuler kommandoen\n"
+" -y Anta Ja til alle forespørsler uten å spørre\n"
+" -f Prøv å fortsette hvis integritetstesten mislykkes\n"
+" -m Prøv å fortsette når pakker mangler\n"
+" -u Vis liste med oppgraderte pakker\n"
+" -b Bygg pakken etter at kildekoden er lastet ned\n"
+" -V Vis fullstendige versjonsnummere\n"
+" -c=? Les denne innstillingsfila\n"
+" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
+"Les manualsiden apt-get(8), sources.list(5) and apt.conf(5)\n"
+"for mer informasjon og flere innstillinger\n"
+" Denne APT har kraften til en Superku.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Skriver ny kildeliste\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Funnet "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Kildelisteoppføringer for denne CD-en er:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Hent:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Avmonterer CD-ROM..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Skrev %i poster.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Feil "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Skrev %i poster med %i manglende filer.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hentet %sB på %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Skrev %i poster med %i feile filer.\n"
+msgid " [Working]"
+msgstr " [Arbeider]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Bytte av media: sett inn CD-en som er merket\n"
+" «%s»\n"
+"i «%s» og trykk «Enter»\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Listemappa %spartial mangler."
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Ukjent pakkeoppføring"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Forbereder %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Bruk: apt-sortpkgs [innstillinger] fil1 [fil2 ...]\n"
+"\n"
+"apt-sortpkgs er et enkelt redskap til å sortere pakkefiler. Innstillingen\n"
+"-s brukes til å angi hvilken filtype det er.\n"
+"\n"
+"Innstillinger:\n"
+" -h Denne hjelpeteksten\n"
+" -s Bruk filsortering\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Pakker ut %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Feil standardinnstilling!"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Forbereder konfigurering %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Trykk «Enter» og fortsett"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Konfigurer %s"
+# Note to translators: The following four messages belong together. It doesn't
+# matter where sentences start, but it has to fit in just these four lines, and
+# at only 80 characters per line, if possible.
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Feil oppsto ved utpakkinga. Setter nå opp de installerte pakkene."
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Feil ved lesing av katalogen %s"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "Det kan lede til fordobling av feil eller feil forårsaket av "
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Installerte %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Forbereder fjerning av %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Fjerner %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Fjernet %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Forbereder å fullstendig slette %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Fjernet %s fullstendig"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Kunne ikke åpne fila %s"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Klarte ikke å opprette IPC-rør til underprosessen"
+#: dselect/install:103
+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."
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Forbindelsen ble uventet stengt"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Fletter tilgjengelig informasjon"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Avledningsstien er for lang"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Klarte ikke å endre navnet på %s til %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Klarer ikke å lese %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgstr ""
"Infokatalogen og den midlertidige katalogen må være på det samme filsystemet"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Leser pakkelister"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Kontrollfila kan ikke tolkes"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Klarer ikke å finne pakken %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Klarer ikke å lese CD-databasen %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Plassmengde pakkenavn: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan ikke "
+"bruke «apt-get update» til å legge til nye CD-plater."
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Vanlige pakker: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Feil CD-plate"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Rent virtuelle pakker: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i "
+"bruk."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Enkle virtuelle pakker: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk ikke funnet."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Sammensatte virtuelle pakker: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fant ikke fila"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Mangler: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Klarte ikke å få status"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Antall unike versjoner: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Klarte ikke å sette endringstidspunkt"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Antall unike versjoner: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Antall avhengighetsforhold: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Logger inn"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Antall forhold versjon/fil: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Klarte ikke å fastslå navnet på motparten"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Antall forhold versjon/fil: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Klarte ikke å fastslå det lokale navnet"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Antall tilbudte tilknyttinger: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Tjeneren nektet oss å kople til og sa: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Antall utvidede strenger: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER mislykkes, tjeneren sa: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total plass for avhengighetsforhold/versjoner: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS mislykkes, tjeneren sa: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Plass brukt av slark: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::"
+"ftp::ProxyLogin» er tomt."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Samlet mengde redegjort plass: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakkefila %s er ikke oppdatert."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE mislykkes, tjeneren sa: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Du må oppgi nøyaktig ett mønster"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Tidsavbrudd på forbindelsen"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Fant ingen pakker"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Tjeneren lukket forbindelsen"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pakkefiler:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Lesefeil"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr ""
-"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Et svar oversvømte bufferen."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokollødeleggelse"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Låste pakker:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Skrivefeil"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ikke funnet)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Klarte ikke å opprette en sokkel"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installert: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ingen)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Klarte ikke å koble til en passiv sokkel."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidat: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pakke låst til: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Klarte ikke å binde til sokkel"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versjonstabell:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Klarte ikke å lytte til sokkel"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s %s kompilert på %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Klarte ikke å avgjøre sokkelnavnet"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Bruk: apt-cache [innstillinger] kommando\n"
-" apt-cache [innstillinger] add fil1 [fil2 ...]\n"
-" apt-cache [innstillinger] showpkg pakke1 [pakke2 ...]\n"
-" apt-cache [innstillinger] showsrc pakke1 [pakke2 ...]\n"
-"\n"
-"apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n"
-"lagerfiler, og spørre dem om informasjon.\n"
-"\n"
-"Ordrer:\n"
-" add - Legg en fil til kildelageret\n"
-" gencaches - Bygg lagrene for både pakke og kildekode\n"
-" showpkg - Vis overordnet informasjon om en enkelt pakke\n"
-" showsrc - Vis data om kildekoden\n"
-" stats - Vis en enkel statistikk\n"
-" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n"
-" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n"
-" unmet - Vis uinnfridde avhengighetsforhold\n"
-" search - Søk i pakkelista etter et regulært uttrykkr\n"
-" show - Vis et lesbart oppslag for pakken\n"
-" depends - Vis rå informasjon om avhengighetsforholdene for pakken\n"
-" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for "
-"pakken\n"
-" pkgnames - List alle pakkenavn\n"
-" dotty - Lag pakke-grafer for GraphVis\n"
-" xvcg - Lag pakke-grafer for xvcg\n"
-" policy - Vis regelinnstillingerr\n"
-"\n"
-"Innstillinger:\n"
-" -h Denne hjelpeteksten\n"
-" -p=? Pakkelageret.\n"
-" -s=? Kildekodelageret.\n"
-" -q Ikke vis framdrift.\n"
-" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Klarte ikke å sende PORT-kommandoen"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Oppgi et navn for disken, eksempelvis «Debian 2.1r1 disk 1»"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Ukjent adressefamilie %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Sett inn en disk i lagringsenheten og trykk Enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT mislykkes, tjeneren sa: %s"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Tidsavbrudd på tilkoblingen til datasokkelen"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Ikke parvise argumenter"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Klarte ikke å godta tilkoblingen"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Bruk: apt-config [innstillinger] kommando\n"
-"\n"
-"apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n"
-"\n"
-"Ordrer:\n"
-" shell - Skallmodus\n"
-" dump - Vis innstillingene\n"
-"\n"
-"Innstillinger:\n"
-" -h Denne hjelpeteksten\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem ved oppretting av nøkkel for fil"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s er ikke en gyldig debianpakke."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Klarte ikke å hente fila, tjeneren sa «%s»"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
-"\n"
-"apt-extracttemplates er et verktøy til å hente ut informasjon om "
-"innstillinger\n"
-"og maler fra debianpakker.\n"
-"\n"
-"Innstillinger:\n"
-" -h Denne hjelpeteksten\n"
-" -t Lag en midlertidig mappe\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Tidsavbrudd på datasokkelen"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Kan ikke fastslå debconf-versjonen. Er debconf installert?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista over pakkeutvidelser er for lang"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Spørring"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
-#, c-format
-msgid "Error processing directory %s"
-msgstr "Feil ved lesing av katalogen %s"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Klarte ikke å starte"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista over kildeutvidelser er for lang"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Kobler til %s (%s)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Feil ved skriving av topptekst til innholdsfila"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:80
#, c-format
-msgid "Error processing contents %s"
-msgstr "Det oppsto en feil ved lesing av %s"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Bruk: apt-ftparchive [innstillinger] ordre\n"
-"Ordrer: packages binærsti [overstyringsfil [sti-prefiks]]\n"
-" sources kildesti [overstyringsfil [sti-prefiks]]\n"
-" contents sti\n"
-" release sti\n"
-" generate config [grupper]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive oppretter indeksfiler for debianarkiver. Mange ulike\n"
-"metoder er støttet - fra helautomatiske til funksjonelle\n"
-"erstatninger for dpkg-scanpackages og dpkg-scansources.\n"
-"\n"
-"apt-ftparchive oppretter «Packages»-filer fra et tre med debianpakker.\n"
-"«Packages»-fila inneholder alle kontrollfeltene fra hver pakke i tillegg "
-"til\n"
-"MD5-nøkkel og filstørrelse. Du kan bruke en overstyringsfil for å tvinge\n"
-"gjennom verdier for prioritet og kategori.\n"
-"\n"
-"apt-ftparchive kan på samme måte opprette kildefiler fra et tre\n"
-"med .dsc-filer. Du kan bruke en overstyringsfil med --source-override.\n"
-"\n"
-"Kommandoene «packages» og «sources» skal kjøres i rota av katalogtreet.\n"
-"«Binærsti» skal peke til toppkatalogen for det rekursive søket, og\n"
-"overstyringsfila skal inneholde innstillinger for overstyring.\n"
-"Sti-prefikset blir lagt til feltene for filnavn, dersom det er oppgitt. Her "
-"er\n"
-"et eksempel på bruk i debianarkivet:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Innstillinger:\n"
-" -h Vis denne hjelpeteksten.\n"
-" --md5 Styrer MD5-opprettelsen\n"
-" -s=? Overstyringsfil for kildekode.\n"
-" -q Stille.\n"
-" -d=? Velger om du vil bruke en mellomlagerdatabase.\n"
-" --no-delink Bruk avlusingsmodus med «delinking».\n"
-" --contents Styrer opprettelse av innholdsfila.\n"
-" -c=? Les denne oppsettsfila.\n"
-" -o=? Setter en vilkårlig innstilling"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Ingen utvalg passet"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:108
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Enkelte filer mangler i pakkegruppa «%s»"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Klarte ikke å koble til %s:%s (%s)."
-#: ftparchive/cachedb.cc:43
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old"
+msgid "Connecting to %s"
+msgstr "Kobler til %s"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:167
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Databasen er gammel, forsøker å oppgradere %s"
+msgid "Could not resolve '%s'"
+msgstr "Klarte ikke å slå opp «%s»"
-#: ftparchive/cachedb.cc:72
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Midlertidig feil ved oppslag av «%s»"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Klarte ikke å koble til %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Klarte ikke å slå opp i nøkkelring; «%s»"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Argumentliste fra Acquire::gpgv::Options for lang. Avbryter."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, "
-"fjern og så gjenopprett databasen."
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Minst en ugyldig signatur ble funnet."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Klarte ikke å åpne Databasefila %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Klarte ikke kjøre «%s» for å verifisere signaturen (er gnupg installert?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arkivet har ingen kontrollpost"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Ukjent feil ved kjøring av gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Klarte ikke å finne en peker"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "De følgende signaturene var ugyldige:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen "
+"ikke er tilgjengelig:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "A: Klarte ikke å lese katalogen %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Klarte ikke å åpne rør for %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "A: Klarte ikke å få statusen på %s\n"
+msgid "Read error from %s process"
+msgstr "Lesefeil fra %s-prosessen"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F:"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Venter på hoder"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "A:"
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Fikk en enkel hodelinje over %u tegn"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Det er feil ved fila"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Ødelagt hodelinje"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Klarte ikke å slå opp %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP-tjeneren sendte et ugyldig svarhode"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Klarte ikke å finne fram i treet"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Denne HTTP-tjeneren har ødelagt støtte for område"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Ukjent datoformat"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Utvalget mislykkes"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Tidsavbrudd på forbindelsen"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Feil ved skriving til utfil"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Feil ved skriving til fil"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Feil ved skriving til fila"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Feil ved lesing fra tjeneren"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Ødelagte hodedata"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Forbindelsen mislykkes"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Intern feil"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kan ikke utføre mmap på en tom fil"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Klarte ikke å åpne %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Kunne ikke lage mmap av %lu bytes"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Fant ikke utvalget %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Klarte ikke å lese lenken %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Ukjent typeforkortelse: «%c»"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Klarte ikke å oppheve lenken %s"
+msgid "Opening configuration file %s"
+msgstr "Åpner oppsettsfila %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linje %d er for lang (maks %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Klarte ikke å lenke %s til %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaksfeil %s:%u: Blokka starter uten navn."
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink-grensa på %s B er nådd.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaksfeil %s:%u: Feil på taggen"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arkivet har ikke noe pakkefelt"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s har ingen overstyringsoppføring\n"
+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"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s-vedlikeholderen er %s, ikke %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s har ingen kildeoverstyringsoppføring\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaksfeil %s:%u: Inkludert herfra"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s har ingen binæroverstyringsoppføring heller\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Intern feil, fant ikke medlemmet %s"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Klarte ikke å tildele minne"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s ... Feil"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "Klarte ikke å åpne %s"
+msgid "%c%s... Done"
+msgstr "%c%s ... Ferdig"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Ugyldig overstyring %s linje %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Ugyldig overstyring %s linje %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Skjønner ikke kommandolinjevalget %s"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Ugyldig overstyring %s linje %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Kommandolinjevalget %s er ikke boolsk"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Klarte ikke å lese overstyringsfila %s"
+msgid "Option %s requires an argument."
+msgstr "Valget %s krever et argument."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Ukjent komprimeringsalgoritme «%s»"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimert utdata %s trenger et komprimeringssett"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Valget %s må ha et heltallsargument, ikke «%s»"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Klarte ikke å opprette FILE*"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Valget «%s» er for langt"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Klarte ikke å forgreine prosess"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Skjønner ikke %s. Prøv «true» eller «false»."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Komprimer barneprosess"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Ugyldig operasjon %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Intern feil, klarte ikke å opprette %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Klarer ikke å fastsette monteringspunktet %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Klarte ikke å opprette underprosessen IPC"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Klarer ikke å endre %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Klarte ikke å kjøre komprimeringen"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Klarer ikke å få statusen på CD-spilleren"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekomprimering"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Klarte ikke å kommunisere med underprosess/fil"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Kunne ikke åpne låsefila %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Klarte ikke å lese under utregning av MD5"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem ved oppheving av lenken til %s"
+msgid "Could not get lock %s"
+msgstr "Får ikke låst %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Ventet på %s, men den ble ikke funnet"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Kompileringsfeil i regulært uttrykk - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Underprosessen %s mottok et minnefeilsignal."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgende pakker har uinnfridde avhengighetsforhold:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Underprosessen %s ga en feilkode (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installert"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Underprosessen %s avsluttet uventet"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s skal installeres"
+msgid "Could not open file %s"
+msgstr "Kunne ikke åpne fila %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "men lar seg ikke installere"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "men er en virtuell pakke"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "men er ikke installert"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem ved låsing av fila"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "men skal ikke installeres"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problem ved oppheving av lenke til fila"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " eller"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem ved oppdatering av fila"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Følgende NYE pakker vil bli installert:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Tomt pakkelager"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Følgende pakker vil bli FJERNET:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Pakkens lagerfil er ødelagt"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Følgende pakker er holdt tilbake:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Følgende pakker vil bli oppgradert:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Denne APT støtter ikke versjonssystemet «%s»"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Følgende pakker vil bli NEDGRADERT:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Pakkelageret ble bygd for en annen arkitektur"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Følgende pakker vil bli endret:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Avhenger av"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (pga. %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Forutsetter"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Foreslår"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu oppgraderte, %lu nylig installerte, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Anbefaler"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu installert på nytt, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Er i konflikt med"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderte, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Erstatter"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu å fjerne og %lu ikke oppgradert.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Nuller"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pakker ikke fullt installert eller fjernet.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Retter på avhengighetsforhold ..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "viktig"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " mislyktes."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "påkrevet"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Klarer ikke å rette på avhengighetsforholdene"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "vanlig"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Klarer ikke å minimere oppgraderingsettet"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "valgfri"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Utført"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "tillegg"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Skaper oversikt over avhengighetsforhold"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versjons-kandidater"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Oppretter avhengighetsforhold"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Autentiseringsadvarsel overstyrt.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Fletter tilgjengelig informasjon"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Installer disse pakkene uten verifikasjon [j/N]? "
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Klarte ikke å åpne %s"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Noen pakker ble ikke autentisert"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Klarte ikke å skrive fila %s"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Klarer ikke å fortolke pakkefila %s (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Klarer ikke å fortolke pakkefila %s (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakker trenges å fjernes, men funksjonen er slått av."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Feil på linje %lu i kildelista %s (nettadresse)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern feil, sortering fullførte ikke"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Feil på linje %lu i kildelista %s (dist)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Klarer ikke å låse nedlastingsmappa"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Så rart ... Størrelsene stemmer ikke overens, send en e-post til "
-"apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Feil på %lu i kildelista %s (Absolutt dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Må hente %sB/%sB med arkiver.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Feil på %lu i kildelista %s (dist fortolking)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Må hente %sB med arkiver.\n"
+msgid "Opening %s"
+msgstr "Åpner %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Etter utpakking vil %sB ekstra diskplass bli brukt.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Linje %u i kildelista %s er for lang"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Etter utpakking vil %sB diskplass bli ledig.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Feil på %u i kildelista %s (type)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Klarte ikke bestemme ledig plass i %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typen «%s» er ukjent i linje %u i kildelista %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Dessverre, ikke nok ledig plass i %s"
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Feil på %u i kildelista %s (selgers id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring."
+"Den forestående installasjon må midlertidig fjerne den meget viktige pakken %"
+"s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du "
+"virkelig vil det, så bruk innstillingen APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, gjør som jeg sier!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Oversiktsfil av typen «%s» støttes ikke"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Du er iferd med å utføre en mulig skadelig handling.\n"
-"For å fortsette skriv inn teksten «%s»\n"
-" ?] "
+"Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Avbryter."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker "
+"som holdes tilbake."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Vil du fortsette [Y/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Klarte ikke å skaffe %s %s\n"
+msgid "Lists directory %spartial is missing."
+msgstr "Listemappa %spartial mangler."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Noen av filene kunne ikke lastes ned"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Arkivmappa %spartial mangler."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Nedlasting fullført med innstillinga «bare nedlasting»"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Henter fil %li av %li (%s gjenværende)"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller "
-"«--fix-missing»."
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Henter fil %li av %li"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "«--fix-missing» og bytte av media støttes nå ikke"
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Finner ikke metode-driveren %s."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Klarer ikke å rette på manglende pakker."
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Metoden %s startet ikke korrekt"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Avbryter istallasjonen."
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Merk, velger %s istedenfor %s\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Pakkesystemet «%s» støttes ikke"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Klarer ikke bestemme en passende pakkesystemtype"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Unable to stat %s."
+msgstr "Klarer ikke finne informasjonom %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
msgstr ""
-"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n"
+"Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»."
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Det kan hende du vil kjøre «apt-get update» for å rette på disse problemene"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ugyldig oppslag i foretrekksfila, manglende pakkehode"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Pakken %s er en virtuell pakke, som oppfylt av:\n"
+msgid "Did not understand pin type %s"
+msgstr "Forsto ikke spikring av typen %s"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installert]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Ingen prioritet (eller null) spesifisert for pin"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Du må velge en pakke som skal installeres."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Lageret har et uoverensstemmende versjonssystem"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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:1125
-msgid "However the following packages replace it:"
-msgstr "Følgende pakker erstatter den imidlertid:"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Feil oppsto under behandling av %s (NewPackage)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Pakken %s har ingen installasjonskandidat"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Feil oppsto under behandling av %s (UsePackage1)"
-#: cmdline/apt-get.cc:1148
-#, 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"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s er allerede nyeste versjon.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Feil oppsto under behandling av %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Utgave «%s» av «%s» ble ikke funnet"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versjon «%s» av «%s» ble ikke funnet"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Feil oppsto under behandling av %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Utvalgt versjon %s (%s) for %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Feil oppsto under behandling av %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Oppdaterings-kommandoen tar ingen argumenter"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Feil oppsto under behandling av %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Kan ikke låse listemappa"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Jøss, du har overgått antallet pakkenavn denne APT klarer."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Jøss, du har overgått antallet versjoner denne APT klarer."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Følgende NYE pakker vil bli installert:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Jøss, du har overgått antallet versjoner denne APT klarer."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Feil oppsto under behandling av %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Følgende informasjon kan være til hjelp med å løse problemet:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Feil oppsto under behandling av %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern feil, problemløser ødela noe"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Fant ikke pakken %s %s ved behandling av filkrav"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern feil - «AllUpgrade» ødela noe"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Kunne ikke finne informasjon om %s - lista over kildekodepakker"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Klarte ikke å finne pakken %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Samler inn filtilbud"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Klarte ikke å finne pakken %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO-feil ved lagring av kildekode-lager"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Merk, velger %s istedenfor det regulære uttrykket «%s»\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "klarte ikke å endre navnet, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "men %s skal installeres"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Feil MD5sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Feil MD5sum"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller "
-"angi en løsning)."
+"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"Noen pakker kunne 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."
+"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken "
+"selv (fordi arkitekturen mangler)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Ettersom du bare bestilte et enkelt inngrep er det overveiende sannsynlig\n"
-"at pakken helt enkelt ikke kan installeres, og du bør fylle ut en "
-"feilmelding."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Ødelagte pakker"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Følgende ekstra pakker vil bli installert."
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Foreslåtte pakker:"
+"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne denne "
+"pakken selv."
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Anbefalte pakker"
+#: apt-pkg/acquire-item.cc:1313
+#, 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."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Beregner oppgradering... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Feil størrelse"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Utført"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Intern feil, problemløser ødela noe"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Bruker CD-ROM monteringspunkt %s\n"
+"Monterer CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Du må angi minst en pakke du vil ha kildekoden til"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Indentifiserer.."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Klarer ikke å finne en kildekodepakke for %s"
+msgid "Stored label: %s\n"
+msgstr "Lagret merkelapp: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Hopper over allerede nedlastet fil «%s»\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Avmonterer CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Du har ikke nok ledig plass i %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Bruker CD-ROM monteringspunkt %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Avmonterer CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Venter på CD-en...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Skaffer kildekode %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Monterer CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Klarte ikke å skaffe alle arkivene."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Leter gjennom CD for indeksfiler..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Omgår utpakking av allerede utpakket kilde i %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Fant %i pakkeindekser, %i kildeindekser og %i signaturer\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Utpakkingskommandoen «%s» mislyktes.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Lagret merkelapp: %s \n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Det er ikke et gyldig navn, prøv igjen.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Sjekk om pakken «dpkg-dev» er installert.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"CD-en er kalt: \n"
+"«%s»\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Byggekommandoen «%s» mislyktes.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopierer pakkelister..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Barneprosessen mislyktes"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Skriver ny kildeliste\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Kildelisteoppføringer for denne CD-en er:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s"
+msgid "Wrote %i records.\n"
+msgstr "Skrev %i poster.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s har ingen avhengigheter.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Skrev %i poster med %i manglende filer.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, 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"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Skrev %i poster med %i feile filer.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige "
-"versjoner av pakken %s som oppfyller versjonskravene"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n"
-#: cmdline/apt-get.cc:2518
-#, 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"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Listemappa %spartial mangler."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s"
+msgid "Preparing %s"
+msgstr "Forbereder %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Klarte ikke å behandle forutsetningene for bygging"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Støttede moduler:"
+msgid "Unpacking %s"
+msgstr "Pakker ut %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Bruk: apt-get [innstillinger] kommando\n"
-" apt-get [innstillinger] install|remove pakke1 [pakke2 ...]\n"
-" apt-get [innstillinger] source pakke1 [pakke2 ...]\n"
-"\n"
-"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja for å "
-"laste ned og\n"
-"installere pakker. De kommandoene som brukes mest er «update» og «install».\n"
-"\n"
-"Ordrer:\n"
-" update - Hent nye pakkelister\n"
-" upgrade - Utfør en oppgradering\n"
-" install - Installér nye pakker (Bruk pakkenavn - ikke filnavn (foo.deb))\n"
-" remove - Fjern pakker\n"
-" source - Last ned kildekode fra arkivene\n"
-" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n"
-" dist-upgrade - Oppgradér utgave, les apt-get(8)\n"
-" dselect-upgrade - Følg «dselect» sine anbefalinger\n"
-" clean - Slett nedlastede arkivfiler\n"
-" autoclean - Slett gamle nedlastede arkivfiler\n"
-" check - Se etter om det finnes brutte avhengigheter\n"
-"\n"
-"Innstillinger:\n"
-" -h Denne hjelpteksten.\n"
-" -q Loggbar tilbakemelding - ikke vis framdrift\n"
-" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n"
-" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n"
-" -s Simulering - bare simuler kommandoen\n"
-" -y Anta Ja til alle forespørsler uten å spørre\n"
-" -f Prøv å fortsette hvis integritetstesten mislykkes\n"
-" -m Prøv å fortsette når pakker mangler\n"
-" -u Vis liste med oppgraderte pakker\n"
-" -b Bygg pakken etter at kildekoden er lastet ned\n"
-" -V Vis fullstendige versjonsnummere\n"
-" -c=? Les denne innstillingsfila\n"
-" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-"Les manualsiden apt-get(8), sources.list(5) and apt.conf(5)\n"
-"for mer informasjon og flere innstillinger\n"
-" Denne APT har kraften til en Superku.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Forbereder konfigurering %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Funnet "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Konfigurer %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Hent:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Feil ved lesing av katalogen %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Installerte %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Feil "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Forbereder fjerning av %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hentet %sB på %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Fjerner %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Arbeider]"
+msgid "Removed %s"
+msgstr "Fjernet %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Forbereder å fullstendig slette %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Ukjent pakkeoppføring"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Fjernet %s fullstendig"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Bruk: apt-sortpkgs [innstillinger] fil1 [fil2 ...]\n"
-"\n"
-"apt-sortpkgs er et enkelt redskap til å sortere pakkefiler. Innstillingen\n"
-"-s brukes til å angi hvilken filtype det er.\n"
-"\n"
-"Innstillinger:\n"
-" -h Denne hjelpeteksten\n"
-" -s Bruk filsortering\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Feil standardinnstilling!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Kunne ikke åpne fila %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Trykk «Enter» og fortsett"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Forbindelsen ble uventet stengt"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Feil oppsto ved utpakkinga. Setter nå opp de installerte pakkene."
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linje %d er for lang (maks %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "Det kan lede til fordobling av feil eller feil forårsaket av "
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Feil oppsto under behandling av %s (NewFileVer1)"
-#: dselect/install:103
-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."
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Lagret merkelapp: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Fletter tilgjengelig informasjon"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Fant %i pakkeindekser, %i kildeindekser og %i signaturer\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt_po\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Plural-Forms: nplurals=2;plural=(n!=1)\n"
"X-Generator: KBabel 1.10.2\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get "
-"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "गलत सिडी रोम"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "डिस्क फेला परेन ।"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "फाइल फेला परेन "
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "स्थिर गर्न असफल भयो"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "परिमार्जन समय सेट असफल भयो"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन"
+msgid "Unable to locate package %s"
+msgstr "प्याकेज %s तोक्न असक्षम भयो"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "लगइन भइरहेछ"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "कूल प्याकेज नामहरू :"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "समान नाम निर्धारण गर्न असक्षम भयो"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " सामान्य प्याकेजहरू:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "सà¥\8dथानिय नाम निरà¥\8dधारण à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr "शà¥\81दà¥\8dध à¤\85वासà¥\8dतविà¤\95 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " एकल अवास्तविक प्याकेजहरू:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " मिश्रित अवास्तविक प्याकेजहरू:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "पास असफल भयो, सर्भरले भन्यो: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " हराइरहेको:"
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin "
-"खाली छ ।"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "कूल भिन्न संस्करणहरू:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "लà¤\97à¤\87न सà¥\8dà¤\95à¥\8dरिफà¥\8dà¤\9f à¤\86दà¥\87श '%s' à¤\85सफल à¤à¤¯à¥\8b, सरà¥\8dà¤à¤°à¤²à¥\87 à¤à¤¨à¥\8dयà¥\8b: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "à¤\95à¥\82ल à¤à¤¿à¤¨à¥\8dन सà¤\82सà¥\8dà¤\95रणहरà¥\82:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "टाइप असफल भयो: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "कूल निर्भरताहरू:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "à¤\9cडान समय सà¤\95ियà¥\8b"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "à¤\9cमà¥\8dमा ver/file समà¥\8dबनà¥\8dधहरà¥\82: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "सर्भरले जडान बन्द गर्यो"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "जम्मा ver/file सम्बन्धहरू: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "तà¥\8dरà¥\81à¤\9fि पढà¥\8dनà¥\81हà¥\8bसà¥\8d"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "à¤\95à¥\82ल à¤\89पलबà¥\8dध मानà¤\9aितà¥\8dरणहरà¥\82:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "à¤\8fà¤\89à¤\9fा पà¥\8dरतिà¤\95à¥\8dरियालà¥\87 बफर à¤\85धिपà¥\8dरवाह à¤\97रà¥\8dयà¥\8b"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "à¤\95à¥\82ल विशà¥\8dववà¥\8dयापà¥\80 सà¥\8dà¤\9fà¥\8dरिà¤\99à¥\8dà¤\97हरà¥\82:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "पà¥\8dरà¥\8bà¤\9fà¥\8bà¤\95ल दà¥\82षित"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "à¤\95à¥\82ल निरà¥\8dà¤à¤°à¤¤à¤¾ सà¤\82सà¥\8dà¤\95रण à¤\96ालà¥\80 ठाà¤\8aà¤\81:"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "तà¥\8dरà¥\81à¤\9fि लà¥\87à¤\96à¥\8dनà¥\81हà¥\8bसà¥\8d"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "à¤\95à¥\82ल शिथिल à¤\96ालà¥\80 ठाà¤\8aà¤\81:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "à¤\8fà¤\89à¤\9fा सà¤\95à¥\87à¤\9f सिरà¥\8dà¤\9cना à¤\97रà¥\8dन सà¤\95à¥\87न"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "à¤\95à¥\8b लाà¤\97ि à¤\95à¥\82ल à¤\96ालà¥\80 ठाà¤\8aà¤\81 लà¥\87à¤\96ाà¤\82à¤\95न:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "à¤\85सफल à¤à¤¯à¥\8b"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "तपाà¤\88à¤\81लà¥\87 à¤\8fà¤\89à¤\9fा वासà¥\8dतविà¤\95 बानà¥\8dà¤\95à¥\80 दिनà¥\81परà¥\8dà¤\9b"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "निसà¥\8dà¤\95à¥\8dरिय सà¤\95à¥\87à¤\9f à¤\9cडान à¤\97रà¥\8dन सà¤\95िà¤\8fन"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "à¤\95à¥\81नà¥\88 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 फà¥\87ला परà¥\87न"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "प्याकेज फाइलहरू:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "सà¤\95à¥\87à¤\9f बाà¤\81धà¥\8dन सà¤\95िà¤\8fन"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "à¤\95à¥\8dयास sync à¤à¤¨à¥\8dदा बाहिर à¤\9b, पà¥\8dयाà¤\95à¥\87à¤\9c फाà¤\87ल x-ref à¤\97रà¥\8dन सà¤\95à¥\8dदà¥\88न"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "सकेटमा सुन्न सकिएन"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "सकेट नाम निर्धारण गर्न सकिएन"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "पिन गरिएका प्याकेजहरू:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "पोर्ट आदेश पठाउन असक्षम भयो"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(फेला परेन)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "अज्ञात ठेगाना परिवार %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " स्थापना भयो:"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(कुनै पनि होइन)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "डेटा सकेटको जडान समय सकियो"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " उमेद्वार:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "à¤\9cडान सà¥\8dवà¥\80à¤\95ार à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c पिन:"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "समस्या द्रुतान्वेषण फाइल"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " संस्करण तालिका:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "डेटा सकेट समय सकियो"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "क्वेरी"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "आह्वान गर्न असक्षम भयो"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "%s (%s) मा जडान गरिदैछ"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"उपयोग: apt-cache [विकल्पहरू] आदेश\n"
+" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n"
+" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n"
+" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n"
+"\n"
+"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache "
+"कम-स्तरको उपकरण हो\n"
+"\n"
+"\n"
+"आदेशहरू:\n"
+" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n"
+" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n"
+" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n"
+" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n"
+" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n"
+" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n"
+" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n"
+" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n"
+" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n"
+" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n"
+" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n"
+" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n"
+" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n"
+" dotty - GraphVis को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n"
+" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n"
+" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ ।\n"
+" -p=? प्याकेज क्यास ।\n"
+" -s=? स्रोत क्यास ।\n"
+" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n"
+" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
+"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । "
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "तर्कहरू जोडामा छैन"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"उपयग: apt-config [विकल्पहरू] आदेश\n"
+"\n"
+" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n"
+"\n"
+"आदेशहरू:\n"
+" शेल - शेल मोड\n"
+" dump - कनफिगरेसन देखाउनुहोस्\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ ।\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "%s मा à¤\9cडान à¤\97रिदà¥\88à¤\9b"
+msgid "%s not a valid DEB package."
+msgstr "%s वà¥\88ध DEB पà¥\8dयाà¤\95à¥\87à¤\9c हà¥\8bà¤\87न"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "'%s' हल गर्न सकिएन"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"उपयोग: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+" apt-extracttemplates डवियन प्याकेजहरुबाट कनफिगरेसन र टेम्प्लेट सूचना झिक्ने उपकरण हो\n"
+"\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ\n"
+" -t टेम्प्लेट डाइरेक्ट्री सेट गर्नुहोस्\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "'%s' हल गर्दा अस्थायी असफल"
+msgid "Unable to write to %s"
+msgstr " %s मा लेख्न असक्षम"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr " debconf संस्करण प्राप्त गर्न सकिएन । के debconf स्थापना भयो ? "
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "%s %s मा जडान गर्न असफल भयो:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "प्याकेज विस्तार सूचि अति लामो छ"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "कुञ्जी घण्टी पहुँच गर्न सकिएन: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: प्राप्त गर्नेबाट तर्क सूचि::gpgv::अति लामो विकल्पहरू अवस्थित छ ।"
+msgid "Error processing directory %s"
+msgstr "डाइरेक्ट्री %s प्रक्रिया गर्दा त्रुटि"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "स्रोत विस्तार सूचि अति लामो छ"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "à¤\95मà¥\8dतिमा à¤\8fà¤\89à¤\9fा à¤\85वà¥\88ध हसà¥\8dताà¤\95à¥\8dषर विरà¥\8bध à¤à¤¯à¥\8b ।"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "सामाà¤\97à¥\8dरà¥\80 फाà¤\87लहरà¥\81मा हà¥\87डर लà¥\87à¤\96à¥\8dदा तà¥\8dरà¥\81à¤\9fि"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gnupg स्थापना भयो?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n"
+msgid "Error processing contents %s"
+msgstr "सामग्री %sप्रक्रिया गर्दा त्रुटि"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr " %s स्थिर गर्न असफल"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "%s को लागि पाइप खोल्न सकिएन"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "%s प्रक्रियाबाट त्रुटि पढ्नुहोस् "
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "हेडरहरुको लागि पर्खिदैछ"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr " %u chars माथि एकल हेडर लाइन प्राप्त गर्नुहोस्"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "खराब हेडर लाइन"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो"
-
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"उपयोग: apt-ftparchive [विकल्पहरू] आदेश\n"
+"आदेशहरू: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive ले डेवियन संग्रहहरुको लागि अनुक्रमणिका फाइलहरू सिर्जना गर्दछ । यसले "
+"समर्थन गर्दछ\n"
+"dpkg-scanpackages र dpkg-scansources को लागि कार्यात्मक प्रतिस्थापनमा पुरै "
+"स्वचालितबाट सिर्जनाको धेरै शैलीहरू\n"
+" \n"
+"\n"
+"apt-ftparchive ले debs को ट्रीबाट प्याकेज फाइलहरू सिर्जना गर्दछ । प्याकेज\n"
+"फाइलहरुले प्रत्येक प्याकेजबाट सबै नियन्त्रण फाँटहरुको सामग्रीहरू साथ साथै MD5 hash र "
+"filesize समावेश गर्दछ ।\n"
+"एउटा अधिलेखन फाइल\n"
+"प्राथमिकता र सेक्सनको मान जोड गर्न समर्थित हुन्छ ।\n"
+"\n"
+"त्यस्तै गरी apt-ftparchive ले .dscs को ट्रीबाट स्रोत फाइलहरू सिर्जना गर्दछ ।\n"
+"स्रोत--अधिलेखन--विकल्प src अधीलेखन फाइल निर्दिष्ट गर्न प्रयोग गर्न सकिन्छ\n"
+"\n"
+"'packages' and 'sources' आदेश ट्रीको मूलमा चलाउन सकिन्छ ।\n"
+" विनारी मार्ग फेरी हुने खोजीको विन्दुमा आधारित हुन्छ र \n"
+"अधिलेखन फाइलले अधिलेखन झण्डाहरू समाविष्ट गर्दछ । यदि उपस्थित छ भने बाटो उपसर्ग\n"
+"फाइलनाम फाँटहरुमा थपिन्छ । उदाहरणको लागि \n"
+"डेवियन संग्रहबाट उपयोग:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ\n"
+" --md5 नियन्त्रण MD5 सिर्जना\n"
+" -s=? स्रोत अधिलेखन फाइल\n"
+" -q बन्द गर्नुहोस्\n"
+" -d=? वैकल्पिक क्यासिङ डेटाबेस चयन गर्नुहोस्\n"
+" --no-delink delinking डिबग मोड सक्षम गर्नुहोस्\n"
+" --सामग्रीहरू सामग्री फाइल सिर्जना नियन्त्रण गर्नुहोस्\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "कुनै चयनहरू मेल खाएन"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "अज्ञात मिति ढाँचा"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "केही फाइलहरू प्याकेज फाइल समूह `%s' मा हराइरहेको छ"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "असफल चयन गर्नुहोस्"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB दूषित थियो, फाइल %s.पुरानो मा पुन:नामकरण गर्नुहोस्"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "जडान समय सकियो"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB पुरानो छ, %s स्तरवृद्धि गर्न प्रयास गरिदैछ"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "फाइलमा त्रुटि लेखिदैछ"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "DB फाइल %s असक्षम भयो: %s"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "फाइलमा त्रुटि लेखिदैछ"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr " %s स्थिर गर्न असफल"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "सरà¥\8dà¤à¤°à¤¬à¤¾à¤\9f तà¥\8dरà¥\81à¤\9fि पढिदà¥\88à¤\9b । दà¥\82र à¤\97नà¥\8dतबà¥\8dय बनà¥\8dद à¤\9cडान"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "सà¤\82à¤\97à¥\8dरह सà¤\82à¤\97 नियनà¥\8dतà¥\8dरण रà¥\87à¤\95रà¥\8dड à¤\9bà¥\88न"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "सरà¥\8dà¤à¤°à¤¬à¤¾à¤\9f तà¥\8dरà¥\81à¤\9fि पढिदà¥\88à¤\9b"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "à¤\95रà¥\8dसर पà¥\8dरापà¥\8dत à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "खराब हेडर डेटा"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: डाइरेक्ट्री %s पढ्न असक्षम\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "जडान असफल भयो"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: %s स्थिर गर्न असक्षम\n"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "आन्तरिक त्रुटि"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "एउटा खाली फाइल mmap बनाउन सकिएन"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/mmap.cc:85
-#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "%lu बाइटहरुको mmap बनाउन सकिएन"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: फाइलमा त्रुटिहरू लागू गर्नुहोस्"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Selection %s not found"
-msgstr "चयन %s फेला पार्न सकिएन"
+msgid "Failed to resolve %s"
+msgstr "%s हल गर्न असफल भयो"
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "ट्री हिडाईँ असफल भयो"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Opening configuration file %s"
-msgstr "कनफिगरेसन फाइल खोलिदैछ %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-#| msgid "Line %d too long (max %d)"
-msgid "Line %d too long (max %u)"
-msgstr "लाइन %d अति लामो छ (अधिक्तम %d)"
+msgid "Failed to open %s"
+msgstr "%s खोल्न असफल"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "वाà¤\95à¥\8dय सà¤\82रà¤\9aना तà¥\8dरà¥\81à¤\9fि %s:%u: वà¥\88रà¥\81प à¤\97रिà¤\8fà¤\95à¥\8b à¤\9fà¥\8dयाà¤\97"
+msgid "Failed to readlink %s"
+msgstr "लिà¤\99à¥\8dà¤\95 पढà¥\8dन à¤\85सफल %s"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "वाà¤\95à¥\8dय सà¤\82रà¤\9aना तà¥\8dरà¥\81à¤\9fि %s:%u: मान पà¤\9bाडि à¤\85तिरिà¤\95à¥\8dत à¤\9cà¤\82à¤\95"
+msgid "Failed to unlink %s"
+msgstr "à¤\85नलिà¤\99à¥\8dà¤\95 à¤\97रà¥\8dन à¤\85सफल %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ"
+msgid "*** Failed to link %s to %s"
+msgstr "*** %s मा %s लिङ्क असफल भयो"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "वाà¤\95à¥\8dय सà¤\82रà¤\9aना तà¥\8dरà¥\81à¤\9fि %s:%u: à¤\85ति धà¥\87रà¥\88 नà¥\87सà¥\8dà¤\9fà¥\87ड समावà¥\87श à¤\97रà¥\8dदà¤\9b"
+msgid " DeLink limit of %sB hit.\n"
+msgstr "यस %sB हिà¤\9fà¤\95à¥\8b डि लिà¤\99à¥\8dà¤\95 सिमा।\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "संग्रह संग कुनै प्याकेज फाँट छैन"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'"
+msgid " %s has no override entry\n"
+msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s संभारकर्ता %s हो %s होइन\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "%s पढ्न असफल भयो"
-
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... त्रुटि!"
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... गरियो"
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "à¤\86दà¥\87श लाà¤\87न विà¤\95लà¥\8dप '%c' [%s बाà¤\9f] à¤\9cà¥\8dà¤\9eात à¤\9bà¥\88न ।"
+msgid "Internal error, could not locate member %s"
+msgstr "à¤\86नà¥\8dतरà¥\80à¤\95 तà¥\8dरà¥\81à¤\9fि, सदसà¥\8dय तà¥\8bà¤\95à¥\8dन सà¤\95à¥\8dदà¥\88न %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
-msgstr "आदेश लाइन विकल्प %s बुझिएन"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - स्मृति बाँडफाँड गर्न असफल भयो"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "आदेश लाइन विकल्प %s बूलियन छैन"
+msgid "Unable to open %s"
+msgstr "%s खोल्न असफल"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Option %s requires an argument."
-msgstr "विà¤\95लà¥\8dप %s लाà¤\88 à¤\8fà¤\89à¤\9fा तरà¥\8dà¤\95à¤\95à¥\8b à¤\86वशà¥\8dयà¤\95ता परà¥\8dदà¤\9b ।"
+msgid "Malformed override %s line %lu #1"
+msgstr "वà¥\88रà¥\81पà¥\8dय à¤\97रिà¤\8fà¤\95à¥\8b à¤\85धिलà¥\87à¤\96न %s रà¥\87à¤\96ा %lu #१"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "विà¤\95लà¥\8dप %s: à¤\95नफिà¤\97रà¥\87सन वसà¥\8dतà¥\81 विशिषà¥\8dà¤\9fिà¤\95रण सà¤\82à¤\97 à¤\8fà¤\89à¤\9fा =<val> हà¥\81नà¥\81परà¥\8dà¤\9b ।"
+msgid "Malformed override %s line %lu #2"
+msgstr "वà¥\88रà¥\81पà¥\8dय à¤\97रिà¤\8fà¤\95à¥\8b à¤\85धिलà¥\87à¤\96न %s रà¥\87à¤\96ा %lu #२"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "विà¤\95लà¥\8dप %s लाà¤\88 à¤\8fà¤\89à¤\9fा à¤\87नà¥\8dà¤\9fिà¤\9cर तरà¥\8dà¤\95à¤\95à¥\8b à¤\86वशà¥\8dयà¤\95 परà¥\8dदà¤\9b, '%s' हà¥\8bà¤\87न"
+msgid "Malformed override %s line %lu #3"
+msgstr "वà¥\88रà¥\81पà¥\8dय à¤\97रिà¤\8fà¤\95à¥\8b à¤\85धिलà¥\87à¤\96न %s रà¥\87à¤\96ा %lu #३"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option '%s' is too long"
-msgstr "विà¤\95लà¥\8dप '%s' à¤\85ति लामà¥\8b à¤\9b"
+msgid "Failed to read the override file %s"
+msgstr "à¤\85धिलà¥\87à¤\96न फाà¤\87ल पढà¥\8dन à¤\85सफल %s"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "à¤\85रà¥\8dथ %s बà¥\81à¤\9dिà¤\8fन, सतà¥\8dय वा à¤\9dà¥\82ठà¥\8b पà¥\8dरयास à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d ।"
+msgid "Unknown compression algorithm '%s'"
+msgstr "à¤\85à¤\9cà¥\8dà¤\9eात सà¤\99à¥\8dà¤\95à¥\81à¤\9aन à¤\85लà¥\8dà¤\97à¥\8bरिदà¥\8dम '%s'"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Invalid operation %s"
-msgstr "à¤\85वà¥\88ध सà¤\9eà¥\8dà¤\9aालन %s"
+msgid "Compressed output %s needs a compression set"
+msgstr "सà¤\99à¥\8dà¤\95à¥\81à¤\9aन à¤\97रिà¤\8fà¤\95à¥\8b निरà¥\8dà¤\97ात %s लाà¤\88 सà¤\99à¥\8dà¤\95à¥\81à¤\9aन सà¥\87à¤\9fà¤\95à¥\8b à¤\86वशà¥\8dयà¤\95à¥\8dता परà¥\8dदà¤\9b"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "%s मा परिवर्तन गर्न असक्षम"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "FILE* सिर्जना गर्न असफल"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "सिडà¥\80 रà¥\8bम सà¥\8dथिर à¤\97रà¥\8dन à¤\85सफल à¤à¤¯à¥\8b"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "à¤\95ाà¤\81à¤\9fा à¤\97रà¥\8dन à¤\85सफल"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "सङ्कुचन शाखा"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Could not open lock file %s"
-msgstr "तालà¥\8dà¤\9aा मारिà¤\8fà¤\95à¥\8b फाà¤\87ल à¤\96à¥\8bलà¥\8dन सà¤\95िà¤\8fन %s"
+msgid "Internal error, failed to create %s"
+msgstr "à¤\86नà¥\8dतरà¥\80à¤\95 तà¥\8dरà¥\81à¤\9fि, %s सिरà¥\8dà¤\9cना à¤\97रà¥\8dन à¤\85सफल"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "ताल्चा प्राप्त गर्न सकिएन %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "सङ्कुचनविहिन कर्ता"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "सहायक प्रक्रिया/फाइलमा IO असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "MD5 गणना गर्दा पढ्न असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:392
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "सहायà¤\95 पà¥\8dरà¤\95à¥\8dरिया %s à¤\85नपà¥\87à¤\95à¥\8dषित बनà¥\8dद à¤à¤¯à¥\8b"
+msgid "Problem unlinking %s"
+msgstr "समसà¥\8dया à¤\85नलिà¤\99à¥\8dà¤\95 à¤à¤\87रहà¥\87à¤\9b %s"
-#: apt-pkg/contrib/fileutl.cc:436
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open file %s"
-msgstr "फाइल %s खोल्न सकिएन"
+msgid "Failed to rename %s to %s"
+msgstr " %s मा %s पुन:नामकरण असफल भयो"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "लà¥\87à¤\96à¥\8dनà¥\81हà¥\8bसà¥\8d, à¤\85हिलà¥\87 समà¥\8dम %lu लà¥\87à¤\96à¥\8dन à¤\9b तर सà¤\95िदà¥\88न "
+msgid "Regex compilation error - %s"
+msgstr "सà¤\82à¤\95लन तà¥\8dरà¥\81à¤\9fि रिà¤\9cà¥\87à¤\95à¥\8dस à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d - %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "फाà¤\87ल बनà¥\8dद à¤\97रà¥\8dदा समसà¥\8dया"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\81लà¥\87 निरà¥\8dà¤à¤°à¤¤à¤¾à¤¹à¤°à¥\82 à¤à¥\87à¤\9fà¥\87ननà¥\8d:"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "फाइल अनलिङ्क गर्दा समस्या"
+#: cmdline/apt-get.cc:331
+#, c-format
+msgid "but %s is installed"
+msgstr "तर %s स्थापना भयो"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "फाइल गुप्तिकरण गर्दा समस्या"
+#: cmdline/apt-get.cc:333
+#, c-format
+msgid "but %s is to be installed"
+msgstr "तर %s स्थापना हुनुपर्यो"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "à¤\96ालà¥\80 पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "तर यà¥\8b सà¥\8dथापनायà¥\8bà¤\97à¥\8dय à¤\9bà¥\88न"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास फाà¤\87ल दà¥\82षित à¤à¤¯à¥\8b "
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "तर यà¥\8b à¤\85वासà¥\8dतविà¤\95 पà¥\8dयाà¤\95à¥\87à¤\9c हà¥\8bà¤\87न"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास फाà¤\87ल à¤\8fà¤\89à¤\9fा à¤\85मिलà¥\8dदà¥\8b सà¤\82सà¥\8dà¤\95रण हà¥\8b"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "तर यà¥\8b सà¥\8dथापना à¤à¤\8fन"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "तर यो स्थापना हुन गइरहेको छैन"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास विà¤à¤¿à¤¨à¥\8dन वासà¥\8dतà¥\81à¤\95लाà¤\95à¥\8b लाà¤\97ि निरà¥\8dमाण à¤à¤\8fà¤\95à¥\8b हà¥\8b"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr "वा"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "à¤\86धारित"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "निमà¥\8dन नयाà¤\81 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dथापना हà¥\81नà¥\87à¤\9bनà¥\8d:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "पà¥\81न:à¤\86धारित"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 हà¤\9fाà¤\87नà¥\87à¤\9bनà¥\8d:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "सà¥\81à¤\9dाव दिनà¥\8dà¤\9b"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 पà¤\9bाडि राà¤\96िनà¥\87à¤\9bनà¥\8d:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "सिफारिस à¤\97रà¥\8dदà¤\9b"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dतर वà¥\83दà¥\8dधि हà¥\81नà¥\87à¤\9bनà¥\8d:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "दà¥\8dवनà¥\8dदहरà¥\82"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dतरà¤\95म à¤\97रिनà¥\87à¤\9bनà¥\8d:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "बदलà¥\8dà¤\9b"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "निमà¥\8dन à¤à¤\87रहà¥\87à¤\95à¥\8b पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 परिवरà¥\8dतन हà¥\81नà¥\87à¤\9bà¥\88न:"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "वेकायमहरू"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (%s कारणले) "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
+"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n"
+"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "महत्वपूर्ण"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, "
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "आवश्यक"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu पुन: स्थापना गरियो, "
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "मानक"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu स्तर कम गरियो, "
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "वैकल्पिक"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "अतिरिक्त"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "निर्भरता ट्री निर्माण गरिदैछ"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "निर्भरताहरू सुधार गरिदैछ..."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "à¤\89मà¥\87दà¥\8dवार सà¤\82सà¥\8dà¤\95रणहरà¥\82"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr "à¤\85सफल à¤à¤¯à¥\8b ।"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "निर्भरता सिर्जना"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-#| msgid "Merging available information"
-msgid "Reading state information"
-msgstr "उपलब्ध सूचना गाँभिदैछ"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-#| msgid "Failed to open %s"
-msgid "Failed to open StateFile %s"
-msgstr "%s खोल्न असफल"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr "काम भयो"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-#| msgid "Failed to write file %s"
-msgid "Failed to write temporary StateFile %s"
-msgstr "फाइल %s लेख्न असफल भयो"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "यी सुधार गर्न तपाईँले `apt-get -f install' चलाउन पर्छ ।"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! "
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? "
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "%s खोलिदैछ"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन"
+
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम"
+
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।"
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "लाà¤\87न %u सà¥\8dरà¥\8bत सà¥\82à¤\9aि %s मा à¤\85ति लामà¥\8b à¤\9b ।"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "सà¤\82à¤\97à¥\8dरहहरà¥\81à¤\95à¥\8b %sB/%sB पà¥\8dरापà¥\8dत à¤\97रà¥\8dन à¤\86वशà¥\8dयà¤\95 ।\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %u सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (पà¥\8dरà¤\95ार)"
+msgid "Need to get %sB of archives.\n"
+msgstr "सà¤\82à¤\97à¥\8dरहहरà¥\81à¤\95à¥\8b %sB पà¥\8dरापà¥\8dत à¤\97रà¥\8dन à¤\86वशà¥\8dयà¤\95 ।\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन"
+msgid "Couldn't determine free space in %s"
+msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %u सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (बिà¤\95à¥\8dरता à¤\86à¤\87डà¥\80)"
+msgid "You don't have enough free space in %s."
+msgstr "तपाà¤\88à¤\81 सà¤\82à¤\97 %s मा परà¥\8dयापà¥\8dत à¤\96ालà¥\80 ठाà¤\8aà¤\81 à¤\9bà¥\88न ।"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "हो,मैले भने जस्तै गर्नुहोस्!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"दà¥\8dवनà¥\8dद/पà¥\81न-à¤\86धारित लà¥\82पà¤\95à¥\8b à¤\95ारणलà¥\87 à¤\97रà¥\8dदा सà¥\8dथापना à¤\9aलाà¤\89नà¤\95à¥\8b लाà¤\97ि à¤\85सà¥\8dथायà¥\80 रà¥\81पमा पà¥\8dयाà¤\95à¥\87à¤\9c %s "
-"हà¤\9fाà¤\89नà¥\81 परà¥\8dनà¥\87à¤\9b । यà¥\8b पà¥\8dराय नरामà¥\8dरà¥\8b हà¥\8b, तर यदि तपाà¤\88à¤\81 यà¥\8b साà¤\81à¤\9aà¥\8dà¤\9aà¥\88 à¤\97रà¥\8dन à¤\9aाहनà¥\81हà¥\81नà¥\8dà¤\9b à¤à¤¨à¥\87, APT::"
-"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।"
+"तपाà¤\88à¤\81लà¥\87 à¤\95à¥\87हà¥\80 सà¤\82à¤à¤µà¤¤: हानिà¤\95ारà¤\95 à¤\95ाम à¤\97रà¥\8dनà¥\81परà¥\8dà¤\9b ।\n"
+"निरनà¥\8dतरता दिन '%s' वाà¤\95à¥\8dयाà¤\82शमा à¤\9fाà¤\87प à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d \n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "परित्याग गर्नुहोस् ।"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।"
+msgid "Failed to fetch %s %s\n"
+msgstr "%s %s तान्न असफल भयो\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"तà¥\8dरà¥\81à¤\9fि, pkgProblemResolver:: समाधानलà¥\87 विà¤\9aà¥\8dà¤\9bà¥\87दन सिरà¥\8dà¤\9cना à¤\97रà¥\8dदà¤\9b, यà¥\8b à¤à¤\87रहà¥\87à¤\95à¥\8b पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\81à¤\95à¥\8b "
-"à¤\95ारणलà¥\87 à¤\97रà¥\8dदा हà¥\8b ।"
+"à¤\95à¥\87हà¥\80 सà¤\82à¤\97à¥\8dरहहरà¥\82 तानà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b,apt-get à¤\85दà¥\8dयावधिà¤\95 à¤\9aलिरहà¥\87à¤\9b वा हराà¤\87रहà¥\87à¤\95à¥\8b --fix-सà¤\82à¤\97à¥\88 पà¥\8dरयास "
+"à¤\97रà¥\8dनà¥\81हà¥\81नà¥\8dà¤\9b ?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "समसà¥\8dयाहरà¥\82 सà¥\81धारà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b, तपाà¤\88à¤\81लà¥\87 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\81 à¤à¤¾à¤\81à¤\9aà¥\8dनà¥\81à¤à¤¯à¥\8b ।"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "हराà¤\87रहà¥\87à¤\95à¥\8b --fix-र सà¥\8dवाप à¤à¤\87रहà¥\87à¤\95à¥\8b मà¥\87डिया हाल समरà¥\8dथित à¤à¤\87रहà¥\87à¤\95à¥\8b à¤\9bà¥\88न"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "स्थापना परित्याग गरिदैछ ।"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "विधि डà¥\8dराà¤\87à¤à¤° %s फà¥\87ला पारà¥\8dन सà¤\95िà¤\8fन ।"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c %s सà¥\8dथापना à¤à¤\8fन, तà¥\8dयसà¥\88लà¥\87 हà¤\9fà¥\87न\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "विधि %s सहà¥\80 रà¥\81पलà¥\87 सà¥\81रà¥\82 हà¥\81न सà¤\95à¥\87न"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c %s ...दà¥\8dवारा à¤\89पलबà¥\8dध à¤\97राà¤\87à¤\8fà¤\95à¥\8b à¤\85वासà¥\8dतविà¤\95 पà¥\8dयाà¤\95à¥\87à¤\9c हà¥\8b:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । "
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [स्थापना भयो]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "तपाईँले स्थापना गर्न स्पष्ट रुपमा एउटा चयन गर्नुहोस् ।"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन"
+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"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "à¤\89पयà¥\81à¤\95à¥\8dत पà¥\8dयाà¤\95िà¤\99à¥\8dà¤\97 पà¥\8dरणालà¥\80 पà¥\8dरà¤\95ार निरà¥\8dधारन à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "à¤\9cà¥\87 à¤à¤\8f पनि निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82लà¥\87 यसलाà¤\88 बदलà¥\8dà¤\9b:"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Unable to stat %s."
-msgstr "%s स्थिर गर्न असक्षम भयो ।"
+msgid "Package %s has no installation candidate"
+msgstr "प्याकेज %s संग कुनै स्थापना उमेद्वार छैन"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।"
+#: cmdline/apt-get.cc:1156
+#, c-format
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।"
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन"
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन"
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "पिन टाइप %s बुझ्न सकिएन "
+msgid "Selected version %s (%s) for %s\n"
+msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "पिनà¤\95à¥\8b लाà¤\97ि à¤\95à¥\81नà¥\88 पà¥\8dराथमिà¤\95ता (वा शà¥\82नà¥\8dय) निरà¥\8dदिषà¥\8dà¤\9f à¤\9bैन"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "à¤\85दà¥\8dयावधिà¤\95 à¤\86दà¥\87शलà¥\87 à¤\95à¥\81नà¥\88 तरà¥\8dà¤\95हरà¥\82 लिदैन"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "à¤\95à¥\8dयास सà¤\82à¤\97 à¤\8fà¤\89à¤\9fा नमिलà¥\8dदà¥\8b सà¤\82सà¥\8dà¤\95रण पà¥\8dरणालà¥\80 à¤\9b"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "सà¥\82à¤\9aि डाà¤\87रà¥\87à¤\95à¥\8dà¤\9fà¥\8dरà¥\80 तालà¥\8dà¤\9aा मारà¥\8dन à¤\85सफल"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ प्याकेज)"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो "
+"एउटा प्रयोग गरियो ।"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज १ प्रयोग गर्नुहोस्)"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज २ प्रयोग गर्नुहोस्)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण १)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: "
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो "
+
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ"
+
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "प्याकेज फेला पार्न सकिएन %s"
+
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज ३ प्रयोग गर्नुहोस्)"
+msgid "Couldn't find package %s"
+msgstr "प्याकेज फेला पार्न सकिएन %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण २)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "द्रष्टब्य, रिजेक्स '%s' को लागि %s चयन गरिदैछ\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-#| msgid "Error occurred while processing %s (NewFileVer1)"
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
+msgid "%s set to manually installed.\n"
+msgstr "तर %s स्थापना हुनुपर्यो"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "वाà¤\8a, APT लà¥\87 सà¤\95à¥\8dषम à¤\97रà¥\87à¤\95à¥\8b पà¥\8dयाà¤\95à¥\87à¤\9c नामहरà¥\81à¤\95à¥\8b नमà¥\8dबरलाà¤\88 तपाà¤\88à¤\81लà¥\87 à¤\89à¤\9bिनà¥\8dनà¥\81à¤à¤¯à¥\8b । "
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "तपाà¤\88à¤\81 यसलाà¤\88 सà¥\81धार à¤\97रà¥\8dन `apt-get -f install' à¤\9aलाà¤\89न à¤\9aाहनà¥\81हà¥\81नà¥\8dà¤\9b:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा "
+"समाधान निर्दिष्ट गर्नुहोस्) ।"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-#| msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n"
+" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि "
+"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n"
+" वितरण अहिले सम्म सिर्जना\n"
+" भएको छैन वा आवगमन विनानै सर्यो ।"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"तपाईँले एकल सञ्चालन मात्र अनुरोध गरे पछि\n"
+" यो प्याकेज साधरण तरिकाले नितान्त स्थापनायोग्य देखिदैन र त्यो प्याकेज विरुद्धको\n"
+" बग प्रतिवेदन भरिनेछ ।"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "भाँचिएका प्याकेजहरू"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (संकलन फाइलले उपलब्ध गर्दछ)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "सुझाव दिएका प्याकेजहरू:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन "
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "सिफारिस गरिएका प्याकेजहरू:"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "प्याकेज सूचिहरू पढिदैछ"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "स्तर वृद्धि गणना गरिदैछ..."
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "फाà¤\87ल à¤\89पलबà¥\8dधताहरà¥\82 सà¤\82à¤\95लन à¤\97रिदà¥\88à¤\9b"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "à¤\85सफल à¤à¤¯à¥\8b"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr " %s मा लेख्न असक्षम"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "काम भयो"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "सà¥\8dरà¥\8bत à¤\95à¥\8dयास बà¤\9aत à¤\97रà¥\8dदा IO तà¥\8dरà¥\81à¤\9fि"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "à¤\86नà¥\8dतरिà¤\95 तà¥\8dरà¥\81à¤\9fि,समसà¥\8dया हलà¤\95रà¥\8dतालà¥\87 à¤\89तà¥\8dतम à¤\97à¥\81ण à¤à¤¾à¤\81à¤\9aà¥\8dयà¥\8b "
-#: apt-pkg/acquire-item.cc:127
-#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum मेल भएन"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-#| msgid "MD5Sum mismatch"
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum मेल भएन"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज "
-"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) "
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज "
-"निश्चित गर्नुहोस् ।"
+msgid "Need to get %sB of source archives.\n"
+msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।"
+msgid "Fetch source %s\n"
+msgstr "स्रोत फड्काउनुहोस् %s\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "साà¤\87à¤\9c मà¥\87ल à¤\96ाà¤\8fन"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "à¤\95à¥\87हà¥\80 सà¤\82à¤\97à¥\8dरह फडà¥\8dà¤\95ाà¤\89न à¤\85सफल à¤à¤¯à¥\8b ।"
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n"
-"सिडी रोम माउन्ट गरिदैछ\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "परिचय गराइदैछ.."
+msgid "Unpack command '%s' failed.\n"
+msgstr "अनप्याक आदेश '%s' असफल भयो ।\n"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
-msgstr "लà¥\87बà¥\81ल à¤à¤£à¥\8dडारण à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d:%s \n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "à¤\9cाà¤\81à¤\9aà¥\8dनà¥\81हà¥\8bसà¥\8d यदि 'dpkg-dev' पà¥\8dयाà¤\95à¥\87à¤\9c सà¥\8dथापना à¤à¤¯à¥\8b ।\n"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "सिडà¥\80 रà¥\8bम माà¤\89नà¥\8dà¤\9f विनà¥\8dदà¥\81 पà¥\8dरयà¥\8bà¤\97 à¤\97रिदà¥\88à¤\9b %s\n"
+msgid "Build command '%s' failed.\n"
+msgstr "निरà¥\8dमाण à¤\86दà¥\87श '%s' à¤\85सफल à¤à¤¯à¥\8b ।\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "सिडà¥\80 रà¥\8bम à¤\85नमाà¤\89नà¥\8dà¤\9f à¤\97रिदà¥\88à¤\9b\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "शाà¤\96ा पà¥\8dरà¤\95à¥\8dरिया à¤\85सफल à¤à¤¯à¥\8b"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "डिसà¥\8dà¤\95à¥\8b लाà¤\97ि परà¥\8dà¤\96िदà¥\88...\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "à¤\95à¥\8b लाà¤\97ि builddeps à¤\9cाà¤\81à¤\9aà¥\8dन à¤\95मà¥\8dतिमा à¤\8fà¤\89à¤\9fा पà¥\8dयाà¤\95à¥\87à¤\9c निरà¥\8dदषà¥\8dà¤\9f à¤\97रà¥\8dनà¥\81परà¥\8dà¤\9b"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "सिडी रोम माउन्ट गरिदै...\n"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n"
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid "Found %i package indexes, %i source indexes and %i signatures\n"
+#: cmdline/apt-get.cc:2442
+#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-#| msgid "Stored label: %s\n"
-msgid "Found label '%s'\n"
-msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"यो डिस्कको नाम:\n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "नयाँ स्रोत सूचि लेखिदैछ\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-#| msgid "Unmounting CD-ROM..."
-msgid "Unmounting CD-ROM...\n"
-msgstr "सिडी रोम अनमाउन्ट गरिदैछ..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i रेकर्डहरू लेखियो ।\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
+"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण "
+"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन "
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-#| msgid "Lists directory %spartial is missing."
-msgid "Directory '%s' missing"
-msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Preparing %s"
-msgstr " %s तयार गरिदैछ"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । "
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr " %s अनप्याक गरिदैछ"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr " %s कनफिगर गर्न तयार गरिदैछ"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "समर्थित मोड्युलहरू:"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr " %s कनफिगर गरिदैछ"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"उपयोग: apt-get [विकल्पहरू] आदेश\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n"
+"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n"
+"\n"
+"\n"
+"आदेशहरू:\n"
+" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n"
+" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n"
+" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n"
+" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n"
+" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n"
+" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n"
+" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n"
+" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n"
+" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n"
+" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n"
+" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ.\n"
+" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n"
+" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n"
+" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n"
+" -s No-act. Perform ordering simulation\n"
+" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n"
+" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n"
+" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n"
+" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n"
+" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n"
+" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
+"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n"
+"pages हेर्नुहोस् ।\n"
+" APT संग सुपर काउ शक्तिहरू छ ।\n"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "डाइरेक्ट्री %s प्रक्रिया गर्दा त्रुटि"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "हान्नुहोस्"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr " %s स्थापना भयो"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "प्राप्त गर्नुहोस्:"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr " %s हटाउन तयार गरिदैछ"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr " %s हटाइदैछ"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Removed %s"
-msgstr " %s हट्यो"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%s (%sB/s) मा %sB मा तानियो\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ"
+msgid " [Working]"
+msgstr " [काम गरिरहेको]"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Completely removed %s"
-msgstr " %s पूर्ण रुपले हट्यो"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+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"
-#: methods/rred.cc:219
-#, fuzzy
-#| msgid "Could not open file %s"
-msgid "Could not patch file"
-msgstr "फाइल %s खोल्न सकिएन"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "अज्ञात प्याकेज रेकर्ड!"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "जडान असमायिक बन्द भयो"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"उपयोग: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs प्याकेज फाइलहरू क्रमबद्ध गर्ने साधारण उपकरण हो । -s विकल्प कस्तो खालको "
+"फाइल हो भनी इंकित गर्न प्रयोग गरिन्छ ।\n"
+"\n"
+"विकल्पहरू:\n"
+" -h यो मद्दत पाठ\n"
+" -s क्रमबद्ध स्रोत फाइल प्रयोग गर्नुहोस्\n"
+" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
+" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।"
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना "
+"गर्नुहोस्"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "उपलब्ध सूचना गाँभिदैछ"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "घुम्ती बाटो अति लामो छ"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr " %s मा %s पुन:नामकरण असफल भयो"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s पढ्न असफल भयो"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "सूचना र टेम्प डाइरेक्ट्रीहरू एउटै फाइल प्रणालीमा हुनपर्छ"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "प्याकेज सूचिहरू पढिदैछ"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
#: apt-inst/deb/debfile.cc:50
#, fuzzy, c-format
-#| msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "यो वैध DEB संग्रह होइन, यो संग '%s' वा '%s' सदस्य छैन"
msgid "Unparsable control file"
msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c %s तà¥\8bà¤\95à¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
+msgid "Unable to read the cdrom database %s"
+msgstr "सिडà¥\80 रà¥\8bम डà¥\87à¤\9fाबà¥\87स पढà¥\8dन à¤\85सà¤\95à¥\8dषम %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "कूल प्याकेज नामहरू :"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get "
+"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " सामान्य प्याकेजहरू:"
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "गलत सिडी रोम"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr "शुद्ध अवास्तविक प्याकेजहरू:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " एकल अवास्तविक प्याकेजहरू:"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "डिस्क फेला परेन ।"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " मिश्रित अवास्तविक प्याकेजहरू:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "फाइल फेला परेन "
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " हराइरहेको:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "स्थिर गर्न असफल भयो"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "à¤\95à¥\82ल à¤à¤¿à¤¨à¥\8dन सà¤\82सà¥\8dà¤\95रणहरà¥\82:"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "परिमारà¥\8dà¤\9cन समय सà¥\87à¤\9f à¤\85सफल à¤à¤¯à¥\8b"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-#| msgid "Total distinct versions: "
-msgid "Total Distinct Descriptions: "
-msgstr "कूल भिन्न संस्करणहरू:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "कूल निर्भरताहरू:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "लगइन भइरहेछ"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "à¤\9cमà¥\8dमा ver/file समà¥\8dबनà¥\8dधहरà¥\82: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "समान नाम निरà¥\8dधारण à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-#| msgid "Total ver/file relations: "
-msgid "Total Desc/File relations: "
-msgstr "जम्मा ver/file सम्बन्धहरू: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "कूल उपलब्ध मानचित्रणहरू:"
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "पास असफल भयो, सर्भरले भन्यो: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "कूल शिथिल खाली ठाऊँ:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin "
+"खाली छ ।"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "को लागि कूल खाली ठाऊँ लेखांकन:"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c फाà¤\87ल %s sync à¤à¤¨à¥\8dदा बाहिर à¤\9b ।"
+msgid "TYPE failed, server said: %s"
+msgstr "à¤\9fाà¤\87प à¤\85सफल à¤à¤¯à¥\8b: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "तपाà¤\88à¤\81लà¥\87 à¤\8fà¤\89à¤\9fा वासà¥\8dतविà¤\95 बानà¥\8dà¤\95à¥\80 दिनà¥\81परà¥\8dà¤\9b"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "à¤\9cडान समय सà¤\95ियà¥\8b"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "à¤\95à¥\81नà¥\88 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 फà¥\87ला परà¥\87न"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "सरà¥\8dà¤à¤°à¤²à¥\87 à¤\9cडान बनà¥\8dद à¤\97रà¥\8dयà¥\8b"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c फाà¤\87लहरà¥\82:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "तà¥\8dरà¥\81à¤\9fि पढà¥\8dनà¥\81हà¥\8bसà¥\8d"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "à¤\95à¥\8dयास sync à¤à¤¨à¥\8dदा बाहिर à¤\9b, पà¥\8dयाà¤\95à¥\87à¤\9c फाà¤\87ल x-ref à¤\97रà¥\8dन सà¤\95à¥\8dदà¥\88न"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "à¤\8fà¤\89à¤\9fा पà¥\8dरतिà¤\95à¥\8dरियालà¥\87 बफर à¤\85धिपà¥\8dरवाह à¤\97रà¥\8dयà¥\8b"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "प्रोटोकल दूषित"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "पिन गरिएका प्याकेजहरू:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "त्रुटि लेख्नुहोस्"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(फेला परेन)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "एउटा सकेट सिर्जना गर्न सकेन"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " स्थापना भयो:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(कुनै पनि होइन)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "निस्क्रिय सकेट जडान गर्न सकिएन"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " उमेद्वार:"
-
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr "प्याकेज पिन:"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " संस्करण तालिका:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "सकेट बाँध्न सकिएन"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "सकेटमा सुन्न सकिएन"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-#| msgid "%s %s for %s %s compiled on %s %s\n"
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "सकेट नाम निर्धारण गर्न सकिएन"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"उपयोग: apt-cache [विकल्पहरू] आदेश\n"
-" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n"
-" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n"
-" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n"
-"\n"
-"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache "
-"कम-स्तरको उपकरण हो\n"
-"\n"
-"\n"
-"आदेशहरू:\n"
-" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n"
-" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n"
-" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n"
-" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n"
-" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n"
-" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n"
-" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n"
-" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n"
-" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n"
-" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n"
-" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n"
-" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n"
-" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n"
-" dotty - GraphVis को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n"
-" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n"
-" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ ।\n"
-" -p=? प्याकेज क्यास ।\n"
-" -s=? स्रोत क्यास ।\n"
-" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n"
-" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "पोर्ट आदेश पठाउन असक्षम भयो"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "अज्ञात ठेगाना परिवार %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "तपाà¤\88à¤\81à¤\95à¥\8b सà¥\87à¤\9fमा बाà¤\81à¤\95à¥\80 सि डि हरà¥\81à¤\95à¥\8b लाà¤\97ि यà¥\8b पà¥\8dरà¤\95à¥\8dरिया फà¥\87रà¥\80 à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d । "
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "डà¥\87à¤\9fा सà¤\95à¥\87à¤\9fà¤\95à¥\8b à¤\9cडान समय सà¤\95ियà¥\8b"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "तरà¥\8dà¤\95हरà¥\82 à¤\9cà¥\8bडामा à¤\9bà¥\88न"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "à¤\9cडान सà¥\8dवà¥\80à¤\95ार à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"उपयग: apt-config [विकल्पहरू] आदेश\n"
-"\n"
-" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n"
-"\n"
-"आदेशहरू:\n"
-" शेल - शेल मोड\n"
-" dump - कनफिगरेसन देखाउनुहोस्\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ ।\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "समस्या द्रुतान्वेषण फाइल"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s वैध DEB प्याकेज होइन"
-
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"उपयोग: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-" apt-extracttemplates डवियन प्याकेजहरुबाट कनफिगरेसन र टेम्प्लेट सूचना झिक्ने उपकरण हो\n"
-"\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ\n"
-" -t टेम्प्लेट डाइरेक्ट्री सेट गर्नुहोस्\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr " debconf संस्करण प्राप्त गर्न सकिएन । के debconf स्थापना भयो ? "
+msgid "Unable to fetch file, server said '%s'"
+msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c विसà¥\8dतार सà¥\82à¤\9aि à¤\85ति लामà¥\8b à¤\9b"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "डà¥\87à¤\9fा सà¤\95à¥\87à¤\9f समय सà¤\95ियà¥\8b"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing directory %s"
-msgstr "डाà¤\87रà¥\87à¤\95à¥\8dà¤\9fà¥\8dरà¥\80 %s पà¥\8dरà¤\95à¥\8dरिया à¤\97रà¥\8dदा तà¥\8dरà¥\81à¤\9fि"
+msgid "Data transfer failed, server said '%s'"
+msgstr "डà¥\87à¤\9fा सà¥\8dथानà¥\8dतरण à¤\85सफल à¤à¤¯à¥\8b, सरà¥\8dà¤à¤°à¤²à¥\87 à¤à¤¨à¥\8dयà¥\8b '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "स्रोत विस्तार सूचि अति लामो छ"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "क्वेरी"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "सामाà¤\97à¥\8dरà¥\80 फाà¤\87लहरà¥\81मा हà¥\87डर लà¥\87à¤\96à¥\8dदा तà¥\8dरà¥\81à¤\9fि"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "à¤\86हà¥\8dवान à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing contents %s"
-msgstr "सामग्री %sप्रक्रिया गर्दा त्रुटि"
+msgid "Connecting to %s (%s)"
+msgstr "%s (%s) मा जडान गरिदैछ"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"उपयोग: apt-ftparchive [विकल्पहरू] आदेश\n"
-"आदेशहरू: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive ले डेवियन संग्रहहरुको लागि अनुक्रमणिका फाइलहरू सिर्जना गर्दछ । यसले "
-"समर्थन गर्दछ\n"
-"dpkg-scanpackages र dpkg-scansources को लागि कार्यात्मक प्रतिस्थापनमा पुरै "
-"स्वचालितबाट सिर्जनाको धेरै शैलीहरू\n"
-" \n"
-"\n"
-"apt-ftparchive ले debs को ट्रीबाट प्याकेज फाइलहरू सिर्जना गर्दछ । प्याकेज\n"
-"फाइलहरुले प्रत्येक प्याकेजबाट सबै नियन्त्रण फाँटहरुको सामग्रीहरू साथ साथै MD5 hash र "
-"filesize समावेश गर्दछ ।\n"
-"एउटा अधिलेखन फाइल\n"
-"प्राथमिकता र सेक्सनको मान जोड गर्न समर्थित हुन्छ ।\n"
-"\n"
-"त्यस्तै गरी apt-ftparchive ले .dscs को ट्रीबाट स्रोत फाइलहरू सिर्जना गर्दछ ।\n"
-"स्रोत--अधिलेखन--विकल्प src अधीलेखन फाइल निर्दिष्ट गर्न प्रयोग गर्न सकिन्छ\n"
-"\n"
-"'packages' and 'sources' आदेश ट्रीको मूलमा चलाउन सकिन्छ ।\n"
-" विनारी मार्ग फेरी हुने खोजीको विन्दुमा आधारित हुन्छ र \n"
-"अधिलेखन फाइलले अधिलेखन झण्डाहरू समाविष्ट गर्दछ । यदि उपस्थित छ भने बाटो उपसर्ग\n"
-"फाइलनाम फाँटहरुमा थपिन्छ । उदाहरणको लागि \n"
-"डेवियन संग्रहबाट उपयोग:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ\n"
-" --md5 नियन्त्रण MD5 सिर्जना\n"
-" -s=? स्रोत अधिलेखन फाइल\n"
-" -q बन्द गर्नुहोस्\n"
-" -d=? वैकल्पिक क्यासिङ डेटाबेस चयन गर्नुहोस्\n"
-" --no-delink delinking डिबग मोड सक्षम गर्नुहोस्\n"
-" --सामग्रीहरू सामग्री फाइल सिर्जना नियन्त्रण गर्नुहोस्\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "कुनै चयनहरू मेल खाएन"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:86
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "केही फाइलहरू प्याकेज फाइल समूह `%s' मा हराइरहेको छ"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:93
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB दूषित थियो, फाइल %s.पुरानो मा पुन:नामकरण गर्नुहोस्"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:108
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB पुरानो छ, %s स्तरवृद्धि गर्न प्रयास गरिदैछ"
+msgid "Could not connect to %s:%s (%s)."
+msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "%s मा जडान गरिदैछ"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:167
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "DB फाइल %s असक्षम भयो: %s"
+msgid "Could not resolve '%s'"
+msgstr "'%s' हल गर्न सकिएन"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "संग्रह संग नियन्त्रण रेकर्ड छैन"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "'%s' हल गर्दा अस्थायी असफल"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "कर्सर प्राप्त गर्न असक्षम भयो"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:223
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: डाइरेक्ट्री %s पढ्न असक्षम\n"
+msgid "Unable to connect to %s %s:"
+msgstr "%s %s मा जडान गर्न असफल भयो:"
-#: ftparchive/writer.cc:81
+#: methods/gpgv.cc:65
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: %s स्थिर गर्न असक्षम\n"
+msgid "Couldn't access keyring: '%s'"
+msgstr "कुञ्जी घण्टी पहुँच गर्न सकिएन: '%s'"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: प्राप्त गर्नेबाट तर्क सूचि::gpgv::अति लामो विकल्पहरू अवस्थित छ ।"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: फाइलमा त्रुटिहरू लागू गर्नुहोस्"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "%s हल गर्न असफल भयो"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gnupg स्थापना भयो?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "ट्री हिडाईँ असफल भयो"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "%s à¤\96à¥\8bलà¥\8dन à¤\85सफल"
+msgid "Couldn't open pipe for %s"
+msgstr "%s à¤\95à¥\8b लाà¤\97ि पाà¤\87प à¤\96à¥\8bलà¥\8dन सà¤\95िà¤\8fन"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "%s प्रक्रियाबाट त्रुटि पढ्नुहोस् "
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "हेडरहरुको लागि पर्खिदैछ"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "लिङ्क पढ्न असफल %s"
+msgid "Got a single header line over %u chars"
+msgstr " %u chars माथि एकल हेडर लाइन प्राप्त गर्नुहोस्"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "खराब हेडर लाइन"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "अज्ञात मिति ढाँचा"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "असफल चयन गर्नुहोस्"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "जडान समय सकियो"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "फाइलमा त्रुटि लेखिदैछ"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "फाइलमा त्रुटि लेखिदैछ"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "सर्भरबाट त्रुटि पढिदैछ"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "खराब हेडर डेटा"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "जडान असफल भयो"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "आन्तरिक त्रुटि"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "एउटा खाली फाइल mmap बनाउन सकिएन"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "अनलिङ्क गर्न असफल %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "%lu बाइटहरुको mmap बनाउन सकिएन"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** %s मा %s लिङ्क असफल भयो"
+msgid "Selection %s not found"
+msgstr "चयन %s फेला पार्न सकिएन"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr "यस %sB हिà¤\9fà¤\95à¥\8b डि लिà¤\99à¥\8dà¤\95 सिमा।\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "नà¤\9aिनिà¤\8fà¤\95à¥\8b à¤\9fाà¤\87प सà¤\82à¤\95à¥\8dषिपà¥\8dत रà¥\81प: '%c'"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "संग्रह संग कुनै प्याकेज फाँट छैन"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "कनफिगरेसन फाइल खोलिदैछ %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "लाइन %d अति लामो छ (अधिक्तम %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s संभारकर्ता %s हो %s होइन\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग"
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक"
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n"
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "à¤\86नà¥\8dतरà¥\80à¤\95 तà¥\8dरà¥\81à¤\9fि, सदसà¥\8dय तà¥\8bà¤\95à¥\8dन सà¤\95à¥\8dदà¥\88न %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "वाà¤\95à¥\8dय सà¤\82रà¤\9aना तà¥\8dरà¥\81à¤\9fि %s:%u: à¤\85ति धà¥\87रà¥\88 नà¥\87सà¥\8dà¤\9fà¥\87ड समावà¥\87श à¤\97रà¥\8dदà¤\9b"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - स्मृति बाँडफाँड गर्न असफल भयो"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "%s खोल्न असफल"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "वà¥\88रà¥\81पà¥\8dय à¤\97रिà¤\8fà¤\95à¥\8b à¤\85धिलà¥\87à¤\96न %s रà¥\87à¤\96ा %lu #१"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "वाà¤\95à¥\8dय सà¤\82रà¤\9aना तà¥\8dरà¥\81à¤\9fि %s:%u:फाà¤\87लà¤\95à¥\8b à¤\85नà¥\8dतà¥\8dयमा à¤\85तिरिà¤\95à¥\8dत à¤\9cà¤\82à¤\95"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "वैरुप्य गरिएको अधिलेखन %s रेखा %lu #२"
+msgid "%c%s... Error!"
+msgstr "%c%s... त्रुटि!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "वैरुप्य गरिएको अधिलेखन %s रेखा %lu #३"
+msgid "%c%s... Done"
+msgstr "%c%s... गरियो"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "à¤\85धिलà¥\87à¤\96न फाà¤\87ल पढà¥\8dन à¤\85सफल %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "à¤\86दà¥\87श लाà¤\87न विà¤\95लà¥\8dप '%c' [%s बाà¤\9f] à¤\9cà¥\8dà¤\9eात à¤\9bà¥\88न ।"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "à¤\85à¤\9cà¥\8dà¤\9eात सà¤\99à¥\8dà¤\95à¥\81à¤\9aन à¤\85लà¥\8dà¤\97à¥\8bरिदà¥\8dम '%s'"
+msgid "Command line option %s is not understood"
+msgstr "à¤\86दà¥\87श लाà¤\87न विà¤\95लà¥\8dप %s बà¥\81à¤\9dिà¤\8fन"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "सà¤\99à¥\8dà¤\95à¥\81à¤\9aन à¤\97रिà¤\8fà¤\95à¥\8b निरà¥\8dà¤\97ात %s लाà¤\88 सà¤\99à¥\8dà¤\95à¥\81à¤\9aन सà¥\87à¤\9fà¤\95à¥\8b à¤\86वशà¥\8dयà¤\95à¥\8dता परà¥\8dदà¤\9b"
+msgid "Command line option %s is not boolean"
+msgstr "à¤\86दà¥\87श लाà¤\87न विà¤\95लà¥\8dप %s बà¥\82लियन à¤\9bà¥\88न"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "FILE* सिर्जना गर्न असफल"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "विकल्प %s लाई एउटा तर्कको आवश्यकता पर्दछ ।"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "काँटा गर्न असफल"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "विकल्प %s: कनफिगरेसन वस्तु विशिष्टिकरण संग एउटा =<val> हुनुपर्छ ।"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "सङ्कुचन शाखा"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "विकल्प %s लाई एउटा इन्टिजर तर्कको आवश्यक पर्दछ, '%s' होइन"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "à¤\86नà¥\8dतरà¥\80à¤\95 तà¥\8dरà¥\81à¤\9fि, %s सिरà¥\8dà¤\9cना à¤\97रà¥\8dन à¤\85सफल"
+msgid "Option '%s' is too long"
+msgstr "विà¤\95लà¥\8dप '%s' à¤\85ति लामà¥\8b à¤\9b"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "अर्थ %s बुझिएन, सत्य वा झूठो प्रयास गर्नुहोस् ।"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "अवैध सञ्चालन %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "सङ्कुचनविहिन कर्ता"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "सहायक प्रक्रिया/फाइलमा IO असफल भयो"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "%s मा परिवर्तन गर्न असक्षम"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "MD5 गणना गर्दा पढ्न असफल भयो"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "सिडी रोम स्थिर गर्न असफल भयो"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "समसà¥\8dया à¤\85नलिà¤\99à¥\8dà¤\95 à¤à¤\87रहà¥\87à¤\9b %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "तालà¥\8dà¤\9aा मारिà¤\8fà¤\95à¥\8b फाà¤\87ल मातà¥\8dर पढà¥\8dनà¤\95à¥\8b लाà¤\97ि तालà¥\8dà¤\9aा मारà¥\8dन पà¥\8dरयà¥\8bà¤\97 à¤\97रिà¤\8fà¤\95à¥\8b à¤\9bà¥\88न %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "ताल्चा प्राप्त गर्न सकिएन %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "तर %s स्थापना भयो"
+msgid "Waited for %s but it wasn't there"
+msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "तर %s सà¥\8dथापना हà¥\81नà¥\81परà¥\8dयà¥\8b"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "सहायà¤\95 पà¥\8dरà¤\95à¥\8dरिया %s लà¥\87 à¤\96णà¥\8dडिà¤\95रण à¤\97लà¥\8dति पà¥\8dरापà¥\8dत à¤à¤¯à¥\8b ।"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "तर यो स्थापनायोग्य छैन"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "तर यो अवास्तविक प्याकेज होइन"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "तर यो स्थापना भएन"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "फाइल %s खोल्न सकिएन"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "तर यो स्थापना हुन गइरहेको छैन"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr "वा"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन "
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "निमà¥\8dन नयाà¤\81 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dथापना हà¥\81नà¥\87à¤\9bनà¥\8d:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "फाà¤\87ल बनà¥\8dद à¤\97रà¥\8dदा समसà¥\8dया"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 हà¤\9fाà¤\87नà¥\87à¤\9bनà¥\8d:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "फाà¤\87ल à¤\85नलिà¤\99à¥\8dà¤\95 à¤\97रà¥\8dदा समसà¥\8dया"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 पà¤\9bाडि राà¤\96िनà¥\87à¤\9bनà¥\8d:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "फाà¤\87ल à¤\97à¥\81पà¥\8dतिà¤\95रण à¤\97रà¥\8dदा समसà¥\8dया"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dतर वà¥\83दà¥\8dधि हà¥\81नà¥\87à¤\9bनà¥\8d:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "à¤\96ालà¥\80 पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "निमà¥\8dन पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 सà¥\8dतरà¤\95म à¤\97रिनà¥\87à¤\9bनà¥\8d:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास फाà¤\87ल दà¥\82षित à¤à¤¯à¥\8b "
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "निमà¥\8dन à¤à¤\87रहà¥\87à¤\95à¥\8b पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 परिवरà¥\8dतन हà¥\81नà¥\87à¤\9bà¥\88न:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c à¤\95à¥\8dयास फाà¤\87ल à¤\8fà¤\89à¤\9fा à¤\85मिलà¥\8dदà¥\8b सà¤\82सà¥\8dà¤\95रण हà¥\8b"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (%s कारणले) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n"
-"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "आधारित"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu पुन: स्थापना गरियो, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "पुन:आधारित"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu स्तर कम गरियो, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "सुझाव दिन्छ"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "सिफारिस गर्दछ"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "द्वन्दहरू"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "निरà¥\8dà¤à¤°à¤¤à¤¾à¤¹à¤°à¥\82 सà¥\81धार à¤\97रिदà¥\88à¤\9b..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "बदलà¥\8dà¤\9b"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr "à¤\85सफल à¤à¤¯à¥\8b ।"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "वà¥\87à¤\95ायमहरà¥\82"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "सà¥\8dतर वà¥\83दà¥\8dधि सà¥\87à¤\9fलाà¤\88 नà¥\8dयà¥\82नतम à¤\97रà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "महतà¥\8dवपà¥\82रà¥\8dण"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr "à¤\95ाम à¤à¤¯à¥\8b"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "à¤\86वशà¥\8dयà¤\95"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "यी सुधार गर्न तपाईँले `apt-get -f install' चलाउन पर्छ ।"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "मानक"
+
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "वैकल्पिक"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "नà¤à¥\87à¤\9fिà¤\8fà¤\95ा निरà¥\8dà¤à¤°à¤¤à¤¾à¤¹à¤°à¥\82 । -f पà¥\8dरयà¥\8bà¤\97 à¤\97रà¥\87र पà¥\8dरयास à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d ।"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "à¤\85तिरिà¤\95à¥\8dत"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "à¤\9aà¥\87तावनà¥\80: निमà¥\8dन पà¥\8dयाà¤\95लà¥\87à¤\9cहरà¥\82 पà¥\8dरणाणà¥\80à¤\95रण हà¥\81न सà¤\95à¥\8dदà¥\88न! "
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "निरà¥\8dà¤à¤°à¤¤à¤¾ à¤\9fà¥\8dरà¥\80 निरà¥\8dमाण à¤\97रिदà¥\88à¤\9b"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "पà¥\8dरमाणिà¤\95रण à¤\9aà¥\87तावनà¥\80 à¤\85धिलà¥\87à¤\96न à¤à¤¯à¥\8b ।\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "à¤\89मà¥\87दà¥\8dवार सà¤\82सà¥\8dà¤\95रणहरà¥\82"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "यà¥\80 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\82 रà¥\82à¤\9cà¥\82 बिना सà¥\8dथापना à¤\97रà¥\8dनà¥\81हà¥\81नà¥\8dà¤\9b [y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "निरà¥\8dà¤à¤°à¤¤à¤¾ सिरà¥\8dà¤\9cना"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "उपलब्ध सूचना गाँभिदैछ"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s खोल्न असफल"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "फाइल %s लेख्न असफल भयो"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "सà¤\82à¤\97à¥\8dरहहरà¥\81à¤\95à¥\8b %sB/%sB पà¥\8dरापà¥\8dत à¤\97रà¥\8dन à¤\86वशà¥\8dयà¤\95 ।\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %lu सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (URI पद वरà¥\8dणन)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "सà¤\82à¤\97à¥\8dरहहरà¥\81à¤\95à¥\8b %sB पà¥\8dरापà¥\8dत à¤\97रà¥\8dन à¤\86वशà¥\8dयà¤\95 ।\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %lu सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (पà¥\82रà¥\8dण dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "à¤\85नपà¥\8dयाà¤\95 à¤\97रिसà¤\95à¥\87 पà¤\9bि थप डिसà¥\8dà¤\95 à¤\96ालà¥\80 ठाà¤\89à¤\81à¤\95à¥\8b %sB पà¥\8dरयà¥\8bà¤\97 हà¥\81नà¥\87à¤\9b ।\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %lu सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (dist पद वरà¥\8dणन )"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n"
+msgid "Opening %s"
+msgstr "%s खोलिदैछ"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन"
+msgid "Line %u too long in source list %s."
+msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "तपाà¤\88à¤\81 सà¤\82à¤\97 %s मा परà¥\8dयापà¥\8dत à¤\96ालà¥\80 ठाà¤\8aà¤\81 à¤\9bà¥\88न ।"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "वà¥\88रà¥\81पà¥\8dय लाà¤\87न %u सà¥\8dरà¥\8bत सà¥\82à¤\9aिमा %s (पà¥\8dरà¤\95ार)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "हो,मैले भने जस्तै गर्नुहोस्!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (बिक्रता आइडी)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"तपाईँले केही संभवत: हानिकारक काम गर्नुपर्छ ।\n"
-"निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "परित्याग गर्नुहोस् ।"
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? "
+"द्वन्द/पुन-आधारित लूपको कारणले गर्दा स्थापना चलाउनको लागि अस्थायी रुपमा प्याकेज %s "
+"हटाउनु पर्नेछ । यो प्राय नराम्रो हो, तर यदि तपाईँ यो साँच्चै गर्न चाहनुहुन्छ भने, APT::"
+"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "%s %s तान्न असफल भयो\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो"
+msgid "Index file type '%s' is not supported"
+msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"à¤\95à¥\87हà¥\80 सà¤\82à¤\97à¥\8dरहहरà¥\82 तानà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b,apt-get à¤\85दà¥\8dयावधिà¤\95 à¤\9aलिरहà¥\87à¤\9b वा हराà¤\87रहà¥\87à¤\95à¥\8b --fix-सà¤\82à¤\97à¥\88 पà¥\8dरयास "
-"à¤\97रà¥\8dनà¥\81हà¥\81नà¥\8dà¤\9b ?"
+"तà¥\8dरà¥\81à¤\9fि, pkgProblemResolver:: समाधानलà¥\87 विà¤\9aà¥\8dà¤\9bà¥\87दन सिरà¥\8dà¤\9cना à¤\97रà¥\8dदà¤\9b, यà¥\8b à¤à¤\87रहà¥\87à¤\95à¥\8b पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\81à¤\95à¥\8b "
+"à¤\95ारणलà¥\87 à¤\97रà¥\8dदा हà¥\8b ।"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "हराà¤\87रहà¥\87à¤\95à¥\8b --fix-र सà¥\8dवाप à¤à¤\87रहà¥\87à¤\95à¥\8b मà¥\87डिया हाल समरà¥\8dथित à¤à¤\87रहà¥\87à¤\95à¥\8b à¤\9bà¥\88न"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "समसà¥\8dयाहरà¥\82 सà¥\81धारà¥\8dन à¤\85सà¤\95à¥\8dषम à¤à¤¯à¥\8b, तपाà¤\88à¤\81लà¥\87 पà¥\8dयाà¤\95à¥\87à¤\9cहरà¥\81 à¤à¤¾à¤\81à¤\9aà¥\8dनà¥\81à¤à¤¯à¥\8b ।"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "स्थापना परित्याग गरिदैछ ।"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।"
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n"
+msgid "Retrieving file %li of %li"
+msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c %s सà¥\8dथापना à¤à¤\8fन, तà¥\8dयसà¥\88लà¥\87 हà¤\9fà¥\87न\n"
+msgid "The method driver %s could not be found."
+msgstr "विधि डà¥\8dराà¤\87à¤à¤° %s फà¥\87ला पारà¥\8dन सà¤\95िà¤\8fन ।"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "पà¥\8dयाà¤\95à¥\87à¤\9c %s ...दà¥\8dवारा à¤\89पलबà¥\8dध à¤\97राà¤\87à¤\8fà¤\95à¥\8b à¤\85वासà¥\8dतविà¤\95 पà¥\8dयाà¤\95à¥\87à¤\9c हà¥\8b:\n"
+msgid "Method %s did not start correctly"
+msgstr "विधि %s सहà¥\80 रà¥\81पलà¥\87 सà¥\81रà¥\82 हà¥\81न सà¤\95à¥\87न"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [स्थापना भयो]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । "
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "तपाईँले स्थापना गर्न स्पष्ट रुपमा एउटा चयन गर्नुहोस् ।"
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो"
+
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "%s स्थिर गर्न असक्षम भयो ।"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "जे भए पनि निम्न प्याकेजहरूले यसलाई बदल्छ:"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन"
+
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "प्याकेज %s संग कुनै स्थापना उमेद्वार छैन"
+msgid "Did not understand pin type %s"
+msgstr "पिन टाइप %s बुझ्न सकिएन "
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ प्याकेज)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज १ प्रयोग गर्नुहोस्)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr " %s à¤\95à¥\8b पà¥\81न: सà¥\8dथापना समà¥\8dà¤à¤µ à¤\9bà¥\88न, यà¥\8b डाà¤\89नलà¥\8bड हà¥\81न सà¤\95à¥\8dदà¥\88न ।\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr " %s पà¥\8dरà¤\95à¥\8dरिया à¤\97रà¥\8dदा तà¥\8dरà¥\81à¤\9fि दà¥\87à¤\96ा परà¥\8dयà¥\8b (पà¥\8dयाà¤\95à¥\87à¤\9c २ पà¥\8dरयà¥\8bà¤\97 à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण १)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज ३ प्रयोग गर्नुहोस्)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण २)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो "
-"एउटा प्रयोग गरियो ।"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-#| msgid "The following NEW packages will be installed:"
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । "
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: "
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (संकलन फाइलले उपलब्ध गर्दछ)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-#| msgid "Internal error, problem resolver broke stuff"
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो "
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन "
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-#| msgid "Couldn't find package %s"
-msgid "Couldn't find task %s"
-msgstr "प्याकेज फेला पार्न सकिएन %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "प्याकेज फेला पार्न सकिएन %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "दà¥\8dरषà¥\8dà¤\9fबà¥\8dय, रिà¤\9cà¥\87à¤\95à¥\8dस '%s' à¤\95à¥\8b लाà¤\97ि %s à¤\9aयन à¤\97रिदà¥\88à¤\9b\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "पà¥\81न:नामà¤\95रण à¤\85सफल à¤\97रियà¥\8b, %s (%s -> %s) ।"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-#| msgid "but %s is to be installed"
-msgid "%s set to manual installed.\n"
-msgstr "तर %s स्थापना हुनुपर्यो"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum मेल भएन"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "तपाईँ यसलाई सुधार गर्न `apt-get -f install' चलाउन चाहनुहुन्छ:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum मेल भएन"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा "
-"समाधान निर्दिष्ट गर्नुहोस्) ।"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n"
-" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि "
-"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n"
-" वितरण अहिले सम्म सिर्जना\n"
-" भएको छैन वा आवगमन विनानै सर्यो ।"
+"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज "
+"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) "
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"तपाईँले एकल सञ्चालन मात्र अनुरोध गरे पछि\n"
-" यो प्याकेज साधरण तरिकाले नितान्त स्थापनायोग्य देखिदैन र त्यो प्याकेज विरुद्धको\n"
-" बग प्रतिवेदन भरिनेछ ।"
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "भाँचिएका प्याकेजहरू"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "सुझाव दिएका प्याकेजहरू:"
+"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज "
+"निश्चित गर्नुहोस् ।"
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "सिफारिस गरिएका प्याकेजहरू:"
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "सà¥\8dतर वà¥\83दà¥\8dधि à¤\97णना à¤\97रिदà¥\88à¤\9b..."
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "साà¤\87à¤\9c मà¥\87ल à¤\96ाà¤\8fन"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "काम भयो"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो "
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n"
+"सिडी रोम माउन्ट गरिदैछ\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "à¤\95à¥\8b लाà¤\97ि सà¥\8dरà¥\8bत तानà¥\8dन à¤\95मà¥\8dतिमा à¤\8fà¤\89à¤\9fा पà¥\8dयाà¤\95à¥\87à¤\9c निरà¥\8dदिषà¥\8dà¤\9f à¤\97रà¥\8dनà¥\81परà¥\8dà¤\9b"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "परिà¤\9aय à¤\97राà¤\87दà¥\88à¤\9b.."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो"
+msgid "Stored label: %s\n"
+msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "पहिलà¥\8dयà¥\88 डाà¤\89नलà¥\8bड à¤à¤\8fà¤\95ा फाà¤\87लहरà¥\81 फडà¥\8dà¤\95ाà¤\87दà¥\88à¤\9b '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "सिडà¥\80 रà¥\8bम à¤\85नमाà¤\89नà¥\8dà¤\9f à¤\97रिदà¥\88à¤\9b..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "तपाà¤\88à¤\81 सà¤\82à¤\97 %s मा परà¥\8dयापà¥\8dत à¤\96ालà¥\80 ठाà¤\8aà¤\81 à¤\9bà¥\88न"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "सिडà¥\80 रà¥\8bम माà¤\89नà¥\8dà¤\9f विनà¥\8dदà¥\81 पà¥\8dरयà¥\8bà¤\97 à¤\97रिदà¥\88à¤\9b %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "सिडी रोम अनमाउन्ट गरिदैछ\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "डिस्को लागि पर्खिदै...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "सà¥\8dरà¥\8bत फडà¥\8dà¤\95ाà¤\89नà¥\81हà¥\8bसà¥\8d %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "सिडà¥\80 रà¥\8bम माà¤\89नà¥\8dà¤\9f à¤\97रिदà¥\88...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "à¤\95à¥\87हà¥\80 सà¤\82à¤\97à¥\8dरह फडà¥\8dà¤\95ाà¤\89न à¤\85सफल à¤à¤¯à¥\8b ।"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "à¤\85नà¥\81à¤\95à¥\8dरमणिà¤\95ा फाà¤\87लहरà¥\81à¤\95à¥\8b लाà¤\97ि डिसà¥\8dà¤\95 सà¥\8dà¤\95à¥\8dयान à¤\97रिदà¥\88à¤\9b...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "à¤\85नपà¥\8dयाà¤\95 à¤\86दà¥\87श '%s' à¤\85सफल à¤à¤¯à¥\8b ।\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "लà¥\87बà¥\81ल à¤à¤£à¥\8dडारण à¤\97रà¥\8dनà¥\81हà¥\8bसà¥\8d:%s \n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"यो डिस्कको नाम:\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "निर्माण आदेश '%s' असफल भयो ।\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "शाà¤\96ा पà¥\8dरà¤\95à¥\8dरिया à¤\85सफल à¤à¤¯à¥\8b"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "नयाà¤\81 सà¥\8dरà¥\8bत सà¥\82à¤\9aि लà¥\87à¤\96िदà¥\88à¤\9b\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "à¤\95à¥\8b लाà¤\97ि builddeps à¤\9cाà¤\81à¤\9aà¥\8dन à¤\95मà¥\8dतिमा à¤\8fà¤\89à¤\9fा पà¥\8dयाà¤\95à¥\87à¤\9c निरà¥\8dदषà¥\8dà¤\9f à¤\97रà¥\8dनà¥\81परà¥\8dà¤\9b"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "यà¥\8b डिसà¥\8dà¤\95à¤\95à¥\8b लाà¤\97ि सà¥\8dरà¥\8bत सà¥\82à¤\9aि पà¥\8dरविषà¥\8dà¤\9fिहरà¥\82:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो"
+msgid "Wrote %i records.\n"
+msgstr "%i रेकर्डहरू लेखियो ।\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण "
-"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन "
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s"
+msgid "Preparing %s"
+msgstr " %s तयार गरिदैछ"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । "
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "समर्थित मोड्युलहरू:"
+msgid "Unpacking %s"
+msgstr " %s अनप्याक गरिदैछ"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"उपयोग: apt-get [विकल्पहरू] आदेश\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n"
-"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n"
-"\n"
-"\n"
-"आदेशहरू:\n"
-" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n"
-" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n"
-" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n"
-" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n"
-" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n"
-" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n"
-" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n"
-" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n"
-" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n"
-" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n"
-" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ.\n"
-" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n"
-" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n"
-" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n"
-" -s No-act. Perform ordering simulation\n"
-" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n"
-" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n"
-" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n"
-" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n"
-" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n"
-" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n"
-"pages हेर्नुहोस् ।\n"
-" APT संग सुपर काउ शक्तिहरू छ ।\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr " %s कनफिगर गर्न तयार गरिदैछ"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "हान्नुहोस्"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr " %s कनफिगर गरिदैछ"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "प्राप्त गर्नुहोस्:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "डाइरेक्ट्री %s प्रक्रिया गर्दा त्रुटि"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr " %s स्थापना भयो"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr " %s हटाउन तयार गरिदैछ"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%s (%sB/s) मा %sB मा तानियो\n"
+msgid "Removing %s"
+msgstr " %s हटाइदैछ"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [काम गरिरहेको]"
+msgid "Removed %s"
+msgstr " %s हट्यो"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "अज्ञात प्याकेज रेकर्ड!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr " %s पूर्ण रुपले हट्यो"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"उपयोग: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs प्याकेज फाइलहरू क्रमबद्ध गर्ने साधारण उपकरण हो । -s विकल्प कस्तो खालको "
-"फाइल हो भनी इंकित गर्न प्रयोग गरिन्छ ।\n"
-"\n"
-"विकल्पहरू:\n"
-" -h यो मद्दत पाठ\n"
-" -s क्रमबद्ध स्रोत फाइल प्रयोग गर्नुहोस्\n"
-" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n"
-" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "फाइल %s खोल्न सकिएन"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "जडान असमायिक बन्द भयो"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "लाइन %d अति लामो छ (अधिक्तम %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना "
-"गर्नुहोस्"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "उपलब्ध सूचना गाँभिदैछ"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n"
+
+#, fuzzy
+#~ msgid "openpty failed\n"
+#~ msgstr "असफल चयन गर्नुहोस्"
#~ msgid "File date has changed %s"
#~ msgstr "फाइल डेटाले %s परिवर्तन गर्यो"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-17 22:35+0100\n"
"Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Kan de cd-rom databank %s niet lezen"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-"
-"get update' is niet in staat om nieuwe CDs toe te voegen"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Verkeerde CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"Kan de CD-ROM in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Schijf niet gevonden"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Bestand niet gevonden"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Status opvragen is mislukt"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Instellen van de aanpassingstijd is mislukt"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //"
+msgid "Unable to locate package %s"
+msgstr "Kan pakket %s niet vinden"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Bezig met aanmelden"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Totaal aantal pakketnamen: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Kan de 'peer'-naam niet bepalen"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normale pakketten: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Kan de lokale naam niet bepalen"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Zuiver virtuele pakketten: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Onze verbinding is door de server geweigerd met bericht: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Losstaande virtuele pakketten: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER mislukt; bericht van server: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Gemengde virtuele pakketten: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS mislukt; bericht van server: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Ontbrekend: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::"
-"ProxyLogin is leeg."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Totaal aantal verschillende versies: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Totaal aantal verschillende versies: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE mislukt; bericht van server: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Totaal aantal vereisten: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Verbinding is verlopen"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Totaal aantal versie/bestand-relaties: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Verbinding is verbroken door de server"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Totaal aantal versie/bestand-relaties: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Leesfout"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Totaal aantal 'Voorziet'-toewijzingen "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Een reactie deed de buffer overlopen"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Totaal aantal geglobde strings: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protocolcorruptie"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Totale hoeveelheid vereisten-versieruimte: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Schrijffout"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Totale onbenutte ruimte: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Kon geen socket aanmaken"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Totale hoeveelheid verantwoorde ruimte: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Kon de datasocket niet verbinden, de verbinding verliep"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Pakketbestand %s is niet meer gesynchroniseerd."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Mislukt"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "U dient precies één patroon op te geven"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Kon de passieve socket niet verbinden."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Geen pakketten gevonden"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo kon geen luistersocket verkrijgen"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pakketbestanden:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Kon geen socket binden"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Kon niet op de socket niet luisteren"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Kon de socketnaam niet bepalen"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Vastgepinde pakketten:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Kan PORT-commando niet verzenden"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(niet gevonden)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Onbekende adresfamilie %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Geïnstalleerd: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT is mislukt; bericht van server: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(geen)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Datasocket verbinding is verlopen"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidaat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Kan de verbinding niet aanvaarden"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pakketpin: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Probleem bij het hashen van het bestand"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versietabel:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Kan bestand niet ophalen; bericht van server: %s"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Datasocket verliep"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s voor %s %s gecompileerd op %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Data transfer is mislukt, server zei: %s"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Zoekopdracht"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Aanroepen mislukt van "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Er wordt verbinding gemaakt met %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Gebruik: apt-cache [opties] opdracht\n"
+" apt-cache [opties] add bestand1 [bestand2 ...]\n"
+" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n"
+" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n"
+"\n"
+"apt-cache is een laagniveau-hulpmiddel waarmee u de binaire\n"
+"cachebestanden van apt kunt manipuleren, en informatie\n"
+"daaruit kunt opvragen.\n"
+"Opdrachten:\n"
+" add - Voeg een pakketbestand toe aan de broncache\n"
+" gencaches - Bouw zowel het pakket- als de broncache\n"
+" showpkg - Toon algemene informatie over een enkel pakket\n"
+" showsrc - Toon bronrecords\n"
+" stats - Toon enkele basisstatistieken\n"
+" dump - Toon het gehele bestand in een compacte vorm\n"
+" dumpavail - Print een beschikbaarheidsbestand op stdout\n"
+" unmet - Toon niet voldane vereisten\n"
+" search - Toon lijst met pakketten die met regexpatroon overeenkomen\n"
+" show - Toon een leesbaar dossier voor het pakket\n"
+" depends - Toon de vereisten voor een pakket\n"
+" rdepends - Toon de pakketten die afhankelijk zijn van een pakket\n"
+" pkgnames - Toon de namen van alle pakketten\n"
+" dotty - Genereer pakketgrafen voor GraphVis\n"
+" xvcg - Genereer pakketgrafen voor xvcg\n"
+" policy - Toon beleidsinstellingen\n"
+"\n"
+"Opties:\n"
+" -h Deze hulptekst.\n"
+" -p=? De pakketcache.\n"
+" -s=? De broncache.\n"
+" -q Voortgangsindicator uitschakelen.\n"
+" -i Toon alleen belangrijke vereisten voor unmet opdracht.\n"
+" -c=? Lees dit configuratiebestand.\n"
+" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
+"\n"
+"Zie de apt-cache(8) en apt.conf(5) handleidingen voor meer informatie.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Gelieve een naam voor deze schijf op te geven, zoals 'Debian 2.1r1 Schijf 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken"
+#: cmdline/apt-cdrom.cc:93
+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"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Kan de verbinding met %s:%s (%s) niet aangaan."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenten niet in paren"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Kon niet verbinden met %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Gebruik: apt-config [opties] opdracht\n"
+"\n"
+"apt-config is een eenvoudig programma om het APT-configuratiebestand te "
+"lezen\n"
+"\n"
+"Opdrachten:\n"
+" shell - Shell modus\n"
+" dump - Toon de configuratie\n"
+"\n"
+"Opties:\n"
+" -h Deze hulptekst.\n"
+" -c=? Lees dit configuratiebestand.\n"
+" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Er wordt verbinding gemaakt met %s"
+msgid "%s not a valid DEB package."
+msgstr "%s is geen geldig DEB-pakket."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Kon '%s' niet vinden"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Gebruik: apt-extracttemplates bestand1 [bestand2 ...]\n"
+"\n"
+"apt-extracttemplates is een programma om configuratie- en "
+"sjablooninformatie\n"
+"uit Debian pakketten te halen.\n"
+"\n"
+"Opties:\n"
+" -h Deze hulptekst.\n"
+" -t Stel de tijdelijke map in.\n"
+" -c=? Lees dit configuratiebestand.\n"
+" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Tijdelijke fout bij het opzoeken van '%s'"
+msgid "Unable to write to %s"
+msgstr "Kan niet naar %s schrijven"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Er gebeurde iets raars bij het zoeken naar '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Kan niet verbinden met %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Pakket-extensielijst is te lang"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Kon de sleutelring niet benaderen: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"F: argumentenlijst van Acquire::gpv::Options was te lang. Er wordt "
-"afgesloten."
+msgid "Error processing directory %s"
+msgstr "Fout bij het verwerken van map %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n"
-"niet bepalen?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Bron-extensielijst is te lang"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Er is tenminste één ongeldige ondertekening gevonden."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Fout bij wegschrijven van de koptekst naar het 'contents'-bestand"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Kon '%s' niet uitvoeren om ondertekening te verifiëren (is gnupg "
-"geïnstalleerd?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Onbekende fout bij het uitvoeren van gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "De volgende ondertekeningen waren ongeldig:\n"
+msgid "Error processing contents %s"
+msgstr "Fout bij het verwerken van de inhoud van %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"De volgende ondertekeningen konden niet geverifiëerd worden omdat de "
-"publieke sleutel niet beschikbaar is:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Status opvragen van %s is mislukt"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Kon geen pijp openen voor %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Leesfout door proces %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Gebruik: apt-ftparchive [opties] commando\n"
+"\n"
+"Commandos': packages <pad naar .deb's> [voorrangsbestand [padprefix]]\n"
+" sources <pad naar .dsc's> [voorrangsbestand [padprefix]]\n"
+" contents <pad>\n"
+" release <pad>\n"
+" generate config [groepen]\n"
+" clean config\n"
+"\n"
+"Met apt-ftparchive genereert u index bestanden voor Debian archieven.\n"
+"Het ondersteunt verschillende generatiestijlen variërend van volledig \n"
+"automatisch tot een functionele vervanging van dpkg-scanpackages en \n"
+"dpkg-scansources\n"
+"\n"
+"apt-ftparchive genereert pakketbestanden van een boom met .debs.\n"
+"Het 'Packages'-bestand bevat de inhoud van alle 'control'-velden van elk\n"
+"pakket alsook de MD5 hash en de bestandsgrootte. Via een voorrangsbestand\n"
+"kunnen de waardes van de 'Priority'- en 'Section'-velden afgedwongen\n"
+"worden.\n"
+"\n"
+"Op overeenkomstige wijze genereert apt-ftparchive de 'Sources'-bestanden\n"
+"van een boom met .dscs. De '--source-override'-optie kan gebruikt worden\n"
+"om een voorrangsbestand voor bronpakketten te specificeren.\n"
+"\n"
+"De 'packages' en 'sources' opdrachten dienen uitgevoerd te worden \n"
+"in de basismap van de boom. Het pad naar de .deb's dient te verwijzen naar\n"
+"het startpunt van de recursieve zoekopdracht en een voorrangsbestand dient\n"
+"de voorrangsvlaggen te bevatten. Padprefix wordt toegevoegd aan het\n"
+"'filename'-veld indien dit aanwezig is. Enkele voorbeelden uit het debian\n"
+"archief:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opties:\n"
+" -h Deze hulptekst\n"
+" --md5 Beheer de MD5 generatie\n"
+" -s=? Bronvoorrangsbestand\n"
+" -q Stille uitvoer\n"
+" -d=? Selecteert de optionele caching database\n"
+" --no-delink Schakelt de ontlinking debug modus in\n"
+" --contents Beheer de generatie van het inhoudsbestand\n"
+" -c=? Lees dit configuratiebestand in\n"
+" -o=? Stel een willekeurige configuratie optie in"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Wachtend op de kopteksten"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Geen van de selecties kwam overeen"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Enkele koptekstregel ontvangen met meer dan %u karakters"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Foute koptekstregel"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB is beschadigd, bestand hernoemd naar %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr ""
-"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB is verouderd, opwaardering van %s wordt geprobeerd"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd"
+"DB-formaat is ongeldig. Als u opgewaardeerd heeft van een oudere versie, van "
+"apt, dient u de database te verwijderen en opnieuw aan te maken."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Kan het DB-bestand %s niet openen: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Onbekend datumformaat"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Status opvragen van %s is mislukt"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Selectie is mislukt"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archief heeft geen 'control'-record"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Verbinding verliep"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Kan geen cursor verkrijgen"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Fout bij het schrijven naar het uitvoerbestand"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Kon map %s niet lezen\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Fout bij het schrijven naar bestand"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Kon de status van %s niet opvragen\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Fout bij het schrijven naar het bestand"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Fout bij het lezen van de server"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Er zijn fouten van toepassing op het bestand "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Foute koptekstdata"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Oplossen van %s is mislukt"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Verbinding mislukt"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Doorlopen boomstructuur is mislukt"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Interne fout"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Openen van %s is mislukt"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kan een leeg bestand niet mmappen"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " OntlLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Kon van %lu bytes geen mmap maken"
+msgid "Failed to readlink %s"
+msgstr "Uitvoeren van readlink op %s is mislukt"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Selectie %s niet gevonden"
+msgid "Failed to unlink %s"
+msgstr "Ontlinken van %s is mislukt"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Onbekende typeafkorting '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Linken van %s aan %s is mislukt"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Configuratiebestand %s wordt geopend"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Ontlinklimiet van %sB is bereikt.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Regel %d is te lang (maxl %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archief heeft geen 'package'-veld"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaxfout %s:%u: Blok start zonder naam."
+msgid " %s has no override entry\n"
+msgstr " %s heeft geen voorrangsingang\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s beheerder is %s, niet %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaxfout %s:%u: Extra rommel na waarde"
-
-#: apt-pkg/contrib/configuration.cc:682
-#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven "
-"worden"
+msgid " %s has no source override entry\n"
+msgstr " %s heeft geen voorrangsingang voor bronpakketten\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen"
+msgid " %s has no binary override entry either\n"
+msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd"
+msgid "Internal error, could not locate member %s"
+msgstr "Interne fout, kon onderdeel %s niet vinden"
-#: apt-pkg/contrib/configuration.cc:702
-#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Geheugentoewijzing is mislukt"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand"
+msgid "Unable to open %s"
+msgstr "Kan %s niet openen"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Unable to read %s"
-msgstr "Kan %s niet lezen"
+msgid "Malformed override %s line %lu #1"
+msgstr "Misvormde voorrangsingang %s op regel %lu #1"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Fout!"
+msgid "Malformed override %s line %lu #2"
+msgstr "Misvormde voorrangsingang %s op regel %lu #2"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Klaar"
+msgid "Malformed override %s line %lu #3"
+msgstr "Misvormde voorrangsingang %s op regel %lu #3"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Commandoregel-optie '%c' [van %s] is onbekend."
+msgid "Failed to read the override file %s"
+msgstr "Voorrangsbestand %s kon niet gelezen worden"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Commandoregel-optie %s wordt niet begrepen"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Onbekend compressie-algoritme '%s'"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Commandoregel-optie %s is niet booleaans"
+msgid "Compressed output %s needs a compression set"
+msgstr "Gecomprimeerde uitvoer %s vereist een compressieset"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Optie %s vereist een argument."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Aanmaken van IPC-pijp naar subproces is mislukt"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te "
-"bevatten."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Aanmaken FILE* is mislukt"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Optie %s vereist een integer getal als argument, niet '%s'"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Vorken van proces is mislukt"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Optie '%s' is te lang"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Comprimeer kind"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'."
+msgid "Internal error, failed to create %s"
+msgstr "Interne fout, aanmaken van %s is mislukt"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Ongeldige operatie %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Aanmaken subproces-IPC is mislukt"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Kan de status van het aanhechtpunt %s niet opvragen"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Uitvoeren van de compressor is mislukt "
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Kan %s niet veranderen"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompressor"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Het opvragen van de CD-status is mislukt"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO naar subproces/bestand is mislukt"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
-"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-"
-"vergrendelingsbestand %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Lezen tijdens het berekenen van de MD5 is mislukt"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Kon het vergrendelingsbestand '%s' niet openen"
+msgid "Problem unlinking %s"
+msgstr "Probleem bij het ontlinken van %s"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld"
+msgid "Failed to rename %s to %s"
+msgstr "Hernoemen van %s naar %s is mislukt"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Kon vergrendeling %s niet verkrijgen"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
-#: apt-pkg/contrib/fileutl.cc:377
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Er is gewacht op %s, maar die kwam niet"
+msgid "Regex compilation error - %s"
+msgstr "Regex-compilatiefout - %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Subproces %s ontving een segmentatiefout."
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "De volgende pakketten hebben niet-voldane vereisten:"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Subproces %s gaf de foutcode %u terug"
+msgid "but %s is installed"
+msgstr "maar %s is geïnstalleerd"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Subproces %s sloot onverwacht af"
+msgid "but %s is to be installed"
+msgstr "maar %s zal geïnstalleerd worden"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Kon het bestand %s niet openen"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "maar het is niet installeerbaar"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "maar het is een virtueel pakket"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "schrijf, de laatste %lu konden niet weggeschreven worden"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "maar het is niet geïnstalleerd"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Probleem bij het afsluiten van het bestand"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "maar het zal niet geïnstalleerd worden"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Probleem bij het ontlinken van het bestand"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " of"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Probleem bij het synchroniseren van het bestand"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Lege pakketcache"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "De volgende pakketten zullen VERWIJDERD worden:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Het pakketcachebestand is beschadigd"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "De volgende pakketten zijn achtergehouden:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Het pakketcachebestand heeft een niet-compatible versie"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "De volgende pakketten zullen opgewaardeerd worden:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "De volgende pakketten zullen GEDEGRADEERD worden:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "De pakketcache was aangemaakt voor een andere architectuur"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Vereisten"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (vanwege %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Voor-Vereisten"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Suggesties"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Aanbevelingen"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu opnieuw geïnstalleerd, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Conflicteert met"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu gedegradeerd, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Vervangt"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Verouderd"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Vereisten worden gecorrigeerd..."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "belangrijk"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " mislukt."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "noodzakelijk"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Kan vereisten niet corrigeren"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standaard"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "optioneel"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Klaar"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Boom van vereisten wordt opgebouwd"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandidaat-versies"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr ""
+"WAARSCHUWING: De volgende pakketten kunnen niet geauthenticeerd worden:"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generatie vereisten"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Authenticatiewaarschuwing is genegeerd.\n"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "De beschikbare informatie wordt samengevoegd"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Wilt u deze pakketten installeren zonder verificatie [j/N]? "
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Openen van %s is mislukt"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Sommige pakketten konden niet geauthenticeerd worden"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Wegschrijven van bestand %s is mislukt"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Kon pakketbestand %s niet ontleden (1)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Kon pakketbestand %s niet ontleden (2)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld."
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Misvormde regel %lu in bronlijst %s (URI)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Interne fout, rangschikken is niet voltooid"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Misvormde regel %lu in bronlijst %s (dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Kon de ophaalmap niet vergrendelen"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Misvormde regel %lu in bronlijst %s (URI parse)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "De lijst van bronnen kon niet gelezen worden."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian."
+"org te mailen"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Misvormde regel %lu in bronlijst %s (dist parse)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Opening %s"
-msgstr "%s wordt geopend"
+msgid "Need to get %sB of archives.\n"
+msgstr "Er moeten %sB aan archieven opgehaald worden.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Regel %u van de bronlijst %s is te lang."
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Na het uitpakken zal er %sB extra schijfruimte gebruikt worden.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Misvormde regel %u in bronlijst %s (type)"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Na het uitpakken zal er %sB schijfruimte vrijkomen.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Type '%s' op regel %u in bronlijst %s is onbekend"
+msgid "Couldn't determine free space in %s"
+msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Misvormde regel %u in bronlijst %s (verkopers-ID)"
+msgid "You don't have enough free space in %s."
+msgstr "U heeft onvoldoende vrije schijfruimte op %s."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, doe wat ik zeg!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Deze installatieaanroep vereist het tijdelijk verwijderen van het essentiële "
-"pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is vaak "
-"slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie te "
-"activeren."
+"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n"
+"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indexbestandtype '%s' wordt niet ondersteund"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Afbreken."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Wilt u doorgaan [J/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor "
-"gevonden worden."
+msgid "Failed to fetch %s %s\n"
+msgstr "Ophalen van %s %s is mislukt\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Ophalen van sommige bestanden is mislukt"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Ophalen klaar en alleen-ophalen-modus staat aan"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan "
-"veroorzaakt worden door vastgehouden pakketten."
+"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --"
+"fix-missing proberen?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Lijstmap %spartial is afwezig."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Geen oplossing voor de missende pakketten gevonden."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Archiefmap %spartial is afwezig."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Installatie wordt afgebroken."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Let op, %s wordt geselecteerd in plaats van %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Bestand %li van %li wordt opgehaald"
+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"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Het methodestuurprogramma %s kon niet gevonden worden."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Methode %s startte niet op de juiste manier"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pakket %s is een virtueel pakket voorzien door:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr ""
-"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op "
-"'enter' te drukken."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Geïnstalleerd]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "U dient er één expliciet te selecteren voor installatie."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund"
-
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Kan geen geschikt pakketsysteemtype bepalen"
-
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Kan de status van %s niet opvragen."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-"Uw bronnenlijst (/etc/apt/sources.list) dient minstens 1 bron-URI te bevatten"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "De lijst van bronnen kon niet gelezen worden."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"De pakketlijsten of het statusbestand konden of niet ontleed, of niet "
-"geopend worden."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+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 ""
-"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ongeldige record in het voorkeurenbestand, geen 'Package'-koptekst"
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Pintype %s wordt niet begrepen"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin"
+"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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Cache heeft een niet-compatibel versienummeringssysteem"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Echter, de volgende pakketten vervangen dit:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Fout tijdens verwerken van %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Pakket %s heeft geen installeerbare kandidaat"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Fout tijdens verwerken van %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
+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"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Fout tijdens verwerken van %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s is reeds de nieuwste versie.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release '%s' voor '%s' is niet gevonden"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Fout tijdens verwerken van %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versie '%s' voor '%s' is niet gevonden"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Fout tijdens verwerken van %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versie %s (%s) geselecteerd voor %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Fout tijdens verwerken van %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "De 'update'-opdracht aanvaard geen argumenten"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Kon de lijst-map niet vergrendelen"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Wauw, u heeft meer pakketten dan deze APT aankan."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Wauw, u heeft meer versies dan deze APT aankan."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Wauw, u heeft meer versies dan deze APT aankan."
-
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aankan."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Fout tijdens verwerken van %s (FindPkg)"
-
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Fout tijdens verwerken van %s (CollectFileProvides)"
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Pakket %s %s werd niet gevonden bij het verwerken van de "
-"bestandsafhankelijkheden"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Kon de status van de bronpakketlijst %s niet opvragen"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Pakketlijsten worden ingelezen"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "De volgende informatie helpt u mogelijk verder:"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Voorziene bestanden worden verzameld"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Kan niet naar %s schrijven"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakketcache"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Kon pakket %s niet vinden"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "hernoeming is mislukt, %s (%s -> %s)."
+msgid "Couldn't find package %s"
+msgstr "Kon pakket %s niet vinden"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum komt niet overeen"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Let op, %s wordt geselecteerd omwille van de regex '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum komt niet overeen"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "maar %s zal geïnstalleerd worden"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n"
+"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te "
+"lossen:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u "
-"dit pakket handmatig moet repareren (wegens missende architectuur)"
+"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-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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 ""
-"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u "
-"dit pakket handmatig moet repareren."
+"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-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor "
-"pakket %s."
+"Aangezien u slechts een enkele opdracht gegeven hebt is het zeer \n"
+"waarschijnlijk dat het pakket gewoon niet installeerbaar is. U kunt dan\n"
+"best een foutrapport indienen voor dit pakket."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Grootte komt niet overeen"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Niet-werkende pakketten:"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Verkopersblok %s bevat geen vingerafdruk"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "De volgende extra pakketten zullen geïnstalleerd worden:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n"
-"CD wordt aangekoppeld\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Voorgestelde pakketten:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificatie..."
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Aanbevolen pakketten:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Opgeslagen label: %s \n"
-
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "CD wordt losgekoppeld\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Er wordt gewacht op de schijf...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "CD wordt aangekoppeld...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Er wordt gescant voor indexbestanden...\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Opwaardering wordt doorgerekend... "
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "%i pakket-indexen gevonden, %i bron-indexen en %i handtekeningen\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Mislukt"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Opgeslagen label: %s \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Klaar"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt"
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"De schijf heet:\n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Pakketlijsten worden gekopieerd..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Nieuwe bronlijst wordt weggeschreven\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Bronlijst-ingangen voor de schijf zijn:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD wordt afgekoppeld..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "%i records weggeschreven.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "%i records weggeschreven met %i missende bestanden.\n"
+"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet "
+"worden"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n"
+msgid "Unable to find a source package for %s"
+msgstr "Kan geen bronpakket vinden voor %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende "
-"bestanden\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Lijstmap %spartial is afwezig."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "%s wordt voorbereid"
+msgid "You don't have enough free space in %s"
+msgstr "U heeft niet voldoende vrije schijfruimte op %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "%s wordt uitgepakt"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Configuratie van %s wordt voorbereid"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Moet %sB aan bronarchieven ophalen.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "%s wordt geconfigureerd"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Fout bij het verwerken van map %s"
+msgid "Fetch source %s\n"
+msgstr "Ophalen bron %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "%s is geïnstalleerd"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Ophalen van sommige archieven is mislukt."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Verwijdering van %s wordt voorbereid"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Het uitpakken van de reeds uitgepakte bron in %s wordt overgeslagen\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "%s wordt verwijderd"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Uitpakopdracht '%s' is mislukt.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "%s is verwijderd"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Volledige verwijdering van %s wordt voorbereid"
+msgid "Build command '%s' failed.\n"
+msgstr "Bouwopdracht '%s' is mislukt.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s is volledig verwijderd"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Dochterproces is mislukt"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+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"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Kon het bestand %s niet openen"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Aanmaken van IPC-pijp naar subproces is mislukt"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Verbinding werd voortijdig afgebroken"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Aanmaken pijp is mislukt"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Uitvoeren van gzip is mislukt "
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Beschadigd archief"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Tar controlesom klopt niet, het pakket is beschadigd"
-
-#: apt-inst/contrib/extracttar.cc:296
-#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Ongeldige archiefondertekening"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Fout bij het lezen van de koptekst van het archief-onderdeel"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Ongeldige koptekst in archiefonderdeel"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Archief is te kort"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Lezen van de archiefkopteksten is mislukt"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "DropNode werd aangeroepen op een nog gelinkte knoop"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Localiseren van het hash-element is mislukt!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Toewijzen van de omleiding is mislukt"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Interne fout in AddDiversion"
-
-#: apt-inst/filelist.cc:477
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen"
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Dubbele toevoeging van de omleiding %s->%s"
+msgid "%s has no build depends.\n"
+msgstr "%s heeft geen bouwvereisten.\n"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Dubbel configuratiebestand %s/%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s "
+"onvindbaar is"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to write file %s"
-msgstr "Wegschrijven van bestand %s is mislukt"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"De vereiste %s van pakket %s kan niet voldaan worden omdat er geen "
+"beschikbare versies zijn van pakket %s die aan de versievereisten voldoen"
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Failed to close file %s"
-msgstr "Sluiten van bestand %s is mislukt"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s "
+"is te nieuw"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "The path %s is too long"
-msgstr "Het pad %s is te lang"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "%s wordt meer dan eens uitgepakt"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Bouwvereisten voor %s konden niet voldaan worden."
-#: apt-inst/extract.cc:134
-#, c-format
-msgid "The directory %s is diverted"
-msgstr "De map %s is al omgeleid"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Verwerken van de bouwvereisten is mislukt"
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Het pakket probeert om het omleidingsdoel %s/%s weg te schrijven"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Ondersteunde modules:"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Het omleidingspad is te lang"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Gebruik: apt-get [opties] opdracht\n"
+" apt-get [opties] install|remove pakket1 [pakket2 ...]\n"
+" apt-get [opties] source pakket1 [pakket2 ...]\n"
+"\n"
+"apt-get is een eenvoudige commandolijn-interface voor het ophalen en \n"
+"installeren van pakketten. De meest gebruikte opdrachten zijn 'update' en\n"
+"'install'.\n"
+"\n"
+"Opdrachten:\n"
+" update - Haal de laatste versie van de pakketlijst op\n"
+" upgrade - Opwaardeer alle geïnstalleerde pakketten\n"
+" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6."
+"deb)\n"
+" remove - Verwijder pakketten\n"
+" source - Haal bronarchieven op\n"
+" build-dep - Installeer de pakketten vereist voor het bouwen van de "
+"bronpakketten op\n"
+" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n"
+" dselect-upgrade - Opwaardeer volgens dselect-selecties\n"
+" clean - Wis opgehaalde archief bestanden\n"
+" autoclean - Wis oude opgehaalde archief bestanden\n"
+" check - Controleer onvoldane vereisten\n"
+"\n"
+"Opties:\n"
+" -h Deze hulptekst\n"
+" -q Logbare uitvoer - geen voortgangsindicator\n"
+" -qq Uitvoer bestaat louter uit foutmeldingen\n"
+" -d Alleen ophalen - archieven NIET installeren of uitpakken\n"
+" -s Doe-niets. Doe alleen sorteersimulatie\n"
+" -y Antwoord ja op alle vragen zonder ze te stellen\n"
+" -f Probeer door te gaan als de integriteitstest faalt\n"
+" -m Probeer door te gaan als sommige archieven niet gevonden kunnen "
+"worden\n"
+" -u Toon ook een lijst van bijgewerkte pakketten\n"
+" -b Bouw het bronpakket na het ophalen\n"
+" -V Toon uitgebreide versie nummers\n"
+" -c=? Lees dit configuratiebestand\n"
+" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
+"\n"
+"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n"
+"voor meer informatie en opties.\n"
+" Deze APT heeft Super Koekrachten.\n"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Hernoemen van %s naar %s is mislukt"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Geraakt "
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "De map %s wordt vervangen door een niet-map"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Ophalen:"
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Vinden van de knoop in de hash-emmer is mislukt"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Genegeerd "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Het pad is te lang"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Fout "
-#: apt-inst/extract.cc:414
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB opgehaald in %s (%sB/s)\n"
-#: apt-inst/extract.cc:431
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s"
+msgid " [Working]"
+msgstr " [Bezig]"
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to stat %s"
-msgstr "Kan de status van %s niet opvragen"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Medium wisselen: Gelieve de schijf met label\n"
+" '%s'\n"
+"in het station '%s' te plaatsen en op 'enter' te drukken\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
-#, c-format
-msgid "Failed to remove %s"
-msgstr "Verwijderen van %s is mislukt"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Onbekend pakketrecord!"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Kan %s niet aanmaken"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Gebruik: apt-sortpkgs [opties] bestand1 [bestand2 ...]\n"
+"\n"
+"apt-sortpkgs is een simpel programma om pakketbestanden te sorteren.\n"
+"De -s optie wordt gebruikt om aan te geven om welk soort bestand het gaat.\n"
+"\n"
+"Opties:\n"
+" -h Deze helptekst\n"
+" -s Sorteer bronbestanden\n"
+" -c=? Lees dit configuratiebestand\n"
+" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Opvragen van de status van %sinfo is mislukt"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Foute standaardinstelling!"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr ""
-"De 'info'- en de 'temp'-mappen dienen op hetzelfde bestandsysteem te staan"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Druk 'enter' om door te gaan."
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Verspringen naar de beheermap %sinfo is mislukt"
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Er zijn fouten opgetreden tijdens het uitpakken. De geïnstalleerde"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Interne fout bij het ophalen van de pakketnaam"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr ""
+"pakketten worden geconfigureerd. Hierbij kunnen fouten meerdere malen "
+"optreden"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Bestandslijst worden ingelezen"
+#: dselect/install:102
+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"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Openen van het lijstbestand '%sinfo/%s' is mislukt. Als u dit bestand niet "
-"kunt herstellen, dient u het leeg te maken en daarna onmiddelijk dezelfde "
-"versie van het pakket te installeren!"
+"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie "
+"opnieuw uit te voeren"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Lezen van lijstbestand %sinfo/%s is mislukt"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "De beschikbare informatie wordt samengevoegd"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Interne fout bij het verkrijgen van een knoop"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Aanmaken pijp is mislukt"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Openen van het omleidingsbestand %sdiversions is mislukt"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Uitvoeren van gzip is mislukt "
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Het pakketcachebestand is beschadigd"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Beschadigd archief"
+
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Tar controlesom klopt niet, het pakket is beschadigd"
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s"
+
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Ongeldige archiefondertekening"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Fout bij het lezen van de koptekst van het archief-onderdeel"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Ongeldige koptekst in archiefonderdeel"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Archief is te kort"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Lezen van de archiefkopteksten is mislukt"
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "DropNode werd aangeroepen op een nog gelinkte knoop"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Localiseren van het hash-element is mislukt!"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Toewijzen van de omleiding is mislukt"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Interne fout in AddDiversion"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Dubbele toevoeging van de omleiding %s->%s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Dubbel configuratiebestand %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Wegschrijven van bestand %s is mislukt"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Sluiten van bestand %s is mislukt"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Het pad %s is te lang"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "%s wordt meer dan eens uitgepakt"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "De map %s is al omgeleid"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Het pakket probeert om het omleidingsdoel %s/%s weg te schrijven"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Het omleidingspad is te lang"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "De map %s wordt vervangen door een niet-map"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Vinden van de knoop in de hash-emmer is mislukt"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Het pad is te lang"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Kan %s niet lezen"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Kan de status van %s niet opvragen"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Verwijderen van %s is mislukt"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Kan %s niet aanmaken"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Opvragen van de status van %sinfo is mislukt"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr ""
+"De 'info'- en de 'temp'-mappen dienen op hetzelfde bestandsysteem te staan"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Pakketlijsten worden ingelezen"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Verspringen naar de beheermap %sinfo is mislukt"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Interne fout bij het ophalen van de pakketnaam"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Bestandslijst worden ingelezen"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Openen van het lijstbestand '%sinfo/%s' is mislukt. Als u dit bestand niet "
+"kunt herstellen, dient u het leeg te maken en daarna onmiddelijk dezelfde "
+"versie van het pakket te installeren!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Lezen van lijstbestand %sinfo/%s is mislukt"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Interne fout bij het verkrijgen van een knoop"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Openen van het omleidingsbestand %sdiversions is mislukt"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Het pakketcachebestand is beschadigd"
#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
#: apt-inst/deb/dpkgdb.cc:337
msgid "Unparsable control file"
msgstr "Niet-ontleedbaar 'control'-bestand"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Kan de cd-rom databank %s niet lezen"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Kan pakket %s niet vinden"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-"
+"get update' is niet in staat om nieuwe CDs toe te voegen"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Totaal aantal pakketnamen: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Verkeerde CD"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normale pakketten: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"Kan de CD-ROM in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Zuiver virtuele pakketten: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Schijf niet gevonden"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Losstaande virtuele pakketten: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Bestand niet gevonden"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Gemengde virtuele pakketten: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Status opvragen is mislukt"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Ontbrekend: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Instellen van de aanpassingstijd is mislukt"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Totaal aantal verschillende versies: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Totaal aantal verschillende versies: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Totaal aantal vereisten: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Bezig met aanmelden"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Totaal aantal versie/bestand-relaties: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Kan de 'peer'-naam niet bepalen"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Totaal aantal versie/bestand-relaties: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Kan de lokale naam niet bepalen"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Totaal aantal 'Voorziet'-toewijzingen "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Onze verbinding is door de server geweigerd met bericht: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Totaal aantal geglobde strings: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER mislukt; bericht van server: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Totale hoeveelheid vereisten-versieruimte: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS mislukt; bericht van server: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Totale onbenutte ruimte: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::"
+"ProxyLogin is leeg."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Totale hoeveelheid verantwoorde ruimte: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakketbestand %s is niet meer gesynchroniseerd."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE mislukt; bericht van server: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "U dient precies één patroon op te geven"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Verbinding is verlopen"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Geen pakketten gevonden"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Verbinding is verbroken door de server"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pakketbestanden:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Leesfout"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Een reactie deed de buffer overlopen"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protocolcorruptie"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Vastgepinde pakketten:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Schrijffout"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(niet gevonden)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Kon geen socket aanmaken"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Geïnstalleerd: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Kon de datasocket niet verbinden, de verbinding verliep"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(geen)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Kon de passieve socket niet verbinden."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidaat: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo kon geen luistersocket verkrijgen"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pakketpin: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Kon geen socket binden"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versietabel:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Kon niet op de socket niet luisteren"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Kon de socketnaam niet bepalen"
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Kan PORT-commando niet verzenden"
+
+#: methods/ftp.cc:789
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Onbekende adresfamilie %u (AF_*)"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s voor %s %s gecompileerd op %s %s\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT is mislukt; bericht van server: %s"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Gebruik: apt-cache [opties] opdracht\n"
-" apt-cache [opties] add bestand1 [bestand2 ...]\n"
-" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n"
-" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n"
-"\n"
-"apt-cache is een laagniveau-hulpmiddel waarmee u de binaire\n"
-"cachebestanden van apt kunt manipuleren, en informatie\n"
-"daaruit kunt opvragen.\n"
-"Opdrachten:\n"
-" add - Voeg een pakketbestand toe aan de broncache\n"
-" gencaches - Bouw zowel het pakket- als de broncache\n"
-" showpkg - Toon algemene informatie over een enkel pakket\n"
-" showsrc - Toon bronrecords\n"
-" stats - Toon enkele basisstatistieken\n"
-" dump - Toon het gehele bestand in een compacte vorm\n"
-" dumpavail - Print een beschikbaarheidsbestand op stdout\n"
-" unmet - Toon niet voldane vereisten\n"
-" search - Toon lijst met pakketten die met regexpatroon overeenkomen\n"
-" show - Toon een leesbaar dossier voor het pakket\n"
-" depends - Toon de vereisten voor een pakket\n"
-" rdepends - Toon de pakketten die afhankelijk zijn van een pakket\n"
-" pkgnames - Toon de namen van alle pakketten\n"
-" dotty - Genereer pakketgrafen voor GraphVis\n"
-" xvcg - Genereer pakketgrafen voor xvcg\n"
-" policy - Toon beleidsinstellingen\n"
-"\n"
-"Opties:\n"
-" -h Deze hulptekst.\n"
-" -p=? De pakketcache.\n"
-" -s=? De broncache.\n"
-" -q Voortgangsindicator uitschakelen.\n"
-" -i Toon alleen belangrijke vereisten voor unmet opdracht.\n"
-" -c=? Lees dit configuratiebestand.\n"
-" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-"\n"
-"Zie de apt-cache(8) en apt.conf(5) handleidingen voor meer informatie.\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Datasocket verbinding is verlopen"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Gelieve een naam voor deze schijf op te geven, zoals 'Debian 2.1r1 Schijf 1'"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Kan de verbinding niet aanvaarden"
-#: cmdline/apt-cdrom.cc:93
-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"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Probleem bij het hashen van het bestand"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Kan bestand niet ophalen; bericht van server: %s"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenten niet in paren"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Datasocket verliep"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Gebruik: apt-config [opties] opdracht\n"
-"\n"
-"apt-config is een eenvoudig programma om het APT-configuratiebestand te "
-"lezen\n"
-"\n"
-"Opdrachten:\n"
-" shell - Shell modus\n"
-" dump - Toon de configuratie\n"
-"\n"
-"Opties:\n"
-" -h Deze hulptekst.\n"
-" -c=? Lees dit configuratiebestand.\n"
-" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Data transfer is mislukt, server zei: %s"
-#: cmdline/apt-extracttemplates.cc:98
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Zoekopdracht"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Aanroepen mislukt van "
+
+#: methods/connect.cc:64
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s is geen geldig DEB-pakket."
+msgid "Connecting to %s (%s)"
+msgstr "Er wordt verbinding gemaakt met %s (%s)"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Gebruik: apt-extracttemplates bestand1 [bestand2 ...]\n"
-"\n"
-"apt-extracttemplates is een programma om configuratie- en "
-"sjablooninformatie\n"
-"uit Debian pakketten te halen.\n"
-"\n"
-"Opties:\n"
-" -h Deze hulptekst.\n"
-" -t Stel de tijdelijke map in.\n"
-" -c=? Lees dit configuratiebestand.\n"
-" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Pakket-extensielijst is te lang"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Kan de verbinding met %s:%s (%s) niet aangaan."
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing directory %s"
-msgstr "Fout bij het verwerken van map %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Bron-extensielijst is te lang"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Kon niet verbinden met %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Fout bij wegschrijven van de koptekst naar het 'contents'-bestand"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Er wordt verbinding gemaakt met %s"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:167
#, c-format
-msgid "Error processing contents %s"
-msgstr "Fout bij het verwerken van de inhoud van %s"
+msgid "Could not resolve '%s'"
+msgstr "Kon '%s' niet vinden"
-#: ftparchive/apt-ftparchive.cc:553
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Tijdelijke fout bij het opzoeken van '%s'"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Er gebeurde iets raars bij het zoeken naar '%s:%s' (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Kan niet verbinden met %s %s:"
+
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Kon de sleutelring niet benaderen: '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"F: argumentenlijst van Acquire::gpv::Options was te lang. Er wordt "
+"afgesloten."
+
+#: methods/gpgv.cc:205
msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Gebruik: apt-ftparchive [opties] commando\n"
-"\n"
-"Commandos': packages <pad naar .deb's> [voorrangsbestand [padprefix]]\n"
-" sources <pad naar .dsc's> [voorrangsbestand [padprefix]]\n"
-" contents <pad>\n"
-" release <pad>\n"
-" generate config [groepen]\n"
-" clean config\n"
-"\n"
-"Met apt-ftparchive genereert u index bestanden voor Debian archieven.\n"
-"Het ondersteunt verschillende generatiestijlen variërend van volledig \n"
-"automatisch tot een functionele vervanging van dpkg-scanpackages en \n"
-"dpkg-scansources\n"
-"\n"
-"apt-ftparchive genereert pakketbestanden van een boom met .debs.\n"
-"Het 'Packages'-bestand bevat de inhoud van alle 'control'-velden van elk\n"
-"pakket alsook de MD5 hash en de bestandsgrootte. Via een voorrangsbestand\n"
-"kunnen de waardes van de 'Priority'- en 'Section'-velden afgedwongen\n"
-"worden.\n"
-"\n"
-"Op overeenkomstige wijze genereert apt-ftparchive de 'Sources'-bestanden\n"
-"van een boom met .dscs. De '--source-override'-optie kan gebruikt worden\n"
-"om een voorrangsbestand voor bronpakketten te specificeren.\n"
-"\n"
-"De 'packages' en 'sources' opdrachten dienen uitgevoerd te worden \n"
-"in de basismap van de boom. Het pad naar de .deb's dient te verwijzen naar\n"
-"het startpunt van de recursieve zoekopdracht en een voorrangsbestand dient\n"
-"de voorrangsvlaggen te bevatten. Padprefix wordt toegevoegd aan het\n"
-"'filename'-veld indien dit aanwezig is. Enkele voorbeelden uit het debian\n"
-"archief:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opties:\n"
-" -h Deze hulptekst\n"
-" --md5 Beheer de MD5 generatie\n"
-" -s=? Bronvoorrangsbestand\n"
-" -q Stille uitvoer\n"
-" -d=? Selecteert de optionele caching database\n"
-" --no-delink Schakelt de ontlinking debug modus in\n"
-" --contents Beheer de generatie van het inhoudsbestand\n"
-" -c=? Lees dit configuratiebestand in\n"
-" -o=? Stel een willekeurige configuratie optie in"
+"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n"
+"niet bepalen?!"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Geen van de selecties kwam overeen"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Er is tenminste één ongeldige ondertekening gevonden."
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/gpgv.cc:214
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Kon '%s' niet uitvoeren om ondertekening te verifiëren (is gnupg "
+"geïnstalleerd?)"
-#: ftparchive/cachedb.cc:43
-#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB is beschadigd, bestand hernoemd naar %s.old"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Onbekende fout bij het uitvoeren van gpgv"
-#: ftparchive/cachedb.cc:61
-#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB is verouderd, opwaardering van %s wordt geprobeerd"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "De volgende ondertekeningen waren ongeldig:\n"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:257
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-"DB-formaat is ongeldig. Als u opgewaardeerd heeft van een oudere versie, van "
-"apt, dient u de database te verwijderen en opnieuw aan te maken."
+"De volgende ondertekeningen konden niet geverifiëerd worden omdat de "
+"publieke sleutel niet beschikbaar is:\n"
-#: ftparchive/cachedb.cc:77
+#: methods/gzip.cc:64
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Kan het DB-bestand %s niet openen: %s"
+msgid "Couldn't open pipe for %s"
+msgstr "Kon geen pijp openen voor %s"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archief heeft geen 'control'-record"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Leesfout door proces %s"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Kan geen cursor verkrijgen"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Wachtend op de kopteksten"
-#: ftparchive/writer.cc:76
+#: methods/http.cc:523
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Kon map %s niet lezen\n"
+msgid "Got a single header line over %u chars"
+msgstr "Enkele koptekstregel ontvangen met meer dan %u karakters"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Kon de status van %s niet opvragen\n"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Foute koptekstregel"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F: "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr ""
+"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Er zijn fouten van toepassing op het bestand "
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr ""
+"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Oplossen van %s is mislukt"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Doorlopen boomstructuur is mislukt"
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Onbekend datumformaat"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Selectie is mislukt"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Verbinding verliep"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Fout bij het schrijven naar het uitvoerbestand"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Fout bij het schrijven naar bestand"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Fout bij het schrijven naar het bestand"
+
+#: methods/http.cc:875
+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:877
+msgid "Error reading from server"
+msgstr "Fout bij het lezen van de server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Foute koptekstdata"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Verbinding mislukt"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Interne fout"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kan een leeg bestand niet mmappen"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Openen van %s is mislukt"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Kon van %lu bytes geen mmap maken"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " OntlLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Selectie %s niet gevonden"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Uitvoeren van readlink op %s is mislukt"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Onbekende typeafkorting '%c'"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Ontlinken van %s is mislukt"
+msgid "Opening configuration file %s"
+msgstr "Configuratiebestand %s wordt geopend"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Regel %d is te lang (maxl %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Linken van %s aan %s is mislukt"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaxfout %s:%u: Blok start zonder naam."
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Ontlinklimiet van %sB is bereikt.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archief heeft geen 'package'-veld"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaxfout %s:%u: Extra rommel na waarde"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s heeft geen voorrangsingang\n"
+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"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s beheerder is %s, niet %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s heeft geen voorrangsingang voor bronpakketten\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Interne fout, kon onderdeel %s niet vinden"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Geheugentoewijzing is mislukt"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Fout!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "Kan %s niet openen"
+msgid "%c%s... Done"
+msgstr "%c%s... Klaar"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Misvormde voorrangsingang %s op regel %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Commandoregel-optie '%c' [van %s] is onbekend."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Misvormde voorrangsingang %s op regel %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Commandoregel-optie %s wordt niet begrepen"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Misvormde voorrangsingang %s op regel %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Commandoregel-optie %s is niet booleaans"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Voorrangsbestand %s kon niet gelezen worden"
+msgid "Option %s requires an argument."
+msgstr "Optie %s vereist een argument."
+
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te "
+"bevatten."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Onbekend compressie-algoritme '%s'"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Optie %s vereist een integer getal als argument, niet '%s'"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Gecomprimeerde uitvoer %s vereist een compressieset"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Aanmaken FILE* is mislukt"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Vorken van proces is mislukt"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Comprimeer kind"
+msgid "Option '%s' is too long"
+msgstr "Optie '%s' is te lang"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Interne fout, aanmaken van %s is mislukt"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Aanmaken subproces-IPC is mislukt"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Uitvoeren van de compressor is mislukt "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Ongeldige operatie %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompressor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Kan de status van het aanhechtpunt %s niet opvragen"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO naar subproces/bestand is mislukt"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Kan %s niet veranderen"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Lezen tijdens het berekenen van de MD5 is mislukt"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Het opvragen van de CD-status is mislukt"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Probleem bij het ontlinken van %s"
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-"
+"vergrendelingsbestand %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Kon het vergrendelingsbestand '%s' niet openen"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex-compilatiefout - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "De volgende pakketten hebben niet-voldane vereisten:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Kon vergrendeling %s niet verkrijgen"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "maar %s is geïnstalleerd"
+msgid "Waited for %s but it wasn't there"
+msgstr "Er is gewacht op %s, maar die kwam niet"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "maar %s zal geïnstalleerd worden"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Subproces %s ontving een segmentatiefout."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "maar het is niet installeerbaar"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Subproces %s gaf de foutcode %u terug"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "maar het is een virtueel pakket"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Subproces %s sloot onverwacht af"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "maar het is niet geïnstalleerd"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Kon het bestand %s niet openen"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "maar het zal niet geïnstalleerd worden"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " of"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "schrijf, de laatste %lu konden niet weggeschreven worden"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Probleem bij het afsluiten van het bestand"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "De volgende pakketten zullen VERWIJDERD worden:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Probleem bij het ontlinken van het bestand"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "De volgende pakketten zijn achtergehouden:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Probleem bij het synchroniseren van het bestand"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "De volgende pakketten zullen opgewaardeerd worden:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Lege pakketcache"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "De volgende pakketten zullen GEDEGRADEERD worden:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Het pakketcachebestand is beschadigd"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Het pakketcachebestand heeft een niet-compatible versie"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (vanwege %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "De pakketcache was aangemaakt voor een andere architectuur"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Vereisten"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu opnieuw geïnstalleerd, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Voor-Vereisten"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu gedegradeerd, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Suggesties"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Aanbevelingen"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Conflicteert met"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Vereisten worden gecorrigeerd..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Vervangt"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " mislukt."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Verouderd"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Kan vereisten niet corrigeren"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "belangrijk"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Klaar"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "noodzakelijk"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standaard"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "optioneel"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr ""
-"WAARSCHUWING: De volgende pakketten kunnen niet geauthenticeerd worden:"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Authenticatiewaarschuwing is genegeerd.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Boom van vereisten wordt opgebouwd"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Wilt u deze pakketten installeren zonder verificatie [j/N]? "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandidaat-versies"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Sommige pakketten konden niet geauthenticeerd worden"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generatie vereisten"
+
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "De beschikbare informatie wordt samengevoegd"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Openen van %s is mislukt"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Wegschrijven van bestand %s is mislukt"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Kon pakketbestand %s niet ontleden (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Interne fout, rangschikken is niet voltooid"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Kon pakketbestand %s niet ontleden (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Kon de ophaalmap niet vergrendelen"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Misvormde regel %lu in bronlijst %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian."
-"org te mailen"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Misvormde regel %lu in bronlijst %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Misvormde regel %lu in bronlijst %s (URI parse)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Er moeten %sB aan archieven opgehaald worden.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Na het uitpakken zal er %sB extra schijfruimte gebruikt worden.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Misvormde regel %lu in bronlijst %s (dist parse)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Na het uitpakken zal er %sB schijfruimte vrijkomen.\n"
+msgid "Opening %s"
+msgstr "%s wordt geopend"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen"
+msgid "Line %u too long in source list %s."
+msgstr "Regel %u van de bronlijst %s is te lang."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "U heeft onvoldoende vrije schijfruimte op %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Misvormde regel %u in bronlijst %s (type)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Type '%s' op regel %u in bronlijst %s is onbekend"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, doe wat ik zeg!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Misvormde regel %u in bronlijst %s (verkopers-ID)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"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:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Afbreken."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Wilt u doorgaan [J/n]? "
+"Deze installatieaanroep vereist het tijdelijk verwijderen van het essentiële "
+"pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is vaak "
+"slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie te "
+"activeren."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ophalen van %s %s is mislukt\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Ophalen van sommige bestanden is mislukt"
+msgid "Index file type '%s' is not supported"
+msgstr "Indexbestandtype '%s' wordt niet ondersteund"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Ophalen klaar en alleen-ophalen-modus staat aan"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor "
+"gevonden worden."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --"
-"fix-missing proberen?"
+"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan "
+"veroorzaakt worden door vastgehouden pakketten."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Geen oplossing voor de missende pakketten gevonden."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Lijstmap %spartial is afwezig."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Installatie wordt afgebroken."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Archiefmap %spartial is afwezig."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Let op, %s wordt geselecteerd in plaats van %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, 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"
+msgid "Retrieving file %li of %li"
+msgstr "Bestand %li van %li wordt opgehaald"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n"
+msgid "The method driver %s could not be found."
+msgstr "Het methodestuurprogramma %s kon niet gevonden worden."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Pakket %s is een virtueel pakket voorzien door:\n"
+msgid "Method %s did not start correctly"
+msgstr "Methode %s startte niet op de juiste manier"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Geïnstalleerd]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op "
+"'enter' te drukken."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "U dient er één expliciet te selecteren voor installatie."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Kan geen geschikt pakketsysteemtype bepalen"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Kan de status van %s niet opvragen."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
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"
+"Uw bronnenlijst (/etc/apt/sources.list) dient minstens 1 bron-URI te bevatten"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Echter, de volgende pakketten vervangen dit:"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr ""
+"De pakketlijsten of het statusbestand konden of niet ontleed, of niet "
+"geopend worden."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ongeldige record in het voorkeurenbestand, geen 'Package'-koptekst"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Pakket %s heeft geen installeerbare kandidaat"
+msgid "Did not understand pin type %s"
+msgstr "Pintype %s wordt niet begrepen"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Cache heeft een niet-compatibel versienummeringssysteem"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Fout tijdens verwerken van %s (NewPackage)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s is reeds de nieuwste versie.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Fout tijdens verwerken van %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release '%s' voor '%s' is niet gevonden"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Fout tijdens verwerken van %s (UsePackage2)"
+
+#: apt-pkg/pkgcachegen.cc:182
+#, c-format
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versie '%s' voor '%s' is niet gevonden"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Fout tijdens verwerken van %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versie %s (%s) geselecteerd voor %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Fout tijdens verwerken van %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "De 'update'-opdracht aanvaard geen argumenten"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Fout tijdens verwerken van %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Kon de lijst-map niet vergrendelen"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Wauw, u heeft meer pakketten dan deze APT aankan."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Wauw, u heeft meer versies dan deze APT aankan."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Wauw, u heeft meer versies dan deze APT aankan."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aankan."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Fout tijdens verwerken van %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "De volgende informatie helpt u mogelijk verder:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Fout tijdens verwerken van %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"Pakket %s %s werd niet gevonden bij het verwerken van de "
+"bestandsafhankelijkheden"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Kon de status van de bronpakketlijst %s niet opvragen"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Kon pakket %s niet vinden"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Voorziene bestanden worden verzameld"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Kon pakket %s niet vinden"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakketcache"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Let op, %s wordt geselecteerd omwille van de regex '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "hernoeming is mislukt, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "maar %s zal geïnstalleerd worden"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum komt niet overeen"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum komt niet overeen"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te "
-"lossen:"
+"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren "
-"zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)."
+"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u "
+"dit pakket handmatig moet repareren (wegens missende architectuur)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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'."
+"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u "
+"dit pakket handmatig moet repareren."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Aangezien u slechts een enkele opdracht gegeven hebt is het zeer \n"
-"waarschijnlijk dat het pakket gewoon niet installeerbaar is. U kunt dan\n"
-"best een foutrapport indienen voor dit pakket."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Niet-werkende pakketten:"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "De volgende extra pakketten zullen geïnstalleerd worden:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Voorgestelde pakketten:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Aanbevolen pakketten:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Opwaardering wordt doorgerekend... "
+"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor "
+"pakket %s."
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Klaar"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Grootte komt niet overeen"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Verkopersblok %s bevat geen vingerafdruk"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet "
-"worden"
+"Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n"
+"CD wordt aangekoppeld\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Kan geen bronpakket vinden voor %s"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificatie..."
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n"
+msgid "Stored label: %s\n"
+msgstr "Opgeslagen label: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "U heeft niet voldoende vrije schijfruimte op %s"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD wordt afgekoppeld..."
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Moet %sB aan bronarchieven ophalen.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "CD wordt losgekoppeld\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Ophalen bron %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Er wordt gewacht op de schijf...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Ophalen van sommige archieven is mislukt."
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "CD wordt aangekoppeld...\n"
-#: cmdline/apt-get.cc:2264
-#, 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"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Er wordt gescant voor indexbestanden...\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Uitpakopdracht '%s' is mislukt.\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "%i pakket-indexen gevonden, %i bron-indexen en %i handtekeningen\n"
-#: cmdline/apt-get.cc:2277
-#, 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"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Opgeslagen label: %s \n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Bouwopdracht '%s' is mislukt.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"De schijf heet:\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Dochterproces is mislukt"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Pakketlijsten worden gekopieerd..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"U dient tenminste één pakket op te geven om de bouwvereisten van te "
-"controleren"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Nieuwe bronlijst wordt weggeschreven\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Bronlijst-ingangen voor de schijf zijn:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen"
+msgid "Wrote %i records.\n"
+msgstr "%i records weggeschreven.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s heeft geen bouwvereisten.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "%i records weggeschreven met %i missende bestanden.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s "
-"onvindbaar is"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
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"
+"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende "
+"bestanden\n"
-#: cmdline/apt-get.cc:2518
-#, 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"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Lijstmap %spartial is afwezig."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s"
+msgid "Preparing %s"
+msgstr "%s wordt voorbereid"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Bouwvereisten voor %s konden niet voldaan worden."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Verwerken van de bouwvereisten is mislukt"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Ondersteunde modules:"
+msgid "Unpacking %s"
+msgstr "%s wordt uitgepakt"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Gebruik: apt-get [opties] opdracht\n"
-" apt-get [opties] install|remove pakket1 [pakket2 ...]\n"
-" apt-get [opties] source pakket1 [pakket2 ...]\n"
-"\n"
-"apt-get is een eenvoudige commandolijn-interface voor het ophalen en \n"
-"installeren van pakketten. De meest gebruikte opdrachten zijn 'update' en\n"
-"'install'.\n"
-"\n"
-"Opdrachten:\n"
-" update - Haal de laatste versie van de pakketlijst op\n"
-" upgrade - Opwaardeer alle geïnstalleerde pakketten\n"
-" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6."
-"deb)\n"
-" remove - Verwijder pakketten\n"
-" source - Haal bronarchieven op\n"
-" build-dep - Installeer de pakketten vereist voor het bouwen van de "
-"bronpakketten op\n"
-" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n"
-" dselect-upgrade - Opwaardeer volgens dselect-selecties\n"
-" clean - Wis opgehaalde archief bestanden\n"
-" autoclean - Wis oude opgehaalde archief bestanden\n"
-" check - Controleer onvoldane vereisten\n"
-"\n"
-"Opties:\n"
-" -h Deze hulptekst\n"
-" -q Logbare uitvoer - geen voortgangsindicator\n"
-" -qq Uitvoer bestaat louter uit foutmeldingen\n"
-" -d Alleen ophalen - archieven NIET installeren of uitpakken\n"
-" -s Doe-niets. Doe alleen sorteersimulatie\n"
-" -y Antwoord ja op alle vragen zonder ze te stellen\n"
-" -f Probeer door te gaan als de integriteitstest faalt\n"
-" -m Probeer door te gaan als sommige archieven niet gevonden kunnen "
-"worden\n"
-" -u Toon ook een lijst van bijgewerkte pakketten\n"
-" -b Bouw het bronpakket na het ophalen\n"
-" -V Toon uitgebreide versie nummers\n"
-" -c=? Lees dit configuratiebestand\n"
-" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-"\n"
-"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n"
-"voor meer informatie en opties.\n"
-" Deze APT heeft Super Koekrachten.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Configuratie van %s wordt voorbereid"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Geraakt "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "%s wordt geconfigureerd"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Ophalen:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Fout bij het verwerken van map %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Genegeerd "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s is geïnstalleerd"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Fout "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Verwijdering van %s wordt voorbereid"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB opgehaald in %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "%s wordt verwijderd"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Bezig]"
+msgid "Removed %s"
+msgstr "%s is verwijderd"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Volledige verwijdering van %s wordt voorbereid"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Onbekend pakketrecord!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s is volledig verwijderd"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Gebruik: apt-sortpkgs [opties] bestand1 [bestand2 ...]\n"
-"\n"
-"apt-sortpkgs is een simpel programma om pakketbestanden te sorteren.\n"
-"De -s optie wordt gebruikt om aan te geven om welk soort bestand het gaat.\n"
-"\n"
-"Opties:\n"
-" -h Deze helptekst\n"
-" -s Sorteer bronbestanden\n"
-" -c=? Lees dit configuratiebestand\n"
-" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Foute standaardinstelling!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Kon het bestand %s niet openen"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Druk 'enter' om door te gaan."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Verbinding werd voortijdig afgebroken"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Er zijn fouten opgetreden tijdens het uitpakken. De geïnstalleerde"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Regel %d is te lang (maxl %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"pakketten worden geconfigureerd. Hierbij kunnen fouten meerdere malen "
-"optreden"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Fout tijdens verwerken van %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie "
-"opnieuw uit te voeren"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Opgeslagen label: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "De beschikbare informatie wordt samengevoegd"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "%i pakket-indexen gevonden, %i bron-indexen en %i handtekeningen\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt_nn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Klarte ikkje lesa CD-ROM-databasen %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan "
-"ikkje bruka «apt-get update» til å leggja til nye CD-plater."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Feil CD-plate"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr ""
-"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk."
-
-#: methods/cdrom.cc:171
-#, fuzzy
-msgid "Disk not found."
-msgstr "Fann ikkje fila"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fann ikkje fila"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Klarte ikkje få status"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Klarte ikkje setja endringstidspunkt"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //"
+msgid "Unable to locate package %s"
+msgstr "Finn ikkje pakken %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Loggar inn"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Tal på pakkenamn: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Klarte ikkje avgjera namnet på motparten"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Vanlege pakkar: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Klarte ikkje avgjera det lokale namnet"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Reine virtuelle pakkar: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Tenaren nekta oss å kopla til, og sa: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Enkle virtuelle pakkar: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER mislukkast, tenaren sa: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Samansette virtuelle pakkar: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS mislukkast, tenaren sa: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Manglar: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet "
-"«Acquire::ftp::ProxyLogin» er tomt."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Tal på einskildversjonar: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Tal på einskildversjonar: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE mislukkast, tenaren sa: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Tal på krav: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Tidsavbrot på samband"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Tal på ver./fil-forhold: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Tenaren lukka sambandet"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Tal på ver./fil-forhold: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Lesefeil"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Tal på tilbyr-forhold: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Eit svar flaumde over bufferen."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Tal på strengar med jokerteikn: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokolløydeleggjing"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Storleik på kravs- og versjonsrom: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Skrivefeil"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Slingringsmon: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Klarte ikkje oppretta sokkel"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Brukt plass i alt: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Pakkefila %s er ute av takt."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Mislukkast"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Du må oppgi nøyaktig eitt mnster"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Klarte ikkje kopla til passiv sokkel."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Fann ingen pakkar"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Pakkefiler:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Klarte ikkje binda til sokkel"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Klarte ikkje lytta til sokkel"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Klarte ikkje avgjera sokkelnamnet"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Spikra pakkar:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Klarte ikkje senda PORT-kommandoen"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ikkje funne)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Ukjend adressefamilie %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installert: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT mislukkast, tenaren sa: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ingen)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Tidsavbrot på tilkopling til datasokkel"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Klarte ikkje godta tilkoplinga"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pakke spikra til: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem ved oppretting av nøkkel for fil"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versjonstabell:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Klarte ikkje henta fila, tenaren sa «%s»"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Tidsavbrot på datasokkelen"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s %s kompilert på %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Dataoverføringa mislukkast, tenaren sa «%s»"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Spørjing"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Klarte ikkje starta "
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Bruk: apt-cache [val] kommando\n"
+" apt-cache [val] add fil1 [fil2 ...]\n"
+" apt-cache [val] showpkg pakke1 [pakke2 ...]\n"
+" apt-cache [val] showsrc pakke1 [pakke2 ...]\n"
+"\n"
+"apt-cache er eit lågnivåverktøy som vert brukt til å handtera\n"
+"binærmellomlageret til APT, og til å henta informasjon frå det.\n"
+"\n"
+"Kommandoar:\n"
+" add - Legg ei fil til i kjeldelageret.\n"
+" gencaches - Bygg opp lagera for både pakkane og kjeldekoden.\n"
+" showpkg - Vis overordna informasjon om ein enkelt pakke.\n"
+" showsrc - Vis data om kjeldekoden.\n"
+" stats - Vis ein enkel statistikk.\n"
+" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n"
+" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n"
+" unmet - Vis krav som ikkje er oppfylte.\n"
+" search - Søk gjennom pakkelista etter eit regulært uttrykk.\n"
+" show - Vis ei oversikt over pakken.\n"
+" depends - Vis rå informasjon om krava til ein pakke.\n"
+" rdepends - Vis baklengs kravinformasjon for ein pakke\n"
+" pkgnames - Vis ei liste over alle pakkenamn.\n"
+" dotty - Lag pakkegrafar for GraphVis.\n"
+" xvcg - Lag pakkegrafar for xvcg\n"
+" policy - Vis regelinnstillingar.\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten.\n"
+" -p=? Pakkelageret.\n"
+" -s=? Kjeldekodelageret.\n"
+" -q Ikkje vis framdriftsmålaren.\n"
+" -i Vis berre viktige krav for unmet-kommandoen.\n"
+" -c=? Les denne oppsettsfila.\n"
+" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
+"Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n"
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Koplar til %s (%s)"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:93
+#, fuzzy
+msgid "Please insert a Disc in the drive and press enter"
+msgstr ""
+"Skifte av medum: Set inn plata merkt\n"
+" «%s»\n"
+"i stasjonen «%s» og trykk Enter.\n"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr ""
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Ikkje parvise argument"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Bruk: apt-config [val] kommando\n"
+"\n"
+"apt-config er eit enkelt verktøy for å lesa oppsettsfila til APT.\n"
+"\n"
+"Kommandoar:\n"
+" shell - Skalmodus\n"
+" dump - Vis oppsettet\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten.\n"
+" -c=? Les denne oppsettsfila.\n"
+" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#: methods/connect.cc:108
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Klarte ikkje kopla til %s:%s (%s)."
+msgid "%s not a valid DEB package."
+msgstr "%s er ingen gyldig DEB-pakke."
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Koplar til %s"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
+"\n"
+"apt-extracttemplates er eit verktøy for å henta ut informasjon om\n"
+"oppsett og malar frå Debian-pakkar.\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten\n"
+" -t Vel mellombels katalog\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#: methods/connect.cc:167
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Klarte ikkje slå opp «%s»"
+msgid "Unable to write to %s"
+msgstr "Klarte ikkje skriva til %s"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Mellombels feil ved oppslag av «%s»"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Finn ikkje debconf-versjonen. Er debconf installert?"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista over pakkeutvidingar er for lang"
-#: methods/connect.cc:223
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Klarte ikkje kopla til %s %s:"
-
-#: methods/gpgv.cc:65
-#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Klarte ikkje slå opp «%s»"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
+msgid "Error processing directory %s"
+msgstr "Feil ved lesing av katalogen %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista over kjeldeutvidingar er for lang"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr ""
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Feil ved skriving av topptekst til innhaldsfila"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr ""
+msgid "Error processing contents %s"
+msgstr "Feil ved lesing av %s"
-#: methods/gpgv.cc:249
+#: ftparchive/apt-ftparchive.cc:553
#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
-
-#: methods/gpgv.cc:256
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
msgstr ""
+"Bruk: apt-ftparchive [val] kommando\n"
+"Kommandoar: packages binærstig [overstyringsfil [stigprefiks]]\n"
+" sources kjeldesti [overstyringsfil [stiprefiks]]\n"
+" contents sti\n"
+" generate config [grupper]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive opprettar indeksfiler for Debian-arkiv. Mange ulike\n"
+"måtar kan brukast, frå heilautomatiske til funksjonelle erstattingar\n"
+"for dpkg-scanpackages og dpkg-scansources.\n"
+"\n"
+"apt-ftparchive opprettar Package-filer frå eit tre med .debs-filer.\n"
+"Package-fila inneheld alle kontrollfelta frå kvar pakke i tillegg til\n"
+"MD5-nøkkel og filstorleik. Du kan bruka ei overstyringsfil for å tvinga\n"
+"gjennom verdiar for prioritet og kategori.\n"
+"\n"
+"apt-ftparchive kan på same måten oppretta Sources-filer frå eit tre\n"
+"med .dscs-filer. Du kan bruka ei overstyringsfil med --source-override.\n"
+"\n"
+"Kommandoane «packages» og «sources» skal køyrast i rota av katalogtreet.\n"
+"Binærstien skal peika til toppkatalogen i det rekursive søket, og\n"
+"overstyringsfila skal innehalda innstillingar for overstyring.\n"
+"Stiprefikset vert lagt til filnamnfelta dersom det er oppgjeve. Her er\n"
+"eit døme på bruk i Debian-arkivet:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten.\n"
+" --md5 Styrer MD5-genereringa.\n"
+" -s=? Overstyringsfil for kjeldekode.\n"
+" -q Stille.\n"
+" -d=? Vel ein anna mellomlagerdatabase.\n"
+" --no-delink Bruk avlusingsmodus med delinking.\n"
+" --contents Styrer opprettinga av innhaldsfila.\n"
+" -c=? Les denne oppsettsfila.\n"
+" -o=? Set ei vilkårleg innstilling."
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Klarte ikkje få status til %s"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ingen utval passa"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Klarte ikkje opna røyr for %s"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Enkelte filer manglar i pakkefilgruppa %s"
-#: methods/gzip.cc:109
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Read error from %s process"
-msgstr "Lesefeil frå %s-prosessen"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Ventar på hovud"
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Databasen er øydelagd. Filnamnet er endra til %s.old"
-#: methods/http.cc:523
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Fekk ei enkel hovudlinje over %u teikn"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Øydelagd hovudlinje"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP-tenaren sende eit ugyldig svarhovud"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud"
-
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud"
-
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Denne HTTP-tenaren har øydelagd støtte for område"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Ukjend datoformat"
-
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Utvalet mislukkast"
-
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Tidsavbrot på sambandet"
-
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Feil ved skriving til utfil"
-
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Feil ved skriving til fil"
-
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Feil ved skriving til fila"
-
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
-
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Feil ved lesing frå tenaren"
-
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Øydelagde hovuddata"
-
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Sambandet mislukkast"
-
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Intern feil"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB er for gammal, forsøkjer å oppgradere %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kan ikkje utføra mmap på ei tom fil"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/cachedb.cc:77
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Klarte ikkje laga mmap av %lu byte"
+msgid "Unable to open DB file %s: %s"
+msgstr "Klarte ikkje opna DB-fila %s: %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Selection %s not found"
-msgstr "Fann ikkje utvalet %s"
+msgid "Failed to stat %s"
+msgstr "Klarte ikkje få status til %s"
+
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arkivet har ingen kontrollpost"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Klarte ikkje få peikar"
+
+#: ftparchive/writer.cc:76
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Ukjend typeforkorting: «%c»"
+msgid "W: Unable to read directory %s\n"
+msgstr "Å: Klarte ikkje lesa katalogen %s\n"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Opnar oppsettsfila %s"
+msgid "W: Unable to stat %s\n"
+msgstr "Å: Klarte ikkje få status til %s\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linja %d er for lang (maks %d)"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F: "
-#: apt-pkg/contrib/configuration.cc:606
-#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaksfeil %s:%u: Blokka startar utan namn."
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "Å: "
+
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Det er feil ved fila "
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaksfeil %s:%u: Misforma tagg"
+msgid "Failed to resolve %s"
+msgstr "Klarte ikkje slå opp %s"
+
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Treklatring mislukkast"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien"
+msgid "Failed to open %s"
+msgstr "Klarte ikkje opna %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det øvste nivået"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer"
+msgid "Failed to readlink %s"
+msgstr "Klarte ikkje lesa lenkja %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaksfeil %s:%u: Inkludert herifrå"
+msgid "Failed to unlink %s"
+msgstr "Klarte ikkje oppheva lenkja %s"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Klarte ikkje lenkja %s til %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink-grensa på %sB er nådd.\n"
+
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arkivet har ikkje noko pakkefelt"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Unable to read %s"
-msgstr "Klarte ikkje lesa %s"
+msgid " %s has no override entry\n"
+msgstr " %s har inga overstyringsoppføring\n"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s ... Feil"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s-vedlikehaldaren er %s, ikkje %s\n"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " %s har inga overstyringsoppføring\n"
+
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " %s har inga overstyringsoppføring\n"
+
+#: ftparchive/contents.cc:321
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s ... Ferdig"
+msgid "Internal error, could not locate member %s"
+msgstr "Intern feil, fann ikkje medlemmen %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Klarte ikkje tildela minne"
+
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)."
+msgid "Unable to open %s"
+msgstr "Klarte ikkje opna %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Skjønar ikkje kommandolinjevalet %s"
+msgid "Malformed override %s line %lu #1"
+msgstr "Misforma overstyring %s linje %lu #1"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Kommandolinjevalet %s er ikkje boolsk"
+msgid "Malformed override %s line %lu #2"
+msgstr "Misforma overstyring %s linje %lu #2"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Valet %s krev eit argument."
+msgid "Malformed override %s line %lu #3"
+msgstr "Misforma overstyring %s linje %lu #3"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>."
+msgid "Failed to read the override file %s"
+msgstr "Klarte ikkje lesa overstyringsfila %s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Ukjend komprimeringsalgoritme %s"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Valet «%s» er for langt"
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimert utdata %s treng eit komprimeringssett"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen"
+
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Klarte ikkje oppretta FILE*"
+
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Klarte ikkje gafla"
+
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Komprimer barn"
+
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Skjønar ikkje %s. Prøv «true» eller «false»."
+msgid "Internal error, failed to create %s"
+msgstr "Intern feil, klarte ikkje oppretta %s"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Klarte ikkje oppretta underprosessen IPC"
+
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Klarte ikkje køyra komprimeringa "
+
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekomprimering"
+
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Klarte ikkje kommunisera med underprosess/fil"
+
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Klarte ikkje lesa under utrekning av MD5"
+
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Invalid operation %s"
-msgstr "Ugyldig operasjon %s"
+msgid "Problem unlinking %s"
+msgstr "Problem ved oppheving av lenkje til %s"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Klarte ikkje få status til monteringspunktet %s"
+msgid "Failed to rename %s to %s"
+msgstr "Klarte ikkje endra namnet på %s til %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Unable to change to %s"
-msgstr "Klarte ikkje byta til %s"
+msgid "Regex compilation error - %s"
+msgstr "Regex-kompileringsfeil - %s"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Klarte ikkje få status til CD-ROM"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Følgjande pakkar har krav som ikkje er oppfylte:"
-#: apt-pkg/contrib/fileutl.cc:82
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s"
+msgid "but %s is installed"
+msgstr "men %s er installert"
-#: apt-pkg/contrib/fileutl.cc:87
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Klarte ikkje opna låsefila %s"
+msgid "but %s is to be installed"
+msgstr "men %s skal installerast"
+
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "men lèt seg ikkje installera"
+
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "men er ein virtuell pakke"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "men er ikkje installert"
+
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "men skal ikkje installerast"
+
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " eller"
+
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Dei følgjande NYE pakkane vil verta installerte:"
+
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Dei følgjande pakkane vil verta FJERNA:"
+
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Dei følgjande pakkane er haldne tilbake:"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Dei følgjande pakkane vil verta oppgraderte:"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Klarte ikkje låsa %s"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Venta på %s, men den fanst ikkje"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Underprosessen %s mottok ein segmenteringsfeil."
+msgid "%s (due to %s) "
+msgstr "%s (fordi %s) "
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Underprosessen %s returnerte ein feilkode (%u)"
+#: cmdline/apt-get.cc:550
+#, fuzzy
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n"
+"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Underprosessen %s avslutta uventa"
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu oppgraderte, %lu nyleg installerte, "
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Could not open file %s"
-msgstr "Klarte ikkje opna fila %s"
+msgid "%lu reinstalled, "
+msgstr "%lu installerte på nytt, "
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "lese, har framleis %lu att å lesa, men ingen att"
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderte, "
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje"
-
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem ved låsing av fila"
-
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problem ved oppheving av lenkje til fila"
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem ved synkronisering av fila"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ikkje fullstendig installerte eller fjerna.\n"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Tomt pakkelager"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Rettar på krav ..."
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Pakkelagerfila er øydelagd"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " mislukkast."
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Versjonen til pakkelagerfila er ikkje kompatibel"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Klarte ikkje retta på krav"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "APT støttar ikkje versjonssystemet «%s»"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Klarte ikkje minimera oppgraderingsmengda"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Pakkelageret er bygd for ein annan arkitektur"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Ferdig"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Krav"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Forkrav"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Forslag"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Tilrådingar"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr ""
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Konflikt"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Installer desse pakkane utan verifikasjon [j/N]? "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Byter ut"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Nokre pakkar kunne ikkje bli autentisert"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Foreldar"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "viktig"
-
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "påkravd"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Nokre pakkar må fjernast, men fjerning er slått av."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "vanleg"
+#: cmdline/apt-get.cc:793
+#, fuzzy
+msgid "Internal error, Ordering didn't finish"
+msgstr "Intern feil ved tilleggjing av avleiing"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "valfri"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Klarte ikkje låsa nedlastingskatalogen"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "tillegg"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Kjeldelista kan ikkje lesast."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Byggjer kravtre"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandidatversjonar"
+#: cmdline/apt-get.cc:839
+#, c-format
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Må henta %sB/%sB med arkiv.\n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Genererer kravforhold"
+#: cmdline/apt-get.cc:842
+#, c-format
+msgid "Need to get %sB of archives.\n"
+msgstr "Må henta %sB med arkiv.\n"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Flettar informasjon om tilgjengelege pakkar"
+#: cmdline/apt-get.cc:847
+#, 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"
-#: apt-pkg/depcache.cc:219
+#: cmdline/apt-get.cc:850
#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Klarte ikkje opna %s"
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n"
-#: apt-pkg/depcache.cc:225
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Klarte ikkje skriva fila %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Du har ikkje nok ledig plass i %s"
-#: apt-pkg/tagfile.cc:102
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Klarte ikkje tolka pakkefila %s (1)"
+msgid "You don't have enough free space in %s."
+msgstr "Du har ikkje nok ledig plass i %s."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Klarte ikkje tolka pakkefila %s (2)"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling."
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Misforma linje %lu i kjeldelista %s (URI)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, gjer som eg seier!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Misforma linje %lu i kjeldelista %s (dist)"
+#: cmdline/apt-get.cc:891
+#, 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-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Avbryt."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)"
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Vil du halda fram [J/n]? "
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
+msgid "Failed to fetch %s %s\n"
+msgstr "Klarte ikkje henta %s %s\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Opnar %s"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Klarte ikkje henta nokre av filene"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Nedlastinga er ferdig i nedlastingsmodus"
+
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller «--"
+"fix-missing»."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linja %u i kjeldelista %s er for lang."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Misforma linje %u i kjeldelista %s (type)"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Klarte ikkje retta opp manglande pakkar."
-#: apt-pkg/sourcelist.cc:240
-#, fuzzy, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Avbryt installasjon."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Merk, vel %s i staden for %s\n"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-"Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige "
-"pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men "
-"om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-"
-"LoopBreak»."
+"Hoppar over %s, for den er installert frå før og ikkje sett til "
+"oppgradering.\n"
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indeksfiltypen «%s» er ikkje støtta"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pakken %s er ein virtuell pakke, tilbydd av:\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installert]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Du må velja ein som skal installerast."
+
+#: cmdline/apt-get.cc:1114
+#, c-format
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"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 ""
-"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar "
-"som er haldne tilbake."
+"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"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Dei følgjande pakkane kan brukast i staden:"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Listekatalogen %spartial manglar."
+msgid "Package %s has no installation candidate"
+msgstr "Det finst ingen installasjonskandidat for pakken %s"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Arkivkatalogen %spartial manglar."
+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"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr ""
-
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Les filliste"
+msgid "%s is already the newest version.\n"
+msgstr "Den nyaste versjonen av %s er installert frå før.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Finn ikkje metodedrivaren %s."
+msgid "Release '%s' for '%s' was not found"
+msgstr "Fann ikkje utgåva «%s» av «%s»"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoden %s starta ikkje rett"
-
-#: apt-pkg/acquire-worker.cc:398
-#, fuzzy, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr ""
-"Skifte av medum: Set inn plata merkt\n"
-" «%s»\n"
-"i stasjonen «%s» og trykk Enter.\n"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Fann ikkje versjonen «%s» av «%s»"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Pakkesystemet «%s» er ikkje støtta"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Vald versjon %s (%s) for %s\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Oppdateringskommandoen tek ingen argument"
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Klarte ikkje få status på %s."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Klarte ikkje låsa listekatalogen"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Kjeldelista kan ikkje lesast."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila."
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Dei følgjande NYE pakkane vil verta installerte:"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»."
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Skjønar ikkje spikringstypen %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Ingen prioritet (eller null) oppgitt for spiker"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Intern feil. AllUpgrade øydelagde noko"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Intern feil. AllUpgrade øydelagde noko"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Fann ikkje pakken %s"
+
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Feil ved behandling av %s (NewPackage)"
+msgid "Couldn't find package %s"
+msgstr "Fann ikkje pakken %s"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Feil ved behandling av %s (UsePackage1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Merk, vel %s i staden for regex «%s»\n"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Feil ved behandling av %s (NewFileVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "men %s skal installerast"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Feil ved behandling av %s (UsePackage2)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Feil ved behandling av %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Feil ved behandling av %s (NewVersion1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n"
+"valt ein umogleg situasjon. Dersom du brukar den ustabile utgåva av\n"
+"distribusjonen, kan det òg henda at nokre av pakkane som trengst ikkje\n"
+"er laga enno eller at dei framleis ligg i «Incoming»."
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Feil ved behandling av %s (UsePackage3)"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"Sidan du berre har valt ein enkel operasjon, er det svært sannsynleg at\n"
+"pakken rett og slett ikkje lèt seg installera. I såfall bør du senda\n"
+"feilmelding."
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Feil ved behandling av %s (NewVersion2)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Øydelagde pakkar"
+
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
+
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Føreslåtte pakkar:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Tilrådde pakkar"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Feil ved behandling av %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Reknar ut oppgradering ... "
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera."
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Mislukkast"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Ferdig"
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Intern feil. AllUpgrade øydelagde noko"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Jøss, du har overgått talet på krav som APT kan handtera."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Feil ved behandling av %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Finn ingen kjeldepakke for %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
+#, 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:2203
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Feil ved behandling av %s (CollectFileProvides)"
+msgid "You don't have enough free space in %s"
+msgstr "Du har ikkje nok ledig plass i %s"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Fann ikkje pakken %s %s ved behandling av filkrav"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Klarte ikkje få status på kjeldepakkelista %s"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Må henta %sB med kjeldekodearkiv.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Les pakkelister"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Hent kjeldekode %s\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Samlar inn filtilbod"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Klarte ikkje henta nokre av arkiva."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Klarte ikkje skriva til %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IU-feil ved lagring av kjeldelager"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Utpakkingskommandoen «%s» mislukkast.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "endring av namn mislukkast, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr ""
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Feil MD5-sum"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Byggjekommandoen «%s» mislukkast.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Feil MD5-sum"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Barneprosessen mislukkast"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr ""
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv "
-"(fordi arkitekturen manglar)."
+msgid "Unable to get build-dependency information for %s"
+msgstr "Klarte ikkje henta byggjekrav for %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv."
+msgid "%s has no build depends.\n"
+msgstr "%s har ingen byggjekrav.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, 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:1391
-msgid "Size mismatch"
-msgstr "Feil storleik"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk"
+"%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"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Brukar monteringspunktet %s for CD-ROM\n"
-"Monterer CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identifiserer ... "
+"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon "
+"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Lagra etikett: %s \n"
+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"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Brukar monteringspunktet %s for CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Avmonterer CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Ventar på disk ...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Monterer CD-ROM ...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Leitar etter indeksfiler på disken ...\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Klarte ikkje oppfylla kravet %s for %s: %s"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Byggjekrav for %s kunne ikkje tilfredstillast."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Lagra etikett: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Klarte ikkje behandla byggjekrava"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Støtta modular:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Disken vert kalla: \n"
-"«%s»\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopierer pakkelister ..."
+"Bruk: apt-get [val] kommando\n"
+" apt-get [val] install|remove pakke1 [pakke2 ...]\n"
+" apt-get [val] source pakke1 [pakke2 ...]\n"
+"\n"
+"apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n"
+"ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n"
+"«install».\n"
+"\n"
+"Kommandoar:\n"
+" update - Hent nye pakkelister.\n"
+" upgrade - Utfør ei oppgradering.\n"
+" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo."
+"deb)).\n"
+" remove - Fjern pakkar.\n"
+" source - Last ned kjeldekode frå arkiva.\n"
+" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n"
+" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n"
+" dselect-upgrade - Følg råda frå «dselect».\n"
+" clean - Slett nedlasta arkivfiler.\n"
+" autoclean - Slett gamle, nedlasta arkivfiler.\n"
+" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten.\n"
+" -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n"
+" -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n"
+" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n"
+" -s Skuggespel, berre simulering av handlingane.\n"
+" -y Svar ja på alle spørsmål utan å stoppa.\n"
+" -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n"
+" -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n"
+" -u Ta med oppgraderte pakkar i lista som vert vist.\n"
+" -b Bygg pakken etter at kjeldekoden er henta.\n"
+" -V Vis fullstendige versjonsnummer.\n"
+" -c=? Les denne innstillingsfila.\n"
+" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
+"Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n"
+"til apt-get(8), sources.list(5) og apt.conf(5).\n"
+" APT har superku-krefter.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Skriv ny kjeldeliste\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Treff "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Kjeldelisteoppføringar for denne disken er:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Hent:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Avmonterer CD-ROM ..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Skreiv %i postar.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Feil "
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Skreiv %i postar med %i manglande filer.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Henta %sB på %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Skreiv %i postar med %i filer som ikkje passa\n"
+msgid " [Working]"
+msgstr " [Arbeider]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Listekatalogen %spartial manglar."
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, fuzzy, c-format
-msgid "Preparing %s"
-msgstr "Opnar %s"
-
-#: apt-pkg/deb/dpkgpm.cc:573
-#, fuzzy, c-format
-msgid "Unpacking %s"
-msgstr "Opnar %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, fuzzy, c-format
-msgid "Preparing to configure %s"
-msgstr "Opnar oppsettsfila %s"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, fuzzy, c-format
-msgid "Configuring %s"
-msgstr "Koplar til %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Feil ved lesing av katalogen %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Skifte av medum: Set inn plata merkt\n"
+" «%s»\n"
+"i stasjonen «%s» og trykk Enter.\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr " Installert: "
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Ukjend pakkeoppslag"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Bruk: apt-sortpkgs [val] fil1 [fil2 ...]\n"
+"\n"
+"apt-sortpkgs er eit enkelt verktøy for å sortera pakkefiler. Innstillinga\n"
+"-s vert brukt til å velja kva for ein type fil det er snakk om.\n"
+"\n"
+"Val:\n"
+" -h Vis denne hjelpeteksten.\n"
+" -s Bruk kjeldefilsortering.\n"
+" -c=? Les denne oppsettsfila.\n"
+" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Opnar %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, fuzzy, c-format
-msgid "Removed %s"
-msgstr "Tilrådingar"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Dårleg standardinnstilling"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, fuzzy, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Opnar oppsettsfila %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Trykk Enter for å halda fram."
-#: apt-pkg/deb/dpkgpm.cc:601
-#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Klarte ikkje fjerna %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Klarte ikkje opna fila %s"
+#: dselect/install:102
+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"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Klarte ikkje oppretta IPC-røyr til underprosessen"
+#: dselect/install:103
+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."
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Sambandet vart uventa stengd"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Flettar informasjon om tilgjengelege pakkar"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Avleiingsstigen er for lang"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Klarte ikkje endra namnet på %s til %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Klarte ikkje lesa %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgstr ""
"Infokatalogen og den mellombelse katalogen må vera på det same filsystemet"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Les pakkelister"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Invalid line in the diversion file: %s"
msgstr "Ugyldig linje i avleiingsfila: %s"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Intern feil ved tilleggjing av avleiing"
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Intern feil ved tilleggjing av avleiing"
+
+#: apt-inst/deb/dpkgdb.cc:379
+msgid "The pkg cache must be initialized first"
+msgstr "Pakkelageret må først klargjerast"
+
+#: apt-inst/deb/dpkgdb.cc:439
+#, c-format
+msgid "Failed to find a Package: header, offset %lu"
+msgstr "Fann ikkje «Package:»-linja, offset %lu"
+
+#: apt-inst/deb/dpkgdb.cc:461
+#, c-format
+msgid "Bad ConfFile section in the status file. Offset %lu"
+msgstr "Øydelagd «ConfFile»-del i statusfila. Offset %lu"
+
+#: apt-inst/deb/dpkgdb.cc:466
+#, c-format
+msgid "Error parsing MD5. Offset %lu"
+msgstr "Feil ved tolking av MD5. Offset %lu"
+
+#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
+#, c-format
+msgid "This is not a valid DEB archive, missing '%s' member"
+msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen"
+
+#: apt-inst/deb/debfile.cc:50
+#, 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:110
+#, c-format
+msgid "Couldn't change to %s"
+msgstr "Klarte ikkje byta til %s"
+
+#: apt-inst/deb/debfile.cc:140
+msgid "Internal error, could not locate member"
+msgstr "Intern feil, fann ikkje medlem"
+
+#: apt-inst/deb/debfile.cc:173
+msgid "Failed to locate a valid control file"
+msgstr "Fann ikkje noka gyldig kontrollfil"
+
+#: apt-inst/deb/debfile.cc:258
+msgid "Unparsable control file"
+msgstr "Kontrollfila kan ikkje tolkast"
+
+#: methods/cdrom.cc:114
+#, c-format
+msgid "Unable to read the cdrom database %s"
+msgstr "Klarte ikkje lesa CD-ROM-databasen %s"
+
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Bruk «apt-cdrom» for å gjera denne CD-plata tilgjengeleg for APT. Du kan "
+"ikkje bruka «apt-get update» til å leggja til nye CD-plater."
+
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Feil CD-plate"
+
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr ""
+"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk."
+
+#: methods/cdrom.cc:171
+#, fuzzy
+msgid "Disk not found."
+msgstr "Fann ikkje fila"
+
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fann ikkje fila"
+
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Klarte ikkje få status"
+
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Klarte ikkje setja endringstidspunkt"
+
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //"
+
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Loggar inn"
-#: apt-inst/deb/dpkgdb.cc:379
-msgid "The pkg cache must be initialized first"
-msgstr "Pakkelageret må først klargjerast"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Klarte ikkje avgjera namnet på motparten"
-#: apt-inst/deb/dpkgdb.cc:439
-#, c-format
-msgid "Failed to find a Package: header, offset %lu"
-msgstr "Fann ikkje «Package:»-linja, offset %lu"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Klarte ikkje avgjera det lokale namnet"
-#: apt-inst/deb/dpkgdb.cc:461
+#: methods/ftp.cc:204 methods/ftp.cc:232
#, c-format
-msgid "Bad ConfFile section in the status file. Offset %lu"
-msgstr "Øydelagd «ConfFile»-del i statusfila. Offset %lu"
+msgid "The server refused the connection and said: %s"
+msgstr "Tenaren nekta oss å kopla til, og sa: %s"
-#: apt-inst/deb/dpkgdb.cc:466
+#: methods/ftp.cc:210
#, c-format
-msgid "Error parsing MD5. Offset %lu"
-msgstr "Feil ved tolking av MD5. Offset %lu"
+msgid "USER failed, server said: %s"
+msgstr "USER mislukkast, tenaren sa: %s"
-#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
+#: methods/ftp.cc:217
#, c-format
-msgid "This is not a valid DEB archive, missing '%s' member"
-msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar «%s»-medlemmen"
+msgid "PASS failed, server said: %s"
+msgstr "PASS mislukkast, tenaren sa: %s"
-#: apt-inst/deb/debfile.cc:50
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
msgstr ""
-"Dette er ikkje eit gyldig DEB-arkiv, det har ingen «%s» eller «%s»-medlem"
+"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet "
+"«Acquire::ftp::ProxyLogin» er tomt."
-#: apt-inst/deb/debfile.cc:110
+#: methods/ftp.cc:265
#, c-format
-msgid "Couldn't change to %s"
-msgstr "Klarte ikkje byta til %s"
-
-#: apt-inst/deb/debfile.cc:140
-msgid "Internal error, could not locate member"
-msgstr "Intern feil, fann ikkje medlem"
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s"
-#: apt-inst/deb/debfile.cc:173
-msgid "Failed to locate a valid control file"
-msgstr "Fann ikkje noka gyldig kontrollfil"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE mislukkast, tenaren sa: %s"
-#: apt-inst/deb/debfile.cc:258
-msgid "Unparsable control file"
-msgstr "Kontrollfila kan ikkje tolkast"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Tidsavbrot på samband"
-#: cmdline/apt-cache.cc:143
-#, 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"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Tenaren lukka sambandet"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Finn ikkje pakken %s"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Lesefeil"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Tal på pakkenamn: "
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Eit svar flaumde over bufferen."
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Vanlege pakkar: "
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokolløydeleggjing"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Reine virtuelle pakkar: "
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Skrivefeil"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Enkle virtuelle pakkar: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Klarte ikkje oppretta sokkel"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Samansette virtuelle pakkar: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Manglar: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Klarte ikkje kopla til passiv sokkel."
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Tal på einskildversjonar: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Tal på einskildversjonar: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Klarte ikkje binda til sokkel"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Tal på krav: "
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Klarte ikkje lytta til sokkel"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Tal på ver./fil-forhold: "
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Klarte ikkje avgjera sokkelnamnet"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Tal på ver./fil-forhold: "
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Klarte ikkje senda PORT-kommandoen"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Tal på tilbyr-forhold: "
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Ukjend adressefamilie %u (AF_*)"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Tal på strengar med jokerteikn: "
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT mislukkast, tenaren sa: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Storleik på kravs- og versjonsrom: "
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Tidsavbrot på tilkopling til datasokkel"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Slingringsmon: "
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Klarte ikkje godta tilkoplinga"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Brukt plass i alt: "
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem ved oppretting av nøkkel for fil"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:877
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Pakkefila %s er ute av takt."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Klarte ikkje henta fila, tenaren sa «%s»"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Du må oppgi nøyaktig eitt mnster"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Tidsavbrot på datasokkelen"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Fann ingen pakkar"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Dataoverføringa mislukkast, tenaren sa «%s»"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Pakkefiler:"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Spørjing"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Klarte ikkje starta "
-#: cmdline/apt-cache.cc:1532
+#: methods/connect.cc:64
#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+msgid "Connecting to %s (%s)"
+msgstr "Koplar til %s (%s)"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Spikra pakkar:"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ikkje funne)"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installert: "
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)."
+
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ingen)"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Klarte ikkje kopla til %s:%s (%s)."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidat: "
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Koplar til %s"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pakke spikra til: "
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Klarte ikkje slå opp «%s»"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versjonstabell:"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Mellombels feil ved oppslag av «%s»"
-#: cmdline/apt-cache.cc:1618
+#: methods/connect.cc:176
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Klarte ikkje kopla til %s %s:"
+
+#: methods/gpgv.cc:65
#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s %s kompilert på %s %s\n"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Klarte ikkje slå opp «%s»"
-#: cmdline/apt-cache.cc:1721
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Bruk: apt-cache [val] kommando\n"
-" apt-cache [val] add fil1 [fil2 ...]\n"
-" apt-cache [val] showpkg pakke1 [pakke2 ...]\n"
-" apt-cache [val] showsrc pakke1 [pakke2 ...]\n"
-"\n"
-"apt-cache er eit lågnivåverktøy som vert brukt til å handtera\n"
-"binærmellomlageret til APT, og til å henta informasjon frå det.\n"
-"\n"
-"Kommandoar:\n"
-" add - Legg ei fil til i kjeldelageret.\n"
-" gencaches - Bygg opp lagera for både pakkane og kjeldekoden.\n"
-" showpkg - Vis overordna informasjon om ein enkelt pakke.\n"
-" showsrc - Vis data om kjeldekoden.\n"
-" stats - Vis ein enkel statistikk.\n"
-" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n"
-" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n"
-" unmet - Vis krav som ikkje er oppfylte.\n"
-" search - Søk gjennom pakkelista etter eit regulært uttrykk.\n"
-" show - Vis ei oversikt over pakken.\n"
-" depends - Vis rå informasjon om krava til ein pakke.\n"
-" rdepends - Vis baklengs kravinformasjon for ein pakke\n"
-" pkgnames - Vis ei liste over alle pakkenamn.\n"
-" dotty - Lag pakkegrafar for GraphVis.\n"
-" xvcg - Lag pakkegrafar for xvcg\n"
-" policy - Vis regelinnstillingar.\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten.\n"
-" -p=? Pakkelageret.\n"
-" -s=? Kjeldekodelageret.\n"
-" -q Ikkje vis framdriftsmålaren.\n"
-" -i Vis berre viktige krav for unmet-kommandoen.\n"
-" -c=? Les denne oppsettsfila.\n"
-" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-"Du finn meir informasjon på manualsidene apt-cache(8) og apt.conf(5).\n"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
msgstr ""
-#: cmdline/apt-cdrom.cc:93
-#, fuzzy
-msgid "Please insert a Disc in the drive and press enter"
+#: methods/gpgv.cc:214
+#, c-format
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
msgstr ""
-"Skifte av medum: Set inn plata merkt\n"
-" «%s»\n"
-"i stasjonen «%s» og trykk Enter.\n"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
msgstr ""
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Ikkje parvise argument"
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
-#: cmdline/apt-config.cc:76
+#: methods/gpgv.cc:257
msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-"Bruk: apt-config [val] kommando\n"
-"\n"
-"apt-config er eit enkelt verktøy for å lesa oppsettsfila til APT.\n"
-"\n"
-"Kommandoar:\n"
-" shell - Skalmodus\n"
-" dump - Vis oppsettet\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten.\n"
-" -c=? Les denne oppsettsfila.\n"
-" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/gzip.cc:64
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s er ingen gyldig DEB-pakke."
+msgid "Couldn't open pipe for %s"
+msgstr "Klarte ikkje opna røyr for %s"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Bruk: apt-extracttemplates fil1 [fil2 ...]\n"
-"\n"
-"apt-extracttemplates er eit verktøy for å henta ut informasjon om\n"
-"oppsett og malar frå Debian-pakkar.\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten\n"
-" -t Vel mellombels katalog\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Lesefeil frå %s-prosessen"
+
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Ventar på hovud"
+
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Fekk ei enkel hovudlinje over %u teikn"
+
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Øydelagd hovudlinje"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP-tenaren sende eit ugyldig svarhovud"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP-tenaren sende eit ugyldig «Content-Length»-hovud"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP-tenaren sende eit ugyldig «Content-Range»-hovud"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Denne HTTP-tenaren har øydelagd støtte for område"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Ukjend datoformat"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Utvalet mislukkast"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Tidsavbrot på sambandet"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Feil ved skriving til utfil"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Feil ved skriving til fil"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Feil ved skriving til fila"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Finn ikkje debconf-versjonen. Er debconf installert?"
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista over pakkeutvidingar er for lang"
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Feil ved lesing frå tenaren"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Øydelagde hovuddata"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Sambandet mislukkast"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Intern feil"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kan ikkje utføra mmap på ei tom fil"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Error processing directory %s"
-msgstr "Feil ved lesing av katalogen %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Klarte ikkje laga mmap av %lu byte"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista over kjeldeutvidingar er for lang"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Fann ikkje utvalet %s"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Feil ved skriving av topptekst til innhaldsfila"
+#: apt-pkg/contrib/configuration.cc:439
+#, c-format
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Ukjend typeforkorting: «%c»"
-#: ftparchive/apt-ftparchive.cc:398
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Error processing contents %s"
-msgstr "Feil ved lesing av %s"
+msgid "Opening configuration file %s"
+msgstr "Opnar oppsettsfila %s"
-#: ftparchive/apt-ftparchive.cc:553
-#, fuzzy
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Bruk: apt-ftparchive [val] kommando\n"
-"Kommandoar: packages binærstig [overstyringsfil [stigprefiks]]\n"
-" sources kjeldesti [overstyringsfil [stiprefiks]]\n"
-" contents sti\n"
-" generate config [grupper]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive opprettar indeksfiler for Debian-arkiv. Mange ulike\n"
-"måtar kan brukast, frå heilautomatiske til funksjonelle erstattingar\n"
-"for dpkg-scanpackages og dpkg-scansources.\n"
-"\n"
-"apt-ftparchive opprettar Package-filer frå eit tre med .debs-filer.\n"
-"Package-fila inneheld alle kontrollfelta frå kvar pakke i tillegg til\n"
-"MD5-nøkkel og filstorleik. Du kan bruka ei overstyringsfil for å tvinga\n"
-"gjennom verdiar for prioritet og kategori.\n"
-"\n"
-"apt-ftparchive kan på same måten oppretta Sources-filer frå eit tre\n"
-"med .dscs-filer. Du kan bruka ei overstyringsfil med --source-override.\n"
-"\n"
-"Kommandoane «packages» og «sources» skal køyrast i rota av katalogtreet.\n"
-"Binærstien skal peika til toppkatalogen i det rekursive søket, og\n"
-"overstyringsfila skal innehalda innstillingar for overstyring.\n"
-"Stiprefikset vert lagt til filnamnfelta dersom det er oppgjeve. Her er\n"
-"eit døme på bruk i Debian-arkivet:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten.\n"
-" --md5 Styrer MD5-genereringa.\n"
-" -s=? Overstyringsfil for kjeldekode.\n"
-" -q Stille.\n"
-" -d=? Vel ein anna mellomlagerdatabase.\n"
-" --no-delink Bruk avlusingsmodus med delinking.\n"
-" --contents Styrer opprettinga av innhaldsfila.\n"
-" -c=? Les denne oppsettsfila.\n"
-" -o=? Set ei vilkårleg innstilling."
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linja %d er for lang (maks %d)"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Ingen utval passa"
+#: apt-pkg/contrib/configuration.cc:611
+#, c-format
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaksfeil %s:%u: Blokka startar utan namn."
-#: ftparchive/apt-ftparchive.cc:832
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Enkelte filer manglar i pakkefilgruppa %s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaksfeil %s:%u: Misforma tagg"
-#: ftparchive/cachedb.cc:43
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Databasen er øydelagd. Filnamnet er endra til %s.old"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien"
-#: ftparchive/cachedb.cc:61
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB er for gammal, forsøkjer å oppgradere %s"
+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"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
+#: apt-pkg/contrib/configuration.cc:694
+#, c-format
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer"
-#: ftparchive/cachedb.cc:77
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Klarte ikkje opna DB-fila %s: %s"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaksfeil %s:%u: Inkludert herifrå"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arkivet har ingen kontrollpost"
+#: apt-pkg/contrib/configuration.cc:707
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Klarte ikkje få peikar"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila"
-#: ftparchive/writer.cc:76
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "Å: Klarte ikkje lesa katalogen %s\n"
+msgid "%c%s... Error!"
+msgstr "%c%s ... Feil"
-#: ftparchive/writer.cc:81
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "Å: Klarte ikkje få status til %s\n"
+msgid "%c%s... Done"
+msgstr "%c%s ... Ferdig"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F: "
+#: apt-pkg/contrib/cmndline.cc:77
+#, c-format
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Kjenner ikkje kommandolinjevalet «%c» (frå %s)."
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "Å: "
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Skjønar ikkje kommandolinjevalet %s"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Det er feil ved fila "
+#: apt-pkg/contrib/cmndline.cc:124
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr "Kommandolinjevalet %s er ikkje boolsk"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Klarte ikkje slå opp %s"
+msgid "Option %s requires an argument."
+msgstr "Valet %s krev eit argument."
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Treklatring mislukkast"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =<verdi>."
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Failed to open %s"
-msgstr "Klarte ikkje opna %s"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Option '%s' is too long"
+msgstr "Valet «%s» er for langt"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Klarte ikkje lesa lenkja %s"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Skjønar ikkje %s. Prøv «true» eller «false»."
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Klarte ikkje oppheva lenkja %s"
+msgid "Invalid operation %s"
+msgstr "Ugyldig operasjon %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Klarte ikkje lenkja %s til %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Klarte ikkje få status til monteringspunktet %s"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink-grensa på %sB er nådd.\n"
+msgid "Unable to change to %s"
+msgstr "Klarte ikkje byta til %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arkivet har ikkje noko pakkefelt"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Klarte ikkje få status til CD-ROM"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s har inga overstyringsoppføring\n"
+msgid "Not using locking for read only lock file %s"
+msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %s"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/fileutl.cc:87
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s-vedlikehaldaren er %s, ikkje %s\n"
-
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s har inga overstyringsoppføring\n"
-
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s har inga overstyringsoppføring\n"
+msgid "Could not open lock file %s"
+msgstr "Klarte ikkje opna låsefila %s"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Intern feil, fann ikkje medlemmen %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Klarte ikkje tildela minne"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Klarte ikkje låsa %s"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "Unable to open %s"
-msgstr "Klarte ikkje opna %s"
+msgid "Waited for %s but it wasn't there"
+msgstr "Venta på %s, men den fanst ikkje"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Misforma overstyring %s linje %lu #1"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Underprosessen %s mottok ein segmenteringsfeil."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Misforma overstyring %s linje %lu #2"
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Underprosessen %s returnerte ein feilkode (%u)"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Misforma overstyring %s linje %lu #3"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Underprosessen %s avslutta uventa"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Klarte ikkje lesa overstyringsfila %s"
+msgid "Could not open file %s"
+msgstr "Klarte ikkje opna fila %s"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Ukjend komprimeringsalgoritme %s"
+msgid "read, still have %lu to read but none left"
+msgstr "lese, har framleis %lu att å lesa, men ingen att"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/fileutl.cc:522
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimert utdata %s treng eit komprimeringssett"
+msgid "write, still have %lu to write but couldn't"
+msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Klarte ikkje oppretta FILE*"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem ved låsing av fila"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Klarte ikkje gafla"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problem ved oppheving av lenkje til fila"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Komprimer barn"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem ved synkronisering av fila"
-#: ftparchive/multicompress.cc:234
-#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Intern feil, klarte ikkje oppretta %s"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Tomt pakkelager"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Klarte ikkje oppretta underprosessen IPC"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Pakkelagerfila er øydelagd"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Klarte ikkje køyra komprimeringa "
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Versjonen til pakkelagerfila er ikkje kompatibel"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekomprimering"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "APT støttar ikkje versjonssystemet «%s»"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Klarte ikkje kommunisera med underprosess/fil"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Pakkelageret er bygd for ein annan arkitektur"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Klarte ikkje lesa under utrekning av MD5"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Krav"
-#: ftparchive/multicompress.cc:471
-#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem ved oppheving av lenkje til %s"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Forkrav"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Forslag"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Regex-kompileringsfeil - %s"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Tilrådingar"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Følgjande pakkar har krav som ikkje er oppfylte:"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Konflikt"
-#: cmdline/apt-get.cc:328
-#, c-format
-msgid "but %s is installed"
-msgstr "men %s er installert"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Byter ut"
-#: cmdline/apt-get.cc:330
-#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s skal installerast"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Foreldar"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "men lèt seg ikkje installera"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "men er ein virtuell pakke"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "viktig"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "men er ikkje installert"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "påkravd"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "men skal ikkje installerast"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "vanleg"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " eller"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "valfri"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Dei følgjande NYE pakkane vil verta installerte:"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "tillegg"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Dei følgjande pakkane vil verta FJERNA:"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Byggjer kravtre"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Dei følgjande pakkane er haldne tilbake:"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandidatversjonar"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Dei følgjande pakkane vil verta oppgraderte:"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Genererer kravforhold"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Flettar informasjon om tilgjengelege pakkar"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Klarte ikkje opna %s"
+
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Klarte ikkje skriva fila %s"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/tagfile.cc:102
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (fordi %s) "
+msgid "Unable to parse package file %s (1)"
+msgstr "Klarte ikkje tolka pakkefila %s (1)"
-#: cmdline/apt-get.cc:547
-#, fuzzy
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ÅTVARING: Dei følgjande nødvendige pakkane vil verta fjerna.\n"
-"Dette bør IKKJE gjerast utan at du er fullstendig klar over kva du gjer!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Klarte ikkje tolka pakkefila %s (2)"
-#: cmdline/apt-get.cc:578
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu oppgraderte, %lu nyleg installerte, "
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Misforma linje %lu i kjeldelista %s (URI)"
-#: cmdline/apt-get.cc:582
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu installerte på nytt, "
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Misforma linje %lu i kjeldelista %s (dist)"
-#: cmdline/apt-get.cc:584
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderte, "
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)"
-#: cmdline/apt-get.cc:586
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)"
-#: cmdline/apt-get.cc:590
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ikkje fullstendig installerte eller fjerna.\n"
-
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Rettar på krav ..."
-
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " mislukkast."
-
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Klarte ikkje retta på krav"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Klarte ikkje minimera oppgraderingsmengda"
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "Opnar %s"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Ferdig"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
+msgstr "Linja %u i kjeldelista %s er for lang."
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Misforma linje %u i kjeldelista %s (type)"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»."
+#: apt-pkg/sourcelist.cc:240
+#, fuzzy, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typen «%s» er ukjend i linja %u i kjeldelista %s"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane."
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
+"Denne installasjonen vil verta nøydd til å mellombels fjerna den nødvendige "
+"pakken %s på grunn av ei konflikt/forkrav-løkkje. Dette er ofte uheldig, men "
+"om du verkeleg vil gjera det, kan du bruka innstillinga «APT::Force-"
+"LoopBreak»."
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Installer desse pakkane utan verifikasjon [j/N]? "
-
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Nokre pakkar kunne ikkje bli autentisert"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Indeksfiltypen «%s» er ikkje støtta"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Det oppstod problem, og «-y» vart brukt utan «--force-yes»"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje."
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
+"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar "
+"som er haldne tilbake."
-#: cmdline/apt-get.cc:779
-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:790
-#, fuzzy
-msgid "Internal error, Ordering didn't finish"
-msgstr "Intern feil ved tilleggjing av avleiing"
-
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Klarte ikkje låsa nedlastingskatalogen"
-
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
msgstr ""
+"Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake."
-#: cmdline/apt-get.cc:836
-#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Må henta %sB/%sB med arkiv.\n"
-
-#: cmdline/apt-get.cc:839
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Må henta %sB med arkiv.\n"
+msgid "Lists directory %spartial is missing."
+msgstr "Listekatalogen %spartial manglar."
-#: cmdline/apt-get.cc:844
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n"
+msgid "Archive directory %spartial is missing."
+msgstr "Arkivkatalogen %spartial manglar."
-#: cmdline/apt-get.cc:847
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr ""
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/acquire.cc:829
#, fuzzy, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Du har ikkje nok ledig plass i %s"
+msgid "Retrieving file %li of %li"
+msgstr "Les filliste"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/acquire-worker.cc:110
#, 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:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling."
+msgid "The method driver %s could not be found."
+msgstr "Finn ikkje metodedrivaren %s."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, gjer som eg seier!"
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Metoden %s starta ikkje rett"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/acquire-worker.cc:398
#, fuzzy, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
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"
-" ?] "
+"Skifte av medum: Set inn plata merkt\n"
+" «%s»\n"
+"i stasjonen «%s» og trykk Enter.\n"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Avbryt."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Pakkesystemet «%s» er ikkje støtta"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Vil du halda fram [J/n]? "
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Klarte ikkje henta %s %s\n"
+msgid "Unable to stat %s."
+msgstr "Klarte ikkje få status på %s."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Klarte ikkje henta nokre av filene"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Du må leggja nokre kjelde-URI-ar i fila sources.list."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Nedlastinga er ferdig i nedlastingsmodus"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-"Klarte ikkje henta nokre av arkiva. Du kan prøva med «apt-get update» eller "
-"«--fix-missing»."
-
-#: cmdline/apt-get.cc:1005
-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:1010
-msgid "Unable to correct missing packages."
-msgstr "Klarte ikkje retta opp manglande pakkar."
+"Du vil kanskje prøva å retta på desse problema ved å køyra «apt-get update»."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Avbryt installasjon."
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Merk, vel %s i staden for %s\n"
+msgid "Did not understand pin type %s"
+msgstr "Skjønar ikkje spikringstypen %s"
-#: cmdline/apt-get.cc:1055
-#, 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"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Ingen prioritet (eller null) oppgitt for spiker"
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/pkgcachegen.cc:115
#, 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:1096
-msgid " [Installed]"
-msgstr " [Installert]"
-
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Du må velja ein som skal installerast."
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Feil ved behandling av %s (NewPackage)"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:130
#, 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:1125
-msgid "However the following packages replace it:"
-msgstr "Dei følgjande pakkane kan brukast i staden:"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Feil ved behandling av %s (UsePackage1)"
-#: cmdline/apt-get.cc:1128
-#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Det finst ingen installasjonskandidat for pakken %s"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Feil ved behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "%s kan ikkje installerast på nytt, for pakken kan ikkje lastast ned.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Feil ved behandling av %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Den nyaste versjonen av %s er installert frå før.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Feil ved behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Fann ikkje utgåva «%s» av «%s»"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Feil ved behandling av %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Fann ikkje versjonen «%s» av «%s»"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Feil ved behandling av %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Vald versjon %s (%s) for %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Oppdateringskommandoen tek ingen argument"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Feil ved behandling av %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Klarte ikkje låsa listekatalogen"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Feil ved behandling av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Jøss, du har overgått talet på pakkenamn som APT kan handtera."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Dei følgjande NYE pakkane vil verta installerte:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Jøss, du har overgått talet på versjonar som APT kan handtera."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Jøss, du har overgått talet på krav som APT kan handtera."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Feil ved behandling av %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Følgjande informasjon kan hjelpa med å løysa situasjonen:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Feil ved behandling av %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Intern feil. AllUpgrade øydelagde noko"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Fann ikkje pakken %s %s ved behandling av filkrav"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Intern feil. AllUpgrade øydelagde noko"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Klarte ikkje få status på kjeldepakkelista %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Fann ikkje pakken %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Samlar inn filtilbod"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Fann ikkje pakken %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IU-feil ved lagring av kjeldelager"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Merk, vel %s i staden for regex «%s»\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "endring av namn mislukkast, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "men %s skal installerast"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Feil MD5-sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»."
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Feil MD5-sum"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja "
-"ei løysing)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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»."
+"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv "
+"(fordi arkitekturen manglar)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Sidan du berre har valt ein enkel operasjon, er det svært sannsynleg at\n"
-"pakken rett og slett ikkje lèt seg installera. I såfall bør du senda\n"
-"feilmelding."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Øydelagde pakkar"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Dei følgjande tilleggspakkane vil verta installerte:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Føreslåtte pakkar:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Tilrådde pakkar"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Reknar ut oppgradering ... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Ferdig"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-#, fuzzy
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Intern feil. AllUpgrade øydelagde noko"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Du må velja minst éin pakke som kjeldekoden skal hentast for"
+"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Finn ingen kjeldepakke for %s"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s."
-#: cmdline/apt-get.cc:2167
-#, 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"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Feil storleik"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Du har ikkje nok ledig plass i %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Brukar monteringspunktet %s for CD-ROM\n"
+"Monterer CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Må henta %sB med kjeldekodearkiv.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identifiserer ... "
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Hent kjeldekode %s\n"
+msgid "Stored label: %s\n"
+msgstr "Lagra etikett: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Klarte ikkje henta nokre av arkiva."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Avmonterer CD-ROM ..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Brukar monteringspunktet %s for CD-ROM\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Utpakkingskommandoen «%s» mislukkast.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Avmonterer CD-ROM\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr ""
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Ventar på disk ...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Byggjekommandoen «%s» mislukkast.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Monterer CD-ROM ...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Barneprosessen mislukkast"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Leitar etter indeksfiler på disken ...\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Klarte ikkje henta byggjekrav for %s"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Lagra etikett: %s \n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s har ingen byggjekrav.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Det er ikkje eit gyldig namn, prøv igjen.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, 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"
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Disken vert kalla: \n"
+"«%s»\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopierer pakkelister ..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Skriv ny kjeldeliste\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Kjeldelisteoppføringar for denne disken er:\n"
+
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon "
-"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava"
+msgid "Wrote %i records.\n"
+msgstr "Skreiv %i postar.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, 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"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Skreiv %i postar med %i manglande filer.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Klarte ikkje oppfylla kravet %s for %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Skreiv %i postar med %i filer som ikkje passa\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Byggjekrav for %s kunne ikkje tilfredstillast."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Klarte ikkje behandla byggjekrava"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Listekatalogen %spartial manglar."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Støtta modular:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, fuzzy, c-format
+msgid "Preparing %s"
+msgstr "Opnar %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Bruk: apt-get [val] kommando\n"
-" apt-get [val] install|remove pakke1 [pakke2 ...]\n"
-" apt-get [val] source pakke1 [pakke2 ...]\n"
-"\n"
-"apt-get er eit enkelt grensesnitt til bruk frå kommandolinja for å lasta\n"
-"ned og installera pakkar. Dei vanlegaste kommandoane er «update» og\n"
-"«install».\n"
-"\n"
-"Kommandoar:\n"
-" update - Hent nye pakkelister.\n"
-" upgrade - Utfør ei oppgradering.\n"
-" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo."
-"deb)).\n"
-" remove - Fjern pakkar.\n"
-" source - Last ned kjeldekode frå arkiva.\n"
-" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n"
-" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n"
-" dselect-upgrade - Følg råda frå «dselect».\n"
-" clean - Slett nedlasta arkivfiler.\n"
-" autoclean - Slett gamle, nedlasta arkivfiler.\n"
-" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten.\n"
-" -q Ikkje vis framdriftsmåtar, for bruk i loggar.\n"
-" -qq Inga tilbakemelding - bortsett frå feilmeldingar.\n"
-" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n"
-" -s Skuggespel, berre simulering av handlingane.\n"
-" -y Svar ja på alle spørsmål utan å stoppa.\n"
-" -f Prøv å halda fram sjølv om integritetskontrollen mislukkast.\n"
-" -m Prøv å halda fram sjølv om nokre pakkar ikkje vert funne.\n"
-" -u Ta med oppgraderte pakkar i lista som vert vist.\n"
-" -b Bygg pakken etter at kjeldekoden er henta.\n"
-" -V Vis fullstendige versjonsnummer.\n"
-" -c=? Les denne innstillingsfila.\n"
-" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-"Du finn meir informasjon og fleire kommandolinjeval på manualsidene\n"
-"til apt-get(8), sources.list(5) og apt.conf(5).\n"
-" APT har superku-krefter.\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, fuzzy, c-format
+msgid "Unpacking %s"
+msgstr "Opnar %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Treff "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, fuzzy, c-format
+msgid "Preparing to configure %s"
+msgstr "Opnar oppsettsfila %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Hent:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, fuzzy, c-format
+msgid "Configuring %s"
+msgstr "Koplar til %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Feil ved lesing av katalogen %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Feil "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr " Installert: "
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Henta %sB på %s (%sB/s)\n"
+msgid "Preparing for removal of %s"
+msgstr ""
-#: cmdline/acqprogress.cc:225
-#, c-format
-msgid " [Working]"
-msgstr " [Arbeider]"
+#: apt-pkg/deb/dpkgpm.cc:618
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Opnar %s"
-#: cmdline/acqprogress.cc:271
-#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Skifte av medum: Set inn plata merkt\n"
-" «%s»\n"
-"i stasjonen «%s» og trykk Enter.\n"
+#: apt-pkg/deb/dpkgpm.cc:619
+#, fuzzy, c-format
+msgid "Removed %s"
+msgstr "Tilrådingar"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Ukjend pakkeoppslag"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, fuzzy, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Opnar oppsettsfila %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Klarte ikkje fjerna %s"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Bruk: apt-sortpkgs [val] fil1 [fil2 ...]\n"
-"\n"
-"apt-sortpkgs er eit enkelt verktøy for å sortera pakkefiler. Innstillinga\n"
-"-s vert brukt til å velja kva for ein type fil det er snakk om.\n"
-"\n"
-"Val:\n"
-" -h Vis denne hjelpeteksten.\n"
-" -s Bruk kjeldefilsortering.\n"
-" -c=? Les denne oppsettsfila.\n"
-" -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Dårleg standardinnstilling"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Klarte ikkje opna fila %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Trykk Enter for å halda fram."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Sambandet vart uventa stengd"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linja %d er for lang (maks %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "sette opp. Dette kan føra til følgjefeil eller feil på grunn av"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Feil ved behandling av %s (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Feil ved behandling av %s (NewFileVer1)"
-#: dselect/install:103
-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."
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Lagra etikett: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Flettar informasjon om tilgjengelege pakkar"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-01-23 15:32+0100\n"
"Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
"Language-Team: Polish <pddp@debian.linux.org.pl>\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Nie mo¿na odczytaæ bazy danych CD-ROM-ów %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Proszê u¿yæ programu apt-cdrom, aby APT móg³ rozpoznaæ tê p³ytê CD. Nowych "
-"p³yt nie mo¿na dodawaæ przy pomocy polecenia apt-get update"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Niew³a¶ciwa p³yta CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Pakiet %s w wersji %s ma niespe³nione zale¿no¶ci:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Nie uda³o siê odmontowaæ CD-ROM-u w %s, byæ mo¿e wci±¿ jest u¿ywany."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Nie odnaleziono dysku."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Nie odnaleziono pliku"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Nie uda³o siê wykonaæ operacji stat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Nie uda³o siê ustawiæ czasu modyfikacji"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Nieprawid³owe URI, lokalne URI nie mog± zaczynaæ siê od //"
+msgid "Unable to locate package %s"
+msgstr "Nie uda³o siê odnale¼æ pakietu %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Rejestrowanie siê"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Liczba nazw pakietów : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Nie mo¿na okre¶liæ nazwy zdalnego systemu"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Zwyk³ych pakietów: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Nie uda³o siê okre¶liæ nazwy lokalnego systemu"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Czysto wirtualnych pakietów: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Serwer odrzuci³ nasze po³±czenie i powiedzia³: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pojedynczych pakietów wirtualnych: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Polecenie USER nie powiod³o siê, serwer powiedzia³: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Mieszanych pakietów wirtualnych: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Polecenie PASS nie powiod³o siê, serwer powiedzia³: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Brakuj±cych: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Okre¶lono serwer po¶rednicz±cy, ale nie okre¶lono skryptu rejestrowania, "
-"Acquire::ftp::ProxyLogin jest puste."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "W sumie ró¿nych wersji: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr ""
-"Polecenie skryptu rejestrowania '%s' nie powiod³o siê, serwer powiedzia³: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "W sumie ró¿nych opisów: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Polecenie TYPE nie powiod³o siê, serwer powiedzia³: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "W sumie zale¿no¶ci: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Przekroczenie czasu po³±czenia"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "W sumie zale¿no¶ci wersja/plik: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Serwer zamkn±³ po³±czenie"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "W sumie zale¿no¶ci opis/plik: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "B³±d odczytu"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "W sumie mapowañ zapewnieñ: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Odpowied¼ przepe³ni³a bufor."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "W sumie dopasowanych napisów: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Naruszenie zasad protoko³u"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Sumaryczny rozmiar obszaru zale¿no¶ci od wersji: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "B³±d zapisu"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Nie uda³o siê utworzyæ gniazda"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Ca³kowity rozmiar: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Nie uda³o siê po³±czyæ gniazda danych, przekroczenie czasu po³±czenia"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Plik pakietu %s jest przestarza³y."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Nie uda³o siê"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Nale¿y podaæ dok³adnie jeden wzór"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Nie uda³o siê po³±czyæ pasywnego gniazda."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nie znaleziono ¿adnych pakietów"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo nie by³o w stanie uzyskaæ s³uchaj±cego gniazda"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Plików pakietów:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Nie uda³o siê przy³±czyæ gniazda"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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."
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Nie uda³o siê s³uchaæ na gnie¼dzie"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Nie uda³o siê okre¶liæ nazwy gniazda"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Przypiête pakiety:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Nie mo¿na wys³aæ polecenia PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nieznaleziony)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Nieznana rodzina adresów %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Zainstalowana: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Polecenie EPRT nie powiod³o siê, serwer powiedzia³: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(brak)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Przekroczony czas po³±czenia gniazda danych"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandyduj±ca: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Nie uda³o siê przyj±æ po³±czenia"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Sposób przypiêcia: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Nie uda³o siê obliczyæ skrótu pliku"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabela wersji:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Nie mo¿na pobraæ pliku, serwer powiedzia³ '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Przekroczony czas oczekiwania na dane"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s dla %s %s skompilowany %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Nie uda³o siê przes³aæ danych, serwer powiedzia³ '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Info"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Nie mo¿na wywo³aæ "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Pod³±czanie do %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Nie uda³o siê utworzyæ gniazda dla %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Nie uda³o siê zainicjalizowaæ po³±czenia z %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Nie uda³o siê po³±czyæ z %s:%s (%s), przekroczenie czasu po³±czenia"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"U¿ycie: apt-cache [opcje] polecenie\n"
+" apt-cache [opcje] add plik1 [plik2 ...]\n"
+" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n"
+" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n"
+"\n"
+"apt-cache to niskopoziomowe narzêdzie s³u¿±ce do manipulowania\n"
+"binarnymi plikami magazynów podrêcznych APT-a, oraz do pobierania\n"
+"z nich informacji.\n"
+"\n"
+"Polecenia:\n"
+" add - Dodaj plik pakietów do magazynu podrêcznego\n"
+" gencaches - Zbuduj magazyn podrêczny pakietów i ¼róde³\n"
+" showpkg - Poka¿ ogólne informacje na temat pojedynczego pakietu\n"
+" showsrc - Poka¿ informacje na temat ¼róde³\n"
+" stats - Poka¿ podstawowe statystyki\n"
+" dump - Poka¿ ca³y plik w skrótowej formie\n"
+" dumpavail - Wypisz plik dostêpnych pakietów na standardowe wyj¶cie\n"
+" unmet - Poka¿ niespe³nione zale¿no¶ci\n"
+" search - Przeszukaj listê pakietów wed³ug wyra¿enia regularnego\n"
+" show - Poka¿ czytelny rekord dla danego pakietu\n"
+" depends - Poka¿ surowe informacje o zale¿no¶ciach danego pakietu\n"
+" rdepends - Poka¿ informacje o zale¿no¶ciach OD danego pakietu\n"
+" pkgnames - Poka¿ listê nazw wszystkich pakietów\n"
+" dotty - Wygeneruj grafy pakietów dla programu GraphVis\n"
+" xvcg - Wygeneruj grafy pakietów dla programu xvcg\n"
+" policy - Poka¿ ustawienia polityki\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy.\n"
+" -p=? Podrêczny magazyn pakietów.\n"
+" -s=? Podrêczny magazyn ¼róde³.\n"
+" -q Wy³±cz wska¼nik postêpu.\n"
+" -i Poka¿ tylko wa¿ne zale¿no¶ci przy poleceniu unmet.\n"
+" -c=? Czytaj ten plik konfiguracyjny.\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
+"Wiêcej informacji mo¿na znale¼æ na stronach podrêcznika apt-cache(8)\n"
+"oraz apt.conf(5).\n"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Nie uda³o siê po³±czyæ z %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Proszê wprowadziæ nazwê dla tej p³yty, np 'Debian 2.1r1 Disk 1'"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "£±czenie z %s"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Proszê w³o¿yæ dysk do napêdu i nacisn±æ enter"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nie uda³o siê przet³umaczyæ nazwy '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Powtórz ten proces dla reszty p³yt."
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Tymczasowy b³±d przy t³umaczeniu '%s'"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenty nie s± w parach"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Co¶ niegodziwego sta³o siê przy t³umaczeniu '%s:%s' (%i)"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"U¿ycie: apt-config [opcje] polecenie\n"
+"\n"
+"apt-config to proste narzêdzie do czytania pliku konfiguracyjnego APT\n"
+"\n"
+"Polecenia:\n"
+" shell - Tryb pow³oki\n"
+" dump - Poka¿ konfiguracjê\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy.\n"
+" -c=? Czytaj ten plik konfiguracyjny.\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
-#: methods/connect.cc:223
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Nie uda³o siê po³±czyæ z %s %s:"
-
-#: methods/gpgv.cc:65
-#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Nie uda³o siê przet³umaczyæ nazwy '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Lista argumentów Acquire::gpgv::Options zbyt d³uga. Wychodzimy."
+msgid "%s not a valid DEB package."
+msgstr "%s nie jest prawid³owym pakietem DEB."
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"B³±d wewnêtrzny: Prawid³owa sygnatura, ale nie nie uda³o siê ustaliæ "
-"jejodcisku?!"
+"U¿ycie: apt-extracttemplates plik1 [plik2 ...]\n"
+"\n"
+"apt-extracttemplates to narzêdzie s³u¿±ce do pobierania informacji\n"
+"i konfiguracji i szablonach z pakietów Debiana.\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy.\n"
+" -t Ustaw katalog tymczasowy\n"
+" -c=? Czytaj ten plik konfiguracyjny.\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Napotkano przynajmniej jedn± nieprawid³ow± sygnaturê."
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
+#, c-format
+msgid "Unable to write to %s"
+msgstr "Nie uda³o siê pisaæ do %s"
-#: methods/gpgv.cc:213
-#, fuzzy, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr " by zweryfikowaæ sygnaturê (czy gnupg jest zainstalowane?)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Nie uda³o siê pobraæ wersji debconf. Czy debconf jest zainstalowany?"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Nieznany b³±d podczas uruchamiania gpgv"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista rozszerzeñ pakietów jest zbyt d³uga"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Nastêpuj±ce sygnatury by³y b³êdne:\n"
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#, c-format
+msgid "Error processing directory %s"
+msgstr "B³±d przetwarzania katalogu %s"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Nastêpuj±ce sygnatury nie mog³y zostaæ zweryfikowane z powodu braku klucza "
-"publicznego:\n"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista rozszerzeñ pakietów ¼ród³owych jest zbyt d³uga"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Nie uda³o siê wykonaæ operacji stat na %s"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "B³±d przy zapisywaniu nag³ówka do pliku zawarto¶ci"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Nie uda³o siê otworzyæ potoku dla %s"
+msgid "Error processing contents %s"
+msgstr "B³±d podczas przetwarzania zawarto¶ci %s"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "B³±d odczytu z procesu %s"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"U¿ycie: apt-ftparchive [opcje] polecenie\n"
+"Polecenia: packages ¶cie¿ka_do_binariów [plik_override [przedrostek]]\n"
+" sources ¶cie¿ka_do_¼róde³ [plik_override [przedrostek]]\n"
+" contents ¶cie¿ka\n"
+" release ¶cie¿ka\n"
+" generate konfiguracja [grupy]\n"
+" clean konfiguracja\n"
+"\n"
+"apt-ftparchive generuje pliki indeksów dla archiwów Debiana. Obs³uguje\n"
+"ró¿ne rodzaje generowania, od w pe³ni zautomatyzowanych po funkcjonalne\n"
+"zamienniki programów dpkg-scanpackages i dpkg-scansources.\n"
+"\n"
+"apt-ftparchive generuje pliki Package na postawie drzewa plików .deb.\n"
+"Wygenerowany plik zawiera pola kontrolne wszystkich pakietów oraz ich\n"
+"skróty MD5 i rozmiary. Obs³ugiwany jest plik override, pozwalaj±cy okre¶liæ\n"
+"priorytet i dzia³ pakietu.\n"
+"\n"
+"apt-ftparchive podobnie generuje pliki Sources na podstawie drzewa plików\n"
+".dsc. Przy pomocy opcji --source-override mo¿na podaæ plik override dla\n"
+"pakietów ¼ród³owych.\n"
+"\n"
+"Polecenia 'packages' i 'sources' powinny byæ wykonywane w katalogu g³ównym\n"
+"drzewa. `¶cie¿ka_do_binariów' powinna wskazywaæ na katalog, od którego "
+"zacznie\n"
+"siê wyszukiwanie, a plik override powinien zawieraæ odpowiednie flagi.\n"
+"Przedrostek (o ile zosta³ podany) jest dodawany przed ¶cie¿k± do ka¿dego\n"
+"pliku. Przyk³adowe u¿ycie, z archiwum Debiana:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy\n"
+" --md5 Generuj sumy kontrolne MD5\n"
+" -s=? Plik override dla ¼róde³\n"
+" -q `Ciche' dzia³anie\n"
+" -d=? Opcjonalna podrêczna baza danych\n"
+" --no-delink W³±cz tryb diagnostyczny od³±czania\n"
+" --contents Generuj plik zawarto¶ci (Contents)\n"
+" -c=? Czytaj ten plik konfiguracyjny\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Oczekiwanie na nag³ówki"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nie dopasowano ¿adnej nazwy"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Otrzymano pojedyncz± liniê nag³ówka o d³ugo¶ci ponad %u znaków"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Nieprawid³owa linia nag³ówka"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek odpowiedzi"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek Content-Length"
-
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek Content-Range"
-
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Ten serwer HTTP nieprawid³owo obs³uguje zakresy (ranges)"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Brakuje pewnych plików w grupie plików pakietów `%s'"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Nieznany format daty"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Baza by³a uszkodzona, plik zosta³ przeniesiony do %s.old"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Operacja select nie powiod³a siê"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Baza jest przestarza³a, próbujê zaktualizowaæ %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Przekroczenie czasu po³±czenia"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "B³±d przy pisaniu do pliku wyj¶ciowego"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Nie uda³o siê otworzyæ pliku DB %s: %s"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "B³±d przy pisaniu do pliku"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Nie uda³o siê wykonaæ operacji stat na %s"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "B³±d przy pisaniu do pliku"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archiwum nie posiada rekordu control"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "B³±d czytania z serwera: Zdalna strona zamknê³a po³±czenie"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Nie uda³o siê pobraæ kursora"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "B³±d czytania z serwera"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Nie uda³o siê odczytaæ katalogu %s\n"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "B³êdne dane nag³ówka"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Nie mo¿na wykonaæ operacji stat na %s\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Po³±czenie nie uda³o siê"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "B³±d wewnêtrzny"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Nie mo¿na wykonaæ mmap na pustym pliku"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: B³êdy odnosz± siê do pliku "
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Nie uda³o siê wykonaæ mmap %lu bajtów"
+msgid "Failed to resolve %s"
+msgstr "Nie uda³o siê przet³umaczyæ nazwy %s"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "Nie odnaleziono wyboru %s"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Przej¶cie po drzewie nie powiod³o siê"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Nierozpoznany skrót typu: '%c'"
+msgid "Failed to open %s"
+msgstr "Nie uda³o siê otworzyæ %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Otwieranie pliku konfiguracyjnego %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linia %d jest zbyt d³uga (max %d)"
+msgid " DeLink %s [%s]\n"
+msgstr " Od³±czenie %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "B³±d sk³adniowy %s:%u: Blok nie zaczyna siê nazw±."
+msgid "Failed to readlink %s"
+msgstr "Nie uda³o siê odczytaæ dowi±zania %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "B³±d sk³adniowy %s:%u: B³êdny znacznik"
+msgid "Failed to unlink %s"
+msgstr "Nie uda³o siê usun±æ %s"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "B³±d sk³adniowy %s:%u: Po warto¶ci wystêpuj± ¶mieci"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Nie uda³o siê dowi±zaæ %s do %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:283
#, 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 poziomie najwy¿szym"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Osi±gniêto ograniczenie od³±czania %sB.\n"
-#: apt-pkg/contrib/configuration.cc:689
-#, 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"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archiwum nie posiada³o pola pakietu"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "B³±d sk³adniowy %s:%u: W³±czony tutaj"
+msgid " %s has no override entry\n"
+msgstr " %s nie posiada wpisu w pliku override\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, 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:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "B³±d sk³adniowy %s:%u: ¦mieci na koñcu pliku"
-
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Nie mo¿na czytaæ %s"
+msgid " %s maintainer is %s not %s\n"
+msgstr " opiekunem %s jest %s, a nie %s\n"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... B³±d!"
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " %s nie posiada wpisu w pliku override\n"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Gotowe"
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " %s nie posiada wpisu w pliku override\n"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Opcja linii poleceñ '%c' [z %s] jest nieznana."
+msgid "Internal error, could not locate member %s"
+msgstr "B³±d wewnêtrzny, nie uda³o siê odnale¼æ sk³adnika %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Niezrozumia³a opcja linii poleceñ %s"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Nie uda³o siê zaalokowaæ pamiêci"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Opcja linii poleceñ %s nie jest typu boolean"
+msgid "Unable to open %s"
+msgstr "Nie mo¿na otworzyæ %s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Opcja %s wymaga argumentu."
+msgid "Malformed override %s line %lu #1"
+msgstr "B³êdna linia %2$lu #1 pliku override %1$s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawieraæ =<warto¶æ>."
+msgid "Malformed override %s line %lu #2"
+msgstr "B³êdna linia %2$lu #2 pliku override %1$s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Opcja %s wymaga argumentu typu ca³kowitego, nie '%s'"
+msgid "Malformed override %s line %lu #3"
+msgstr "B³êdna linia %2$lu #3 pliku override %1$s"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opcja '%s' jest zbyt d³uga"
+msgid "Failed to read the override file %s"
+msgstr "Nie uda³o siê czytaæ pliku override %s"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Znaczenie %s jest nieznane, spróbuj true albo false."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Nieznany algorytm kompresji '%s'"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Invalid operation %s"
-msgstr "Nieprawid³owa operacja %s"
+msgid "Compressed output %s needs a compression set"
+msgstr "Skompresowany plik wynikowy %s wymaga podania kompresji"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Nie uda³o siê wykonaæ operacji stat na punkcie montowania %s"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Nie uda³o siê utworzyæ potoku IPC do podprocesu"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Nie uda³o siê przej¶æ do %s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Nie uda³o siê utworzyæ obiektu FILE*"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Nie uda³o siê wykonaæ operacji stat na CDROM-ie"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Nie uda³o siê utworzyæ procesu potomnego"
-#: apt-pkg/contrib/fileutl.cc:82
-#, 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"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Potomny proces kompresuj±cy"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Nie uda³o siê otworzyæ pliku blokady %s"
+msgid "Internal error, failed to create %s"
+msgstr "B³±d wewnêtrzny, nie uda³o siê utworzyæ %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, 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"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Nie uda³o siê utworzyæ IPC z podprocesem"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Nie uda³o siê uzyskaæ blokady %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Nie uda³o siê uruchomiæ kompresora "
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Oczekiwano na proces %s, ale nie by³o go"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekompresor"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Podproces %s spowodowa³ naruszenie segmentacji."
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Zawiod³a operacja IO na pliku/podprocesie"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Podproces %s zwróci³ kod b³êdu (%u)"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Nie uda³o siê czytanie w czasie liczenia skrótu MD5"
-#: apt-pkg/contrib/fileutl.cc:392
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Podproces %s zakoñczy³ siê niespodziewanie"
+msgid "Problem unlinking %s"
+msgstr "Problem przy usuwaniu %s"
-#: apt-pkg/contrib/fileutl.cc:436
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open file %s"
-msgstr "Nie uda³o siê otworzyæ pliku %s"
+msgid "Failed to rename %s to %s"
+msgstr "Nie uda³o siê zmieniæ nazwy %s na %s"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "nale¿a³o przeczytaæ jeszcze %lu, ale nic nie zosta³o"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "T"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "nale¿a³o zapisaæ jeszcze %lu, ale nie uda³o siê to"
+msgid "Regex compilation error - %s"
+msgstr "B³±d kompilacji wyra¿enia regularnego - %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem przy zamykaniu pliku"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Nastêpuj±ce pakiety maj± niespe³nione zale¿no¶ci:"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problem przy usuwaniu pliku"
+#: cmdline/apt-get.cc:331
+#, c-format
+msgid "but %s is installed"
+msgstr "ale %s jest zainstalowany"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem przy zapisywaniu pliku na dysk"
+#: cmdline/apt-get.cc:333
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ale %s ma zostaæ zainstalowany"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Pusty magazyn podrêczny pakietów"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ale nie da siê go zainstalowaæ"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Magazyn podrêczny pakietów jest uszkodzony"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ale jest pakietem wirtualnym"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Magazyn podrêczny pakietów jest w niezgodnej wersji"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ale nie jest zainstalowany"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Ta wersja APT nie obs³uguje systemu wersji '%s'"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ale nie zostanie zainstalowany"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Ten magazyn podrêczny pakietów zosta³ zbudowany dla innej architektury"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " lub"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Wymaga"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Zostan± zainstalowane nastêpuj±ce NOWE pakiety:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "PreWymaga"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Nastêpuj±ce pakiety zostan± USUNIÊTE:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Sugeruje"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Nastêpuj±ce pakiety zosta³y zatrzymane:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Poleca"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Nastêpuj±ce pakiety zostan± zaktualizowane:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Jest w konflikcie z"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Zostan± zainstalowane STARE wersje nastêpuj±cych pakietów:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Zastêpuje"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Zostan± zmienione nastêpuj±ce zatrzymane pakiety:"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Czyni zbêdnym"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (z powodu %s) "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:550
+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 powinno siê tego robiæ, chyba ¿e dok³adnie wiesz, co robisz!"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "wa¿ny"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizowanych, %lu nowo instalowanych, "
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "wymagany"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu przeinstalowywanych, "
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standardowy"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu cofniêtych wersji, "
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcjonalny"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu usuwanych i %lu nieaktualizowanych.\n"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "dodatkowy"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu nie w pe³ni zainstalowanych lub usuniêtych.\n"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Budowanie drzewa zale¿no¶ci"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Naprawianie zale¿no¶ci..."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandyduj±ce wersje"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " nie uda³o siê."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generowanie zale¿no¶ci"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Nie uda³o siê naprawiæ zale¿no¶ci"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "£±czenie informacji o dostêpnych pakietach"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Nie uda³o siê zminimalizowaæ zbioru aktualizacji"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Nie uda³o siê otworzyæ %s"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Gotowe"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Nie uda³o siê zapisaæ pliku %s"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Nale¿y uruchomiæ `apt-get -f install', aby je naprawiæ."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Nie uda³o siê zanalizowaæ pliku pakietu %s (1)"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Niespe³nione zale¿no¶ci. Spróbuj u¿yæ -f."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Nie uda³o siê zanalizowaæ pliku pakietu %s (2)"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "UWAGA: Nastêpuj±ce pakiety nie mog± zostaæ zweryfikowane!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (URI)"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Ostrze¿enie uwierzytelniania zignorowano.\n"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (dystrybucja)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Zainstalowaæ te pakiety bez weryfikacji [t/N]? "
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (analiza URI)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Niektóre pakiety nie mog³y zostaæ zweryfikowane"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (bezwzglêdna dystrybucja)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "By³y problemy, a u¿yto -y bez --force-yes"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (analiza dystrybucji)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "B³±d wewnêtrzny, InstallPackages u¿yto z zepsutymi pakietami!"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Otwieranie %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pakiety powinny zostaæ usuniête, ale Remove jest wy³±czone."
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linia %u w li¶cie ¼róde³ %s jest zbyt d³uga."
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "B³±d wewnêtrzny, sortowanie niezakoñczone"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Nieprawid³owa linia %u w li¶cie ¼róde³ %s (typ)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Nie uda³o siê zablokowaæ katalogu pobierania"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Nie uda³o siê odczytaæ list ¼róde³."
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Dziwne.. rozmiary siê nie zgadzaj±, zg³o¶ pod apt@packages.debian.org"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typ '%s' jest nieznany w linii %u listy ¼róde³ %s"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Konieczne pobranie %sB/%sB archiwów.\n"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Nieprawid³owa linia %u w li¶cie ¼róde³ %s (identyfikator producenta)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Konieczne pobranie %sB archiwów.\n"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po rozpakowaniu zostanie dodatkowo u¿yte %sB miejsca na dysku.\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po rozpakowaniu zostanie zwolnione %sB miejsca na dysku.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
-msgstr ""
-"To uruchomienie programu bêdzie wymaga³o tymczasowego usuniêcia istotnego "
-"pakietu %s z powodu pêtli konfliktów/pre-zale¿no¶ci. Czêsto nie oznacza to "
-"nic dobrego, ale je¶li naprawdê chcesz to zrobiæ, w³±cz opcjê APT::Force-"
-"LoopBreak."
+msgid "Couldn't determine free space in %s"
+msgstr "Nie uda³o siê ustaliæ ilo¶ci wolnego miejsca w %s"
-#: apt-pkg/pkgrecords.cc:32
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Plik indeksu typu '%s' nie jest obs³ugiwany"
+msgid "You don't have enough free space in %s."
+msgstr "Niestety w %s nie ma wystarczaj±cej ilo¶ci wolnego miejsca."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Nakazano wykonywaæ tylko trywialne operacje, a to nie jest trywialne."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Tak, rób jak mówiê!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Pakiet %s ma zostaæ przeinstalowany, ale nie mo¿na znale¼æ jego archiwum."
+"Zaraz zrobisz co¶ potencjalnie szkodliwego.\n"
+"Aby kontynuowaæ wpisz zdanie '%s'\n"
+" ?] "
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"B³±d, pkgProblemResolver::Resolve zwróci³ b³±d, mo¿e to byæ spowodowane "
-"\"zatrzymanymi\" pakietami."
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Przerwane."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Nie uda³o siê naprawiæ problemów, zatrzymano uszkodzone pakiety."
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Czy chcesz kontynuowaæ [T/n]? "
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Brakuje katalogu list %spartial."
+msgid "Failed to fetch %s %s\n"
+msgstr "Nie uda³o siê pobraæ %s %s\n"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Brakuje katalogu archiwów %spartial."
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Nie uda³o siê pobraæ niektórych plików"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Pobieranie pliku %li z %li (%s pozosta³o)"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Ukoñczono pobieranie w trybie samego pobierania"
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Czytanie listy plików"
+#: cmdline/apt-get.cc:1009
+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, spróbuj uruchomiæ apt-get update "
+"lub u¿yæ opcji --fix-missing"
-#: apt-pkg/acquire-worker.cc:110
-#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Nie uda³o siê odnale¼æ sterownika metody %s."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing i zamienianie no¶ników nie jest obecnie obs³ugiwane"
-#: apt-pkg/acquire-worker.cc:159
-#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoda %s nie uruchomi³a siê poprawnie."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Nie uda³o siê poprawiæ brakuj±cych pakietów."
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Przerywanie instalacji"
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "W³ó¿ do napêdu '%s' dysk o nazwie: '%s' i naci¶nij enter."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Uwaga, wybieranie %s zamiast %s\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "System pakietów '%s' nie jest obs³ugiwany"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"Pomijanie %s, jest ju¿ zainstalowane, a nie zosta³o wybrana aktualizacja.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Nie uda³o siê okre¶liæ odpowiedniego typu systemu pakietów"
+#: cmdline/apt-get.cc:1081
+#, 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"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Unable to stat %s."
-msgstr "Nie uda³o siê wykonaæ operacji stat na pliku %s."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pakiet %s jest pakietem wirtualnym zapewnianym przez:\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Nale¿y dopisaæ jakie¶ URI 'source' do pliku sources.list"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Zainstalowany]"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Nie uda³o siê odczytaæ list ¼róde³."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Nie uda³o siê otworzyæ lub zanalizowaæ zawarto¶ci list pakietów."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Nale¿y uruchomiæ apt-get update aby naprawiæ te problemy."
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Nieprawid³owy rekord w pliku ustawieñ, brak nag³ówka Package"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Nale¿y jednoznacznie wybraæ jeden z nich do instalacji."
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Nierozpoznany typ przypinania %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Brak (lub zerowy) priorytet przypiêcia"
+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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Magazyn podrêczny ma niezgodny system wersji"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Jednak nastêpuj±ce pakiety go zastêpuj±:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Pakiet %s nie ma kandydata do instalacji"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr ""
+"Przeinstalowanie pakietu %s nie jest mo¿liwe, nie mo¿e on zostaæ pobrany.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s jest ju¿ w najnowszej wersji.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Wydanie '%s' dla '%s' nie zosta³o znalezione"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Wersja '%s' dla '%s' nie zosta³a znaleziona"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Wybrano wersjê %s (%s) dla %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Polecenie update nie wymaga ¿adnych argumentów"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Nie uda³o siê zablokowaæ katalogu list"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Och, przekroczono liczbê pakietów, któr± ten APT jest w stanie obs³u¿yæ."
-
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Och, przekroczono liczbê wersji, któr± ten APT jest w stanie obs³u¿yæ."
-
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Och, przekroczono liczbê opisów, któr± ten APT jest w stanie obs³u¿yæ."
+"Nie uda³o siê pobraæ niektórych plików indeksu, zosta³y one zignorowane lub "
+"zosta³a u¿yta ich starsza wersja."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"Och, przekroczono liczbê zale¿no¶ci, któr± ten APT jest w stanie obs³u¿yæ."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (FindPkg)"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Zostan± zainstalowane nastêpuj±ce NOWE pakiety:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Pakiet %s %s nie zosta³ odnaleziony podczas przetwarzania zale¿no¶ci plików"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Nie uda³o siê wykonaæ operacji stat na li¶cie pakietów ¼ród³owych %s"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Czytanie list pakietów"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Nastêpuj±ce informacje mog± pomóc rozpoznaæ sytuacjê:"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Zbieranie zapewnieñ plików"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "B³±d wewnêtrzny, rozwi±zywanie problemów wszystko popsu³o"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Nie uda³o siê pisaæ do %s"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "B³±d wewnêtrzny, AllUpgrade wszystko popsu³o"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "B³±d wej¶cia/wyj¶cia przy zapisywaniu podrêcznego magazynu ¼róde³"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Nie uda³o siê odnale¼æ pakietu %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "nie uda³o siê zmieniæ nazwy, %s (%s -> %s)"
+msgid "Couldn't find package %s"
+msgstr "Nie uda³o siê odnale¼æ pakietu %s"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "B³êdna suma MD5"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Uwaga, wybieranie %s za wyra¿enie '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "B³êdna suma MD5"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ale %s ma zostaæ zainstalowany"
-#: apt-pkg/acquire-item.cc:1091
-#, fuzzy
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Dla nastêpuj±cego identyfikatora klucza brakuje klucza publicznego:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Nale¿y uruchomiæ `apt-get -f install', aby je naprawiæ:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
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)."
+"Niespe³nione zale¿no¶ci. Spróbuj 'apt-get -f install' bez pakietów (lub "
+"podaj rozwi±zanie)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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ê odnale¼æ pliku dla pakietu %s. Mo¿e to oznaczaæ, ¿e trzeba "
-"bêdzie rêcznie naprawiæ ten pakiet."
+"Nie uda³o siê zainstalowaæ niektórych pakietów. Mo¿e to oznaczaæ,\n"
+"¿e za¿±dano niemo¿liwej sytuacji lub u¿ywasz dystrybucji niestabilnej,\n"
+"w której niektóre pakiety nie zosta³y jeszcze utworzone lub przeniesione\n"
+"z katalogu Incoming (\"Przychodz±ce\")."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Pliki indeksu pakietów s± uszkodzone. Brak pola Filename: dla pakietu %s."
+"Poniewa¿ za¿±dno tylko jednej operacji, jest bardzo prawdopodobne, ¿e\n"
+"danego pakietu po prostu nie da siê zainstalowaæ i nale¿y zg³osiæ w nim\n"
+"b³±d."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "B³êdny rozmiar"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pakiety s± b³êdne"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Blok producenta %s nie zawiera odcisku"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Zostan± zainstalowane nastêpuj±ce dodatkowe pakiety:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Wykorzystuê %s jako punkt montowania CD-ROMu\n"
-"Montowanie CD-ROMu\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Sugerowane pakiety:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identyfikacja.. "
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Polecane pakiety:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Etykieta: %s \n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Obliczanie aktualizacji..."
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Wykorzystujê %s jako punkt montowania CD-ROMu\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Nie uda³o siê"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Odmontowanie CD-ROMu\n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Gotowe"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Oczekiwanie na p³ytê...\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "B³±d wewnêtrzny, rozwi±zywanie problemów wszystko popsu³o"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Montowanie CD-ROMu...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Skawnowanie p³yty w poszukiwaniu plików indeksu..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"Znaleziono %i indeksów pakietów, %i indeksów ¼ród³owych, %i indeksów "
-"t³umaczeñ i %i sygnatur\n"
+"Nale¿y podaæ przynajmniej jeden pakiet, dla którego maj± zostaæ pobrane "
+"¼ród³a"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Etykieta: %s \n"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Nie uda³o siê odnale¼æ ¼ród³a dla pakietu %s"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "To nie jest prawid³owa nazwa, spróbuj ponownie.\n"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Pomijanie ju¿ pobranego pliku '%s'\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"P³yta nosi nazwê: \n"
-"'%s'\n"
+msgid "You don't have enough free space in %s"
+msgstr "W %s nie ma wystarczaj±cej ilo¶ci wolnego miejsca"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopiowanie list pakietów..."
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Konieczne pobranie %sB/%sB archiwów ¼róde³.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Zapisywanie nowej listy ¼róde³\n"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Konieczne pobranie %sB archiwów ¼róde³.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "¬ród³a dla tej p³yty to:\n"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Pobierz ¼ród³o %s\n"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Odmontowanie CD-ROMu..."
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Nie uda³o siê pobraæ niektórych archiwów."
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Zapisano %i rekordów.\n"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Pomijanie rozpakowania ju¿ rozpakowanego ¼ród³a w %s\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Zapisano %i rekordów z %i brakuj±cymi plikami.\n"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Polecenie rozpakowania '%s' zawiod³o.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Zapisano %i rekordów z %i niepasuj±cymi plikami\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Sprawd¼ czy pakiet 'dpkg-dev' jest zainstalowany.\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Zapisano %i rekordów z %i brakuj±cymi plikami i %i niepasuj±cymi\n"
+msgid "Build command '%s' failed.\n"
+msgstr "Polecenie budowania '%s' zawiod³o.\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Brakuje katalogu list %spartial."
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Proces potomny zawiód³"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Przygotowanie %s"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Nale¿y podaæ przynajmniej jeden pakiet, dla którego maj± zostaæ pakiety "
+"wymagane do budowania"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unpacking %s"
-msgstr "Rozpakowywanie %s"
+msgid "Unable to get build-dependency information for %s"
+msgstr ""
+"Nie uda³o siê pobraæ informacji o zale¿no¶ciach na czas budowania dla %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Przygotowanie do konfiguracji %s"
+msgid "%s has no build depends.\n"
+msgstr "%s nie ma zale¿no¶ci czasu budowania.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Configuring %s"
-msgstr "Konfigurowanie %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "B³±d przetwarzania katalogu %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"Zale¿no¶æ %s od %s nie mo¿e zostaæ spe³niona, poniewa¿ nie znaleziono "
+"pakietu %s"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Installed %s"
-msgstr " Zainstalowany %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"Zale¿no¶æ %s od %s nie mo¿e zostaæ spe³niona, poniewa¿ ¿adna z dostêpnych "
+"wersji pakietu %s nie ma odpowiedniej wersji"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Przygotowanie do usuniêcia %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Nie uda³o siê spe³niæ zale¿no¶ci %s od %s: Zainstalowany pakiet %s jest zbyt "
+"nowy"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Removing %s"
-msgstr "Usuwanie %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Nie uda³o siê spe³niæ zale¿no¶ci %s od %s: %s"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Removed %s"
-msgstr "Usuniêto %s"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Nie uda³o siê spe³niæ zale¿no¶ci na czas budowania od %s."
-#: apt-pkg/deb/dpkgpm.cc:600
-#, fuzzy, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Przygotowanie do konfiguracji %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Nie uda³o siê przetworzyæ zale¿no¶ci na czas budowania"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Nie uda³o siê usun±æ %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Obs³ugiwane modu³y:"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
+"U¿ycie: apt-get [opcje] polecenie\n"
+" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n"
+" apt-get [opcje] source pakiet1 [pakiet2 ...]\n"
+"\n"
+"apt-get to prosty interfejs linii poleceñ do pobierania i instalacji\n"
+"pakietów. Najczê¶ciej u¿ywane polecenia to update i install.\n"
+"\n"
+"Polecenia:\n"
+" update - Pobierz nowe listy pakietów\n"
+" upgrade - Wykonaj aktualizacjê\n"
+" install - Zainstaluj nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n"
+" remove - Usuñ pakiety\n"
+" source - Pobierz archiwa ¼ród³owe\n"
+" build-dep - Skonfiguruj zale¿no¶ci na czas budowania dla pakietów "
+"¼ród³owych\n"
+" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n"
+" dselect-upgrade - Instaluj wed³ug wyborów dselect\n"
+" clean - Usuñ pobrane pliki archiwów\n"
+" autoclean - Usuñ stare pobrane pliki archiwów\n"
+" check - Sprawd¼, czy wszystkie zale¿no¶ci s± spe³nione\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy.\n"
+" -q Nie pokazuj wska¼nika postêpu (przydatne przy rejestrowaniu "
+"dzia³ania)\n"
+" -qq Nie wypisuj nic oprócz komunikatów b³êdów\n"
+" -d Tylko pobierz - NIE instaluj ani nie rozpakowuj archiwów\n"
+" -s Bez dzia³ania. Wykonaj tylko symulacjê ustawiania kolejno¶ci\n"
+" -y Zak³adaj odpowied¼ \"tak\" na wszystkie pytania, nie pytaj\n"
+" -f Próbuj dzia³aæ nawet je¶li zawiedzie sprawdzenie integralno¶ci\n"
+" -m Próbuj dzia³aæ nawet je¶li nie mo¿na znale¼æ niektórych archiwów\n"
+" -u Poka¿ te¿ listê aktualizowanych pakietów\n"
+" -b Zbuduj pakiet po pobraniu archiwum ¼ród³owego\n"
+" -V Poka¿ pe³n± informacjê na temat wersji\n"
+" -c=? Czytaj ten plik konfiguracyjny.\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
+"Wiêcej informacji i opcji mo¿na znale¼æ na stronach podrêcznika\n"
+"apt-get(8), sources.list(5) i apt.conf(5).\n"
+" Ten APT ma moce Super Krowy.\n"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Nie uda³o siê na³o¿yæ ³atki na plik"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Nie uda³o siê utworzyæ potoku IPC do podprocesu"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Traf "
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Po³±czenie zosta³o zamkniête przedwcze¶nie"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Pob: "
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Nie uda³o siê utworzyæ potoków"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Nie uda³o uruchomiæ programu gzip "
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "B³±d "
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Uszkodzone archiwum"
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Pobrano %sB w %s (%sB/s)\n"
-#: apt-inst/contrib/extracttar.cc:193
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [Pracujê]"
+
+#: cmdline/acqprogress.cc:271
+#, 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-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Nieznany rekord pakietu!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"U¿ycie: apt-sortpkgs [opcje] plik1 [plik2 ...]\n"
+"\n"
+"apt-sortpkgs to proste narzêdzie s³u¿±ce do sortowania plików pakietów.\n"
+"Opcji -s u¿ywa siê do wskazania typu pliku.\n"
+"\n"
+"Opcje:\n"
+" -h Ten tekst pomocy.\n"
+" -s Sortowanie pliku ¼róde³.\n"
+" -c=? Czytaj ten plik konfiguracyjny.\n"
+" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Nieprawid³owe ustawienie domy¶lne!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Naci¶nij enter, aby kontynuowaæ."
+
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Wyst±pi³y problemy przy rozpakowywaniu. Zainstalowane pakiety zostan±"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "skonfigurowane. Mo¿e to spowodowaæ podwójne b³êdy lub b³êdy"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"spowodowane brakuj±cymi zale¿no¶ciami. To jest normalne. Tylko powy¿sze"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "b³êdy s± istotne. Proszê je poprawiæ i ponownie wybraæ [I]nstalacjê."
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "£±czenie informacji o dostêpnych pakietach"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Nie uda³o siê utworzyæ potoków"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Nie uda³o uruchomiæ programu gzip "
+
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Uszkodzone archiwum"
+
+#: apt-inst/contrib/extracttar.cc:193
msgid "Tar checksum failed, archive corrupted"
msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone"
msgid "The diversion path is too long"
msgstr "Zbyt d³uga ¶cie¿ka objazdu"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Nie uda³o siê zmieniæ nazwy %s na %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Plik %s/%s nadpisuje plik w pakiecie %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Nie mo¿na czytaæ %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Pliki info i temp musz± byæ na tym samym systemie plików"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Czytanie list pakietów"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Plik kontrolny nie mo¿e zostaæ poprawnie zinterpretowany"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Nie uda³o siê odnale¼æ pakietu %s"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Liczba nazw pakietów : "
+msgid "Unable to read the cdrom database %s"
+msgstr "Nie mo¿na odczytaæ bazy danych CD-ROM-ów %s"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Zwyk³ych pakietów: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Proszê u¿yæ programu apt-cdrom, aby APT móg³ rozpoznaæ tê p³ytê CD. Nowych "
+"p³yt nie mo¿na dodawaæ przy pomocy polecenia apt-get update"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Czysto wirtualnych pakietów: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Niew³a¶ciwa p³yta CD"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pojedynczych pakietów wirtualnych: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Nie uda³o siê odmontowaæ CD-ROM-u w %s, byæ mo¿e wci±¿ jest u¿ywany."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Mieszanych pakietów wirtualnych: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Nie odnaleziono dysku."
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Brakuj±cych: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Nie odnaleziono pliku"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "W sumie ró¿nych wersji: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Nie uda³o siê wykonaæ operacji stat"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "W sumie ró¿nych opisów: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Nie uda³o siê ustawiæ czasu modyfikacji"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "W sumie zale¿no¶ci: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Nieprawid³owe URI, lokalne URI nie mog± zaczynaæ siê od //"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "W sumie zale¿no¶ci wersja/plik: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Rejestrowanie siê"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "W sumie zale¿no¶ci opis/plik: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Nie mo¿na okre¶liæ nazwy zdalnego systemu"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "W sumie mapowañ zapewnieñ: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Nie uda³o siê okre¶liæ nazwy lokalnego systemu"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "W sumie dopasowanych napisów: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Serwer odrzuci³ nasze po³±czenie i powiedzia³: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Sumaryczny rozmiar obszaru zale¿no¶ci od wersji: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Polecenie USER nie powiod³o siê, serwer powiedzia³: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Polecenie PASS nie powiod³o siê, serwer powiedzia³: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Ca³kowity rozmiar: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Okre¶lono serwer po¶rednicz±cy, ale nie okre¶lono skryptu rejestrowania, "
+"Acquire::ftp::ProxyLogin jest puste."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Plik pakietu %s jest przestarza³y."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr ""
+"Polecenie skryptu rejestrowania '%s' nie powiod³o siê, serwer powiedzia³: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Nale¿y podaæ dok³adnie jeden wzór"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "Polecenie TYPE nie powiod³o siê, serwer powiedzia³: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nie znaleziono ¿adnych pakietów"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Przekroczenie czasu po³±czenia"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Plików pakietów:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Serwer zamkn±³ po³±czenie"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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."
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "B³±d odczytu"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Odpowied¼ przepe³ni³a bufor."
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Przypiête pakiety:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Naruszenie zasad protoko³u"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nieznaleziony)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "B³±d zapisu"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Zainstalowana: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Nie uda³o siê utworzyæ gniazda"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(brak)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Nie uda³o siê po³±czyæ gniazda danych, przekroczenie czasu po³±czenia"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandyduj±ca: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Nie uda³o siê po³±czyæ pasywnego gniazda."
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Sposób przypiêcia: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo nie by³o w stanie uzyskaæ s³uchaj±cego gniazda"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabela wersji:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Nie uda³o siê przy³±czyæ gniazda"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Nie uda³o siê s³uchaæ na gnie¼dzie"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s dla %s %s skompilowany %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Nie uda³o siê okre¶liæ nazwy gniazda"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"U¿ycie: apt-cache [opcje] polecenie\n"
-" apt-cache [opcje] add plik1 [plik2 ...]\n"
-" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n"
-" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n"
-"\n"
-"apt-cache to niskopoziomowe narzêdzie s³u¿±ce do manipulowania\n"
-"binarnymi plikami magazynów podrêcznych APT-a, oraz do pobierania\n"
-"z nich informacji.\n"
-"\n"
-"Polecenia:\n"
-" add - Dodaj plik pakietów do magazynu podrêcznego\n"
-" gencaches - Zbuduj magazyn podrêczny pakietów i ¼róde³\n"
-" showpkg - Poka¿ ogólne informacje na temat pojedynczego pakietu\n"
-" showsrc - Poka¿ informacje na temat ¼róde³\n"
-" stats - Poka¿ podstawowe statystyki\n"
-" dump - Poka¿ ca³y plik w skrótowej formie\n"
-" dumpavail - Wypisz plik dostêpnych pakietów na standardowe wyj¶cie\n"
-" unmet - Poka¿ niespe³nione zale¿no¶ci\n"
-" search - Przeszukaj listê pakietów wed³ug wyra¿enia regularnego\n"
-" show - Poka¿ czytelny rekord dla danego pakietu\n"
-" depends - Poka¿ surowe informacje o zale¿no¶ciach danego pakietu\n"
-" rdepends - Poka¿ informacje o zale¿no¶ciach OD danego pakietu\n"
-" pkgnames - Poka¿ listê nazw wszystkich pakietów\n"
-" dotty - Wygeneruj grafy pakietów dla programu GraphVis\n"
-" xvcg - Wygeneruj grafy pakietów dla programu xvcg\n"
-" policy - Poka¿ ustawienia polityki\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy.\n"
-" -p=? Podrêczny magazyn pakietów.\n"
-" -s=? Podrêczny magazyn ¼róde³.\n"
-" -q Wy³±cz wska¼nik postêpu.\n"
-" -i Poka¿ tylko wa¿ne zale¿no¶ci przy poleceniu unmet.\n"
-" -c=? Czytaj ten plik konfiguracyjny.\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
-"Wiêcej informacji mo¿na znale¼æ na stronach podrêcznika apt-cache(8)\n"
-"oraz apt.conf(5).\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Nie mo¿na wys³aæ polecenia PORT"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Proszê wprowadziæ nazwê dla tej p³yty, np 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Nieznana rodzina adresów %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Proszê w³o¿yæ dysk do napêdu i nacisn±æ enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Polecenie EPRT nie powiod³o siê, serwer powiedzia³: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Powtórz ten proces dla reszty p³yt."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Przekroczony czas po³±czenia gniazda danych"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenty nie s± w parach"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Nie uda³o siê przyj±æ po³±czenia"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"U¿ycie: apt-config [opcje] polecenie\n"
-"\n"
-"apt-config to proste narzêdzie do czytania pliku konfiguracyjnego APT\n"
-"\n"
-"Polecenia:\n"
-" shell - Tryb pow³oki\n"
-" dump - Poka¿ konfiguracjê\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy.\n"
-" -c=? Czytaj ten plik konfiguracyjny.\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Nie uda³o siê obliczyæ skrótu pliku"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s nie jest prawid³owym pakietem DEB."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Nie mo¿na pobraæ pliku, serwer powiedzia³ '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"U¿ycie: apt-extracttemplates plik1 [plik2 ...]\n"
-"\n"
-"apt-extracttemplates to narzêdzie s³u¿±ce do pobierania informacji\n"
-"i konfiguracji i szablonach z pakietów Debiana.\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy.\n"
-" -t Ustaw katalog tymczasowy\n"
-" -c=? Czytaj ten plik konfiguracyjny.\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Przekroczony czas oczekiwania na dane"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Nie uda³o siê pobraæ wersji debconf. Czy debconf jest zainstalowany?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Nie uda³o siê przes³aæ danych, serwer powiedzia³ '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista rozszerzeñ pakietów jest zbyt d³uga"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Info"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Nie mo¿na wywo³aæ "
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "B³±d przetwarzania katalogu %s"
+msgid "Connecting to %s (%s)"
+msgstr "Pod³±czanie do %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista rozszerzeñ pakietów ¼ród³owych jest zbyt d³uga"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "B³±d przy zapisywaniu nag³ówka do pliku zawarto¶ci"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Nie uda³o siê utworzyæ gniazda dla %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "B³±d podczas przetwarzania zawarto¶ci %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Nie uda³o siê zainicjalizowaæ po³±czenia z %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"U¿ycie: apt-ftparchive [opcje] polecenie\n"
-"Polecenia: packages ¶cie¿ka_do_binariów [plik_override [przedrostek]]\n"
-" sources ¶cie¿ka_do_¼róde³ [plik_override [przedrostek]]\n"
-" contents ¶cie¿ka\n"
-" release ¶cie¿ka\n"
-" generate konfiguracja [grupy]\n"
-" clean konfiguracja\n"
-"\n"
-"apt-ftparchive generuje pliki indeksów dla archiwów Debiana. Obs³uguje\n"
-"ró¿ne rodzaje generowania, od w pe³ni zautomatyzowanych po funkcjonalne\n"
-"zamienniki programów dpkg-scanpackages i dpkg-scansources.\n"
-"\n"
-"apt-ftparchive generuje pliki Package na postawie drzewa plików .deb.\n"
-"Wygenerowany plik zawiera pola kontrolne wszystkich pakietów oraz ich\n"
-"skróty MD5 i rozmiary. Obs³ugiwany jest plik override, pozwalaj±cy okre¶liæ\n"
-"priorytet i dzia³ pakietu.\n"
-"\n"
-"apt-ftparchive podobnie generuje pliki Sources na podstawie drzewa plików\n"
-".dsc. Przy pomocy opcji --source-override mo¿na podaæ plik override dla\n"
-"pakietów ¼ród³owych.\n"
-"\n"
-"Polecenia 'packages' i 'sources' powinny byæ wykonywane w katalogu g³ównym\n"
-"drzewa. `¶cie¿ka_do_binariów' powinna wskazywaæ na katalog, od którego "
-"zacznie\n"
-"siê wyszukiwanie, a plik override powinien zawieraæ odpowiednie flagi.\n"
-"Przedrostek (o ile zosta³ podany) jest dodawany przed ¶cie¿k± do ka¿dego\n"
-"pliku. Przyk³adowe u¿ycie, z archiwum Debiana:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy\n"
-" --md5 Generuj sumy kontrolne MD5\n"
-" -s=? Plik override dla ¼róde³\n"
-" -q `Ciche' dzia³anie\n"
-" -d=? Opcjonalna podrêczna baza danych\n"
-" --no-delink W³±cz tryb diagnostyczny od³±czania\n"
-" --contents Generuj plik zawarto¶ci (Contents)\n"
-" -c=? Czytaj ten plik konfiguracyjny\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Nie uda³o siê po³±czyæ z %s:%s (%s), przekroczenie czasu po³±czenia"
+
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Nie uda³o siê po³±czyæ z %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "£±czenie z %s"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nie dopasowano ¿adnej nazwy"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Nie uda³o siê przet³umaczyæ nazwy '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Brakuje pewnych plików w grupie plików pakietów `%s'"
+msgid "Temporary failure resolving '%s'"
+msgstr "Tymczasowy b³±d przy t³umaczeniu '%s'"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Baza by³a uszkodzona, plik zosta³ przeniesiony do %s.old"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Co¶ niegodziwego sta³o siê przy t³umaczeniu '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Baza jest przestarza³a, próbujê zaktualizowaæ %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Nie uda³o siê po³±czyæ z %s %s:"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, fuzzy, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Nie uda³o siê przet³umaczyæ nazwy '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Lista argumentów Acquire::gpgv::Options zbyt d³uga. Wychodzimy."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
+"B³±d wewnêtrzny: Prawid³owa sygnatura, ale nie nie uda³o siê ustaliæ "
+"jejodcisku?!"
-#: ftparchive/cachedb.cc:77
-#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Nie uda³o siê otworzyæ pliku DB %s: %s"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Napotkano przynajmniej jedn± nieprawid³ow± sygnaturê."
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archiwum nie posiada rekordu control"
+#: methods/gpgv.cc:214
+#, fuzzy, c-format
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr " by zweryfikowaæ sygnaturê (czy gnupg jest zainstalowane?)"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Nie uda³o siê pobraæ kursora"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Nieznany b³±d podczas uruchamiania gpgv"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Nastêpuj±ce sygnatury by³y b³êdne:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Nastêpuj±ce sygnatury nie mog³y zostaæ zweryfikowane z powodu braku klucza "
+"publicznego:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Nie uda³o siê odczytaæ katalogu %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Nie uda³o siê otworzyæ potoku dla %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Nie mo¿na wykonaæ operacji stat na %s\n"
+msgid "Read error from %s process"
+msgstr "B³±d odczytu z procesu %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Oczekiwanie na nag³ówki"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Otrzymano pojedyncz± liniê nag³ówka o d³ugo¶ci ponad %u znaków"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: B³êdy odnosz± siê do pliku "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Nieprawid³owa linia nag³ówka"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Nie uda³o siê przet³umaczyæ nazwy %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek odpowiedzi"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Przej¶cie po drzewie nie powiod³o siê"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek Content-Length"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Nie uda³o siê otworzyæ %s"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Serwer HTTP przys³a³ nieprawid³owy nag³ówek Content-Range"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " Od³±czenie %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Ten serwer HTTP nieprawid³owo obs³uguje zakresy (ranges)"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Nieznany format daty"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Operacja select nie powiod³a siê"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Przekroczenie czasu po³±czenia"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "B³±d przy pisaniu do pliku wyj¶ciowego"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "B³±d przy pisaniu do pliku"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "B³±d przy pisaniu do pliku"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "B³±d czytania z serwera: Zdalna strona zamknê³a po³±czenie"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "B³±d czytania z serwera"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "B³êdne dane nag³ówka"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Po³±czenie nie uda³o siê"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "B³±d wewnêtrzny"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Nie mo¿na wykonaæ mmap na pustym pliku"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Nie uda³o siê odczytaæ dowi±zania %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Nie uda³o siê wykonaæ mmap %lu bajtów"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Nie uda³o siê usun±æ %s"
+msgid "Selection %s not found"
+msgstr "Nie odnaleziono wyboru %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Nie uda³o siê dowi±zaæ %s do %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Nierozpoznany skrót typu: '%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Osi±gniêto ograniczenie od³±czania %sB.\n"
+msgid "Opening configuration file %s"
+msgstr "Otwieranie pliku konfiguracyjnego %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archiwum nie posiada³o pola pakietu"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linia %d jest zbyt d³uga (max %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nie posiada wpisu w pliku override\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "B³±d sk³adniowy %s:%u: Blok nie zaczyna siê nazw±."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " opiekunem %s jest %s, a nie %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "B³±d sk³adniowy %s:%u: B³êdny znacznik"
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nie posiada wpisu w pliku override\n"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "B³±d sk³adniowy %s:%u: Po warto¶ci wystêpuj± ¶mieci"
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s nie posiada wpisu w pliku override\n"
+#: apt-pkg/contrib/configuration.cc:687
+#, 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 poziomie najwy¿szym"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "B³±d wewnêtrzny, nie uda³o siê odnale¼æ sk³adnika %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "B³±d sk³adniowy %s:%u: Zbyt wiele zagnie¿d¿onych operacji include"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Nie uda³o siê zaalokowaæ pamiêci"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "B³±d sk³adniowy %s:%u: W³±czony tutaj"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Nie mo¿na otworzyæ %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "B³±d sk³adniowy %s:%u: Nieobs³ugiwana dyrektywa '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "B³êdna linia %2$lu #1 pliku override %1$s"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "B³±d sk³adniowy %s:%u: ¦mieci na koñcu pliku"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "B³êdna linia %2$lu #2 pliku override %1$s"
+msgid "%c%s... Error!"
+msgstr "%c%s... B³±d!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "B³êdna linia %2$lu #3 pliku override %1$s"
+msgid "%c%s... Done"
+msgstr "%c%s... Gotowe"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Nie uda³o siê czytaæ pliku override %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Opcja linii poleceñ '%c' [z %s] jest nieznana."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Nieznany algorytm kompresji '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Niezrozumia³a opcja linii poleceñ %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Skompresowany plik wynikowy %s wymaga podania kompresji"
+msgid "Command line option %s is not boolean"
+msgstr "Opcja linii poleceñ %s nie jest typu boolean"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Nie uda³o siê utworzyæ obiektu FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Opcja %s wymaga argumentu."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Nie uda³o siê utworzyæ procesu potomnego"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawieraæ =<warto¶æ>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Potomny proces kompresuj±cy"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Opcja %s wymaga argumentu typu ca³kowitego, nie '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "B³±d wewnêtrzny, nie uda³o siê utworzyæ %s"
+msgid "Option '%s' is too long"
+msgstr "Opcja '%s' jest zbyt d³uga"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Nie uda³o siê utworzyæ IPC z podprocesem"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Znaczenie %s jest nieznane, spróbuj true albo false."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Nie uda³o siê uruchomiæ kompresora "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Nieprawid³owa operacja %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekompresor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Nie uda³o siê wykonaæ operacji stat na punkcie montowania %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Zawiod³a operacja IO na pliku/podprocesie"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Nie uda³o siê przej¶æ do %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Nie uda³o siê czytanie w czasie liczenia skrótu MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Nie uda³o siê wykonaæ operacji stat na CDROM-ie"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem przy usuwaniu %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie u¿yta blokada"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "T"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Nie uda³o siê otworzyæ pliku blokady %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "B³±d kompilacji wyra¿enia regularnego - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie u¿yta blokada"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Nastêpuj±ce pakiety maj± niespe³nione zale¿no¶ci:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Nie uda³o siê uzyskaæ blokady %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "ale %s jest zainstalowany"
+msgid "Waited for %s but it wasn't there"
+msgstr "Oczekiwano na proces %s, ale nie by³o go"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "ale %s ma zostaæ zainstalowany"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Podproces %s spowodowa³ naruszenie segmentacji."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ale nie da siê go zainstalowaæ"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Podproces %s zwróci³ kod b³êdu (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ale jest pakietem wirtualnym"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Podproces %s zakoñczy³ siê niespodziewanie"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ale nie jest zainstalowany"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Nie uda³o siê otworzyæ pliku %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ale nie zostanie zainstalowany"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "nale¿a³o przeczytaæ jeszcze %lu, ale nic nie zosta³o"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " lub"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "nale¿a³o zapisaæ jeszcze %lu, ale nie uda³o siê to"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Zostan± zainstalowane nastêpuj±ce NOWE pakiety:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem przy zamykaniu pliku"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Nastêpuj±ce pakiety zostan± USUNIÊTE:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problem przy usuwaniu pliku"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Nastêpuj±ce pakiety zosta³y zatrzymane:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem przy zapisywaniu pliku na dysk"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Nastêpuj±ce pakiety zostan± zaktualizowane:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Pusty magazyn podrêczny pakietów"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Zostan± zainstalowane STARE wersje nastêpuj±cych pakietów:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Magazyn podrêczny pakietów jest uszkodzony"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Zostan± zmienione nastêpuj±ce zatrzymane pakiety:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Magazyn podrêczny pakietów jest w niezgodnej wersji"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (z powodu %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Ta wersja APT nie obs³uguje systemu wersji '%s'"
-#: cmdline/apt-get.cc:547
-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 powinno siê tego robiæ, chyba ¿e dok³adnie wiesz, co robisz!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Ten magazyn podrêczny pakietów zosta³ zbudowany dla innej architektury"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizowanych, %lu nowo instalowanych, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Wymaga"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu przeinstalowywanych, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "PreWymaga"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu cofniêtych wersji, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Sugeruje"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu usuwanych i %lu nieaktualizowanych.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Poleca"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu nie w pe³ni zainstalowanych lub usuniêtych.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Jest w konflikcie z"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Naprawianie zale¿no¶ci..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Zastêpuje"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " nie uda³o siê."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Czyni zbêdnym"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Nie uda³o siê naprawiæ zale¿no¶ci"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Nie uda³o siê zminimalizowaæ zbioru aktualizacji"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "wa¿ny"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Gotowe"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "wymagany"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Nale¿y uruchomiæ `apt-get -f install', aby je naprawiæ."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standardowy"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Niespe³nione zale¿no¶ci. Spróbuj u¿yæ -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcjonalny"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "UWAGA: Nastêpuj±ce pakiety nie mog± zostaæ zweryfikowane!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "dodatkowy"
+
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Budowanie drzewa zale¿no¶ci"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Ostrze¿enie uwierzytelniania zignorowano.\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandyduj±ce wersje"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Zainstalowaæ te pakiety bez weryfikacji [t/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generowanie zale¿no¶ci"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Niektóre pakiety nie mog³y zostaæ zweryfikowane"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "£±czenie informacji o dostêpnych pakietach"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "By³y problemy, a u¿yto -y bez --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Nie uda³o siê otworzyæ %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "B³±d wewnêtrzny, InstallPackages u¿yto z zepsutymi pakietami!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Nie uda³o siê zapisaæ pliku %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pakiety powinny zostaæ usuniête, ale Remove jest wy³±czone."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Nie uda³o siê zanalizowaæ pliku pakietu %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "B³±d wewnêtrzny, sortowanie niezakoñczone"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Nie uda³o siê zanalizowaæ pliku pakietu %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Nie uda³o siê zablokowaæ katalogu pobierania"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Dziwne.. rozmiary siê nie zgadzaj±, zg³o¶ pod apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (dystrybucja)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Konieczne pobranie %sB/%sB archiwów.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (analiza URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Konieczne pobranie %sB archiwów.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (bezwzglêdna dystrybucja)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Po rozpakowaniu zostanie dodatkowo u¿yte %sB miejsca na dysku.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Nieprawid³owa linia %lu w li¶cie ¼róde³ %s (analiza dystrybucji)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Po rozpakowaniu zostanie zwolnione %sB miejsca na dysku.\n"
+msgid "Opening %s"
+msgstr "Otwieranie %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nie uda³o siê ustaliæ ilo¶ci wolnego miejsca w %s"
+msgid "Line %u too long in source list %s."
+msgstr "Linia %u w li¶cie ¼róde³ %s jest zbyt d³uga."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Niestety w %s nie ma wystarczaj±cej ilo¶ci wolnego miejsca."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Nieprawid³owa linia %u w li¶cie ¼róde³ %s (typ)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Nakazano wykonywaæ tylko trywialne operacje, a to nie jest trywialne."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typ '%s' jest nieznany w linii %u listy ¼róde³ %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Tak, rób jak mówiê!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Nieprawid³owa linia %u w li¶cie ¼róde³ %s (identyfikator producenta)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Zaraz zrobisz co¶ potencjalnie szkodliwego.\n"
-"Aby kontynuowaæ wpisz zdanie '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Przerwane."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Czy chcesz kontynuowaæ [T/n]? "
+"To uruchomienie programu bêdzie wymaga³o tymczasowego usuniêcia istotnego "
+"pakietu %s z powodu pêtli konfliktów/pre-zale¿no¶ci. Czêsto nie oznacza to "
+"nic dobrego, ale je¶li naprawdê chcesz to zrobiæ, w³±cz opcjê APT::Force-"
+"LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Nie uda³o siê pobraæ %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Nie uda³o siê pobraæ niektórych plików"
+msgid "Index file type '%s' is not supported"
+msgstr "Plik indeksu typu '%s' nie jest obs³ugiwany"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Ukoñczono pobieranie w trybie samego pobierania"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Pakiet %s ma zostaæ przeinstalowany, ale nie mo¿na znale¼æ jego archiwum."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Nie uda³o siê pobraæ niektórych archiwów, spróbuj uruchomiæ apt-get update "
-"lub u¿yæ opcji --fix-missing"
+"B³±d, pkgProblemResolver::Resolve zwróci³ b³±d, mo¿e to byæ spowodowane "
+"\"zatrzymanymi\" pakietami."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing i zamienianie no¶ników nie jest obecnie obs³ugiwane"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Nie uda³o siê naprawiæ problemów, zatrzymano uszkodzone pakiety."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Nie uda³o siê poprawiæ brakuj±cych pakietów."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Brakuje katalogu list %spartial."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Przerywanie instalacji"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Brakuje katalogu archiwów %spartial."
+
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Pobieranie pliku %li z %li (%s pozosta³o)"
+
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Czytanie listy plików"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Uwaga, wybieranie %s zamiast %s\n"
+msgid "The method driver %s could not be found."
+msgstr "Nie uda³o siê odnale¼æ sterownika metody %s."
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Pomijanie %s, jest ju¿ zainstalowane, a nie zosta³o wybrana aktualizacja.\n"
+msgid "Method %s did not start correctly"
+msgstr "Metoda %s nie uruchomi³a siê poprawnie."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Pakiet %s nie jest zainstalowany, wiêc nie zostanie usuniêty.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "W³ó¿ do napêdu '%s' dysk o nazwie: '%s' i naci¶nij enter."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Pakiet %s jest pakietem wirtualnym zapewnianym przez:\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "System pakietów '%s' nie jest obs³ugiwany"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Zainstalowany]"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Nie uda³o siê okre¶liæ odpowiedniego typu systemu pakietów"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Nale¿y jednoznacznie wybraæ jeden z nich do instalacji."
+#: apt-pkg/clean.cc:57
+#, c-format
+msgid "Unable to stat %s."
+msgstr "Nie uda³o siê wykonaæ operacji stat na pliku %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Nale¿y dopisaæ jakie¶ URI 'source' do pliku sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Nie uda³o siê otworzyæ lub zanalizowaæ zawarto¶ci list pakietów."
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Nale¿y uruchomiæ apt-get update aby naprawiæ te problemy."
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Nieprawid³owy rekord w pliku ustawieñ, brak nag³ówka Package"
+
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "Nierozpoznany typ przypinania %s"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Jednak nastêpuj±ce pakiety go zastêpuj±:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Brak (lub zerowy) priorytet przypiêcia"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Magazyn podrêczny ma niezgodny system wersji"
+
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Pakiet %s nie ma kandydata do instalacji"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr ""
-"Przeinstalowanie pakietu %s nie jest mo¿liwe, nie mo¿e on zostaæ pobrany.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s jest ju¿ w najnowszej wersji.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Wydanie '%s' dla '%s' nie zosta³o znalezione"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Wersja '%s' dla '%s' nie zosta³a znaleziona"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Wybrano wersjê %s (%s) dla %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Polecenie update nie wymaga ¿adnych argumentów"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Nie uda³o siê zablokowaæ katalogu list"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc2)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Nie uda³o siê pobraæ niektórych plików indeksu, zosta³y one zignorowane lub "
-"zosta³a u¿yta ich starsza wersja."
+"Och, przekroczono liczbê pakietów, któr± ten APT jest w stanie obs³u¿yæ."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Och, przekroczono liczbê wersji, któr± ten APT jest w stanie obs³u¿yæ."
-#: cmdline/apt-get.cc:1465
-#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Zostan± zainstalowane nastêpuj±ce NOWE pakiety:"
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Och, przekroczono liczbê opisów, któr± ten APT jest w stanie obs³u¿yæ."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Och, przekroczono liczbê zale¿no¶ci, któr± ten APT jest w stanie obs³u¿yæ."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Nastêpuj±ce informacje mog± pomóc rozpoznaæ sytuacjê:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "B³±d wewnêtrzny, rozwi±zywanie problemów wszystko popsu³o"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"Pakiet %s %s nie zosta³ odnaleziony podczas przetwarzania zale¿no¶ci plików"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "B³±d wewnêtrzny, AllUpgrade wszystko popsu³o"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Nie uda³o siê wykonaæ operacji stat na li¶cie pakietów ¼ród³owych %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Nie uda³o siê odnale¼æ pakietu %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Zbieranie zapewnieñ plików"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Nie uda³o siê odnale¼æ pakietu %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "B³±d wej¶cia/wyj¶cia przy zapisywaniu podrêcznego magazynu ¼róde³"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Uwaga, wybieranie %s za wyra¿enie '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "nie uda³o siê zmieniæ nazwy, %s (%s -> %s)"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ale %s ma zostaæ zainstalowany"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "B³êdna suma MD5"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Nale¿y uruchomiæ `apt-get -f install', aby je naprawiæ:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "B³êdna suma MD5"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Niespe³nione zale¿no¶ci. Spróbuj 'apt-get -f install' bez pakietów (lub "
-"podaj rozwi±zanie)."
+#: apt-pkg/acquire-item.cc:1100
+#, fuzzy
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Dla nastêpuj±cego identyfikatora klucza brakuje klucza publicznego:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Nie uda³o siê zainstalowaæ niektórych pakietów. Mo¿e to oznaczaæ,\n"
-"¿e za¿±dano niemo¿liwej sytuacji lub u¿ywasz dystrybucji niestabilnej,\n"
-"w której niektóre pakiety nie zosta³y jeszcze utworzone lub przeniesione\n"
-"z katalogu Incoming (\"Przychodz±ce\")."
+"Nie uda³o siê odnale¼æ pliku dla pakietu %s. Mo¿e to oznaczaæ, ¿e trzeba "
+"bêdzie rêcznie naprawiæ ten pakiet (z powodu brakuj±cej architektury)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"Poniewa¿ za¿±dno tylko jednej operacji, jest bardzo prawdopodobne, ¿e\n"
-"danego pakietu po prostu nie da siê zainstalowaæ i nale¿y zg³osiæ w nim\n"
-"b³±d."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pakiety s± b³êdne"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Zostan± zainstalowane nastêpuj±ce dodatkowe pakiety:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Sugerowane pakiety:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Polecane pakiety:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Obliczanie aktualizacji..."
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Gotowe"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "B³±d wewnêtrzny, rozwi±zywanie problemów wszystko popsu³o"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Nale¿y podaæ przynajmniej jeden pakiet, dla którego maj± zostaæ pobrane "
-"¼ród³a"
+"Nie uda³o siê odnale¼æ pliku dla pakietu %s. Mo¿e to oznaczaæ, ¿e trzeba "
+"bêdzie rêcznie naprawiæ ten pakiet."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Nie uda³o siê odnale¼æ ¼ród³a dla pakietu %s"
+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."
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Pomijanie ju¿ pobranego pliku '%s'\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "B³êdny rozmiar"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "W %s nie ma wystarczaj±cej ilo¶ci wolnego miejsca"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Blok producenta %s nie zawiera odcisku"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Konieczne pobranie %sB/%sB archiwów ¼róde³.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Wykorzystuê %s jako punkt montowania CD-ROMu\n"
+"Montowanie CD-ROMu\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Konieczne pobranie %sB archiwów ¼róde³.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identyfikacja.. "
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Pobierz ¼ród³o %s\n"
+msgid "Stored label: %s\n"
+msgstr "Etykieta: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Nie uda³o siê pobraæ niektórych archiwów."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Odmontowanie CD-ROMu..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Pomijanie rozpakowania ju¿ rozpakowanego ¼ród³a w %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Wykorzystujê %s jako punkt montowania CD-ROMu\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Polecenie rozpakowania '%s' zawiod³o.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Odmontowanie CD-ROMu\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Sprawd¼ czy pakiet 'dpkg-dev' jest zainstalowany.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Oczekiwanie na p³ytê...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Polecenie budowania '%s' zawiod³o.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Montowanie CD-ROMu...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Proces potomny zawiód³"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Skawnowanie p³yty w poszukiwaniu plików indeksu..\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-"Nale¿y podaæ przynajmniej jeden pakiet, dla którego maj± zostaæ pakiety "
-"wymagane do budowania"
+"Znaleziono %i indeksów pakietów, %i indeksów ¼ród³owych, %i indeksów "
+"t³umaczeñ i %i sygnatur\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr ""
-"Nie uda³o siê pobraæ informacji o zale¿no¶ciach na czas budowania dla %s"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Etykieta: %s \n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s nie ma zale¿no¶ci czasu budowania.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "To nie jest prawid³owa nazwa, spróbuj ponownie.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"Zale¿no¶æ %s od %s nie mo¿e zostaæ spe³niona, poniewa¿ nie znaleziono "
-"pakietu %s"
+"P³yta nosi nazwê: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopiowanie list pakietów..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Zapisywanie nowej listy ¼róde³\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "¬ród³a dla tej p³yty to:\n"
+
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"Zale¿no¶æ %s od %s nie mo¿e zostaæ spe³niona, poniewa¿ ¿adna z dostêpnych "
-"wersji pakietu %s nie ma odpowiedniej wersji"
+msgid "Wrote %i records.\n"
+msgstr "Zapisano %i rekordów.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Nie uda³o siê spe³niæ zale¿no¶ci %s od %s: Zainstalowany pakiet %s jest zbyt "
-"nowy"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Zapisano %i rekordów z %i brakuj±cymi plikami.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Nie uda³o siê spe³niæ zale¿no¶ci %s od %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Zapisano %i rekordów z %i niepasuj±cymi plikami\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Nie uda³o siê spe³niæ zale¿no¶ci na czas budowania od %s."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Zapisano %i rekordów z %i brakuj±cymi plikami i %i niepasuj±cymi\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Nie uda³o siê przetworzyæ zale¿no¶ci na czas budowania"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Brakuje katalogu list %spartial."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Obs³ugiwane modu³y:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "Przygotowanie %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"U¿ycie: apt-get [opcje] polecenie\n"
-" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n"
-" apt-get [opcje] source pakiet1 [pakiet2 ...]\n"
-"\n"
-"apt-get to prosty interfejs linii poleceñ do pobierania i instalacji\n"
-"pakietów. Najczê¶ciej u¿ywane polecenia to update i install.\n"
-"\n"
-"Polecenia:\n"
-" update - Pobierz nowe listy pakietów\n"
-" upgrade - Wykonaj aktualizacjê\n"
-" install - Zainstaluj nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n"
-" remove - Usuñ pakiety\n"
-" source - Pobierz archiwa ¼ród³owe\n"
-" build-dep - Skonfiguruj zale¿no¶ci na czas budowania dla pakietów "
-"¼ród³owych\n"
-" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n"
-" dselect-upgrade - Instaluj wed³ug wyborów dselect\n"
-" clean - Usuñ pobrane pliki archiwów\n"
-" autoclean - Usuñ stare pobrane pliki archiwów\n"
-" check - Sprawd¼, czy wszystkie zale¿no¶ci s± spe³nione\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy.\n"
-" -q Nie pokazuj wska¼nika postêpu (przydatne przy rejestrowaniu "
-"dzia³ania)\n"
-" -qq Nie wypisuj nic oprócz komunikatów b³êdów\n"
-" -d Tylko pobierz - NIE instaluj ani nie rozpakowuj archiwów\n"
-" -s Bez dzia³ania. Wykonaj tylko symulacjê ustawiania kolejno¶ci\n"
-" -y Zak³adaj odpowied¼ \"tak\" na wszystkie pytania, nie pytaj\n"
-" -f Próbuj dzia³aæ nawet je¶li zawiedzie sprawdzenie integralno¶ci\n"
-" -m Próbuj dzia³aæ nawet je¶li nie mo¿na znale¼æ niektórych archiwów\n"
-" -u Poka¿ te¿ listê aktualizowanych pakietów\n"
-" -b Zbuduj pakiet po pobraniu archiwum ¼ród³owego\n"
-" -V Poka¿ pe³n± informacjê na temat wersji\n"
-" -c=? Czytaj ten plik konfiguracyjny.\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
-"Wiêcej informacji i opcji mo¿na znale¼æ na stronach podrêcznika\n"
-"apt-get(8), sources.list(5) i apt.conf(5).\n"
-" Ten APT ma moce Super Krowy.\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Rozpakowywanie %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Traf "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Przygotowanie do konfiguracji %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Pob: "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Konfigurowanie %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "B³±d przetwarzania katalogu %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "B³±d "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr " Zainstalowany %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Pobrano %sB w %s (%sB/s)\n"
+msgid "Preparing for removal of %s"
+msgstr "Przygotowanie do usuniêcia %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [Pracujê]"
+msgid "Removing %s"
+msgstr "Usuwanie %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, 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"
+msgid "Removed %s"
+msgstr "Usuniêto %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Nieznany rekord pakietu!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, fuzzy, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Przygotowanie do konfiguracji %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Nie uda³o siê usun±æ %s"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"U¿ycie: apt-sortpkgs [opcje] plik1 [plik2 ...]\n"
-"\n"
-"apt-sortpkgs to proste narzêdzie s³u¿±ce do sortowania plików pakietów.\n"
-"Opcji -s u¿ywa siê do wskazania typu pliku.\n"
-"\n"
-"Opcje:\n"
-" -h Ten tekst pomocy.\n"
-" -s Sortowanie pliku ¼róde³.\n"
-" -c=? Czytaj ten plik konfiguracyjny.\n"
-" -o=? Ustaw dowoln± opcjê konfiguracji, np. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Nieprawid³owe ustawienie domy¶lne!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Nie uda³o siê na³o¿yæ ³atki na plik"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Naci¶nij enter, aby kontynuowaæ."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Po³±czenie zosta³o zamkniête przedwcze¶nie"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Wyst±pi³y problemy przy rozpakowywaniu. Zainstalowane pakiety zostan±"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linia %d jest zbyt d³uga (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "skonfigurowane. Mo¿e to spowodowaæ podwójne b³êdy lub b³êdy"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"spowodowane brakuj±cymi zale¿no¶ciami. To jest normalne. Tylko powy¿sze"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Wyst±pi³ b³±d podczas przetwarzania %s (NewFileDesc2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "b³êdy s± istotne. Proszê je poprawiæ i ponownie wybraæ [I]nstalacjê."
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Etykieta: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "£±czenie informacji o dostêpnych pakietach"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Znaleziono %i indeksów pakietów, %i indeksów ¼ród³owych, %i indeksów "
+#~ "t³umaczeñ i %i sygnatur\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-05-09 22:14+0100\n"
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Impossível ler a base de dados de cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido "
-"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD errado"
+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"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disco não encontrado"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Arquivo não encontrado"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Falha ao executar stat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Falha ao definir hora de modificação"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI inválido, URIs locais não devem iniciar com //"
+msgid "Unable to locate package %s"
+msgstr "Impossível encontrar o pacote %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "A entrar no sistema"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Total de Nomes de Pacotes : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Impossível determinar o nome do posto"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Pacotes Normais: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Impossível determinar o nome local"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pacotes Puramente Virtuais: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "O servidor recusou a nossa ligação e respondeu: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pacotes Virtuais Únicos: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER falhou, o servidor respondeu: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Pacotes Virtuais Misturados: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS falhou, o servidor respondeu: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Faltam: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Um servidor de proxy foi especificado mas não um script de login, Acquire::"
-"ftp::ProxyLogin está vazio."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Total de Versões Distintas: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Comando de script de login '%s' falhou, o servidor respondeu: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Total de Versões Distintas: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE falhou, o servidor respondeu: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Total de Dependências: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Tempo limite de ligação atingido"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Total de relações Ver/Ficheiro: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Servidor fechou a ligação"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Total de relações Ver/Ficheiro: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Erro de leitura"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Total de Mapeamentos Disponibilizados: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Uma resposta sobrecarregou o buffer"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Total de Strings Globbed: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Corrupção de protocolo"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total de espaço de Dependência de Versão: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Erro de escrita"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total de espaço Desperdiçado: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Não foi possível criar um socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total de Espaço Contabilizado: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Não foi possível ligar socket de dados, a ligação expirou"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "O ficheiro do pacote %s está dessincronizado."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Falhou"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Você deve dar exactamente um pattern"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Não foi possível ligar socket passivo."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Não foi encontrado nenhum pacote"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo não foi capaz de obter um socket de escuta"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Ficheiros de Pacotes :"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Não foi possível fazer o bind a um socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Não foi possível executar listen no socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Não foi possível determinar o nome do socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pacotes Marcados: "
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Impossível enviar o comando PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(não encontrado)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Família de endereços %u desconhecida (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalado: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT falhou, o servidor respondeu: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(nenhum)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Ligação de socket de dados expirou"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidato: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Impossível aceitar ligação"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Marcação do Pacote: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problema fazendo o hash do ficheiro"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabela de Versão:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Impossível obter ficheiro, o servidor respondeu '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Socket de dados expirou"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s para %s %s compilado em %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Transferência de dados falhou, o servidor respondeu '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Pesquisa"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Impossível invocar "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Ligando a %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Utilização: apt-cache [opções] comando\n"
+" apt-cache [opções] add ficheiro1 [ficheiro1 ...]\n"
+" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n"
+" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n"
+"\n"
+"O apt-cache é uma ferramenta de baixo nível utilizada para manipular\n"
+"os ficheiros de cache binários do APT e para procurar informações\n"
+"neles\n"
+"\n"
+"Comandos:\n"
+" add - Adiciona um ficheiro de pacote à cache de fontes\n"
+" gencaches - Constrói ambas as caches de pacotes e de fontes\n"
+" showpkg - Mostra informações gerais sobre um pacote\n"
+" showsrc - Mostra registros de fontes\n"
+" stats - Mostra estatísticas básicas\n"
+" dump - Mostra o ficheiro inteiro de forma concisa\n"
+" dumpavail - Imprime um ficheiro disponível para stdout\n"
+" unmet - Mostra dependências não satisfeitas\n"
+" search - Procura na lista de pacotes por um pattern regex\n"
+" show - Mostra um registro legível sobre o pacote\n"
+" depends - Mostra informações em bruto de dependências de um pacote\n"
+" pkgnames - Lista o nome de todos os pacotes\n"
+" dotty - Gera gráficos de pacotes para o GraphVis\n"
+" xvcg - Gera gráficos de pacotes para o xvcg\n"
+" policy - Mostra as configurações de políticas\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda.\n"
+" -p=? A cache de pacotes.\n"
+" -s=? A cache de fontes.\n"
+" -q Desabilita o indicador de progresso.\n"
+" -i Mostra apenas dependências importantes para o comando unmet.\n"
+" -c=? Ler o ficheiro de configuração especificado.\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+"Veja as páginas do manual apt-cache(8) e apt.conf(5) para mais informações.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Por favor forneça um nome para este Disco, tal como 'Debian 2.1r1 Disco 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Por favor insira um Disco no leitor e pressione enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Não posso iniciar a ligação para %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumentos não estão em pares"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Não foi possível ligar em %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilização: apt-config [opções] comando\n"
+"\n"
+"O apt-config é uma ferramenta simples para ler o ficheiro de configuração\n"
+"do APT\n"
+"\n"
+"Comandos:\n"
+" shell - Modo Shell\n"
+" dump - Mostra a configuração\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda.\n"
+" -c=? Ler este arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Ligando a %s"
+msgid "%s not a valid DEB package."
+msgstr "%s não é um pacote DEB válido."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Não foi possível resolver '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilização: apt-extracttemplates ficheiro1 [ficheiro2 ...]\n"
+"\n"
+"O apt-extracttemplates é uma ferramenta para extrair configuração\n"
+"e informação de template de pacotes debian.\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda\n"
+" -t Define o directório temporário\n"
+" -c=? Ler este arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Falha temporária resolvendo '%s'"
+msgid "Unable to write to %s"
+msgstr "Impossível escrever para %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Não foi possível obter a versão do debconf. O debconf está instalado?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Impossível ligar a %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista de extensão de pacotes é demasiado longa"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Não foi possível aceder à 'keyring': '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: A lista de argumentos de Acquire::gpgv::Options é demasiado longa. A sair."
+msgid "Error processing directory %s"
+msgstr "Erro processando o directório %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Erro interno: Assinatura válida, mas não foi possível determinar a impressão "
-"digital da chave?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista de extensão de fontes é demasiado longa"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Pelo menos uma assinatura inválida foi encontrada."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Erro ao gravar cabeçalho no ficheiro de conteúdo"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Não foi possível executar '%s' para verificar a assinatura (gnupg está "
-"instalado?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Erro desconhecido ao executar gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "As seguintes assinaturas estavam inválidas:\n"
+msgid "Error processing contents %s"
+msgstr "Erro processando o ficheiro Contents %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"As seguintes assinaturas não puderam ser verificadas porque a chave pública "
-"não está disponível:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Falha ao executar stat %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Não foi possível abrir pipe para %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Erro de leitura do processo %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Utilização: apt-ftparchive [opções] comando\n"
+"Comandos: packages caminho_binário [ficheiro_override [prefixo_caminho]]\n"
+" sources caminho_fonte [ficheiro_override [prefixo_caminho]]\n"
+" contents caminho\n"
+" release caminho\n"
+" generate config [grupos]\n"
+" clean config\n"
+"\n"
+"O apt-ftparchive gera ficheiros de índice para repositórios Debian. Ele \n"
+"suporta muitos estilos de criação, desde totalmente automatizados até \n"
+"substitutos funcionais para o dpkg-scanpackages e dpkg-scansources\n"
+"\n"
+"O apt-ftparchive gera ficheiros Packages a partir de uma árvore de .debs.\n"
+" O ficheiro Package contém o conteúdo de todos os campos de controle de \n"
+"cada pacote bem como o hash MD5 e tamanho do ficheiro. Um ficheiro \n"
+"override é suportado para forçar o valor de Priority e Section.\n"
+"\n"
+"Similarmente, o apt-ftparchive gera ficheiros Sources a partir de uma \n"
+"árvore de .dscs. A opção --source-override pode ser utilizada para \n"
+"especificar um ficheiro override de fontes\n"
+"\n"
+"Os comandos 'packages' e 'sources' devem ser executados na raiz da \n"
+"árvore. CaminhoBinário deve apontar para a base de procura recursiva \n"
+"e o ficheiro override deve conter as flags override. CaminhoPrefixo é \n"
+"incluído aos campos filename caso esteja presente. Exemplo de uso do \n"
+"repositório Debian :\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda\n"
+" --md5 Controla a criação do MD5\n"
+" -s=? Ficheiro override de código-fonte \n"
+" -q Quieto\n"
+" -d=? Selecciona a base de dados de caching opcional\n"
+" --no-delink Habilita o modo de debug delinking\n"
+" --contents Controla a criação do ficheiro de conteúdo\n"
+" -c=? Lê este ficheiro de configuração\n"
+" -o=? Define uma opção de configuração arbitrária"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Aguardando por cabeçalhos"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nenhuma selecção coincidiu"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Linha de cabeçalho errada"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Alguns ficheiros faltam no ficheiro de grupo de pacotes `%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "O servidor http enviou um cabeçalho de resposta inválido"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "A base de dados estava corrompida, ficheiro renomeado para %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "O servidor http enviou um cabeçalho Conten-Length inválido"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB é antiga, tentando uma actualização %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "O servidor http enviou um cabeçalho Conten-Range inválido"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"O formato DB é inválido. Se actualizou a partir de uma versão antiga do apt, "
+"por favor remova-a e recrie a base de dados."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Este servidor http possui suporte a range errado"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Não foi possível abrir o ficheiro DB %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Formato de data desconhecido"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Falha ao executar stat %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Select falhou."
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "O arquivo não tem registro de controle"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "A ligação expirou"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Não foi possível obter um cursor"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Erro gravando para ficheiro de saída"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Não foi possível ler o directório %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Erro gravando para ficheiro"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Não foi possível fazer stat %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Erro gravando para o ficheiro"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Erro lendo do servidor. O Remoto fechou a ligação"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Erro lendo do servidor"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Erros aplicam-se ao ficheiro "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Dados de cabeçalho errados"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Falha ao resolver %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Falhou a ligação"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Falhou ao percorrer a árvore"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Erro interno"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Falhou ao abrir %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Não é possível fazer mmap a um ficheiro vazio"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Impossível fazer mmap de %lu bytes"
+msgid "Failed to readlink %s"
+msgstr "Falhou ao executar readlink %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Selecção %s não encontrada"
+msgid "Failed to unlink %s"
+msgstr "Falhou ao executar unlink %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Abreviatura de tipo desconhecida: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Falhou ao ligar %s a %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Abrindo ficheiro de configuração %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Limite DeLink de %sB atingido.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linha %d é demasiado longa (max %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arquivo não possuía campo pacote"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome."
+msgid " %s has no override entry\n"
+msgstr " %s não possui entrada override\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Erro de sintaxe %s:%u: Tag Malformada"
+msgid " %s maintainer is %s not %s\n"
+msgstr " maintainer de %s é %s, não %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor"
+msgid " %s has no source override entry\n"
+msgstr " %s não possui fonte de entrada de 'override'\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto"
+msgid " %s has no binary override entry either\n"
+msgstr " %s não possui de igual modo entrada binária de 'override'\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Erro de sintaxe %s:%u: Muitos includes encadeados"
+msgid "Internal error, could not locate member %s"
+msgstr "Erro Interno, não foi possível localizar o membro %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Falha ao alocar memória"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada"
+msgid "Unable to open %s"
+msgstr "Impossível abrir %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro"
+msgid "Malformed override %s line %lu #1"
+msgstr "Override malformado %s linha %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Impossível ler %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Override malformado %s linha %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Erro !"
+msgid "Malformed override %s line %lu #3"
+msgstr "Override malformado %s linha %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Pronto"
+msgid "Failed to read the override file %s"
+msgstr "Falha ao ler o ficheiro override %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Opção de linha de comandos '%c' [de %s] é desconnhecida."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algoritmo de Compressão Desconhecido '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Opção de linha de comandos %s não é compreendida"
+msgid "Compressed output %s needs a compression set"
+msgstr "Saída compactada %s precisa de um conjunto de compressão"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Opção de linha de comandos %s não é booleana"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Falha ao criar pipe IPC para subprocesso"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Opção %s requer um argumento."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Falha ao criar FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Opção %s: Especificação de item de configuração deve possuir um =<val>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Falha ao executar fork"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Opção %s requer um argumento inteiro, não '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Compactar Filho"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opção '%s' é demasiado longa"
+msgid "Internal error, failed to create %s"
+msgstr "Erro Interno, Falha ao criar %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Falha ao criar subprocesso IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Operação %s inválida"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Falha ao executar compressor "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Impossível executar stat ao ponto de montagem %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "descompactador"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Impossível mudar para %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO para subprocesso/arquivo falhou"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Impossível executar stat ao cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Falha ao ler durante o cálculo de MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Não utilizando locking para ficheiro lock apenas de leitura %s"
+msgid "Problem unlinking %s"
+msgstr "Problema ao executar unlinking %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Não foi possível abrir ficheiro de lock %s"
+msgid "Failed to rename %s to %s"
+msgstr "Falha ao renomear %s para %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Não usando locking para ficheiro de lock montado via nfs %s"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "S"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Não foi possível obter lock %s"
+msgid "Regex compilation error - %s"
+msgstr "Erro de compilação de regex - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Esperou, por %s mas não estava lá"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Os pacotes a seguir têm dependências não satisfeitas:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Sub-processo %s recebeu uma falha de segmentação."
+msgid "but %s is installed"
+msgstr "mas %s está instalado"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Sub-processo %s retornou um código de erro (%u)"
+msgid "but %s is to be installed"
+msgstr "mas %s está para ser instalado"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Sub-processo %s finalizou inesperadamente"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "mas não está instalável"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Não foi possível abrir ficheiro o %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "mas é um pacote virtual"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "leitura, ainda restam %lu para serem lidos mas não resta nenhum"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "mas não está instalado"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "gravação, ainda restam %lu para gravar mas não foi possível"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "mas não vai ser instalado"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problema ao fechar o ficheiro"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " ou"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problema removendo o link ao ficheiro"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Os seguintes NOVOS pacotes serão instalados:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problema sincronizando o ficheiro"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Os seguintes pacotes serão REMOVIDOS:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Cache de pacotes vazia"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Os seguintes pacotes serão mantidos em suas versões actuais:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "O ficheiro de cache de pacotes está corrompido"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Os seguintes pacotes serão actualizados:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "O ficheiro de cache de pacotes é de uma versão incompatível"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Aos seguintes pacotes será feito o DOWNGRADE :"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Os seguintes pacotes mantidos serão mudados :"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Este APT não suporta o Sistema de Versões '%s'"
+msgid "%s (due to %s) "
+msgstr "%s (devido a %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "A cache de pacotes foi gerada para uma arquitectura diferente"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depende"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Pré-Depende"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Sugere"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu a que foi feito o downgrade, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recomenda"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a remover e %lu não actualizados.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Em Conflito"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Substitui"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Corrigindo dependências..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Obsoleta"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " falhou."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Impossível corrigir dependências"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "importante"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossível minimizar o conjunto de actualizações"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "requerido"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Feito"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "padrão"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Você pode querer executar `apt-get -f install' para corrigir isso."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcional"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependências não satisfeitas. Tente utilizar -f."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: Os seguintes pacotes não podem ser autenticados"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Construindo Árvore de Dependências"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticação ultrapassado.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versões Candidatas"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Instalar estes pacotes sem verificação [y/N]? "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Geração de Dependência"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Alguns pacotes não puderam ser autenticados"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Juntando informação Disponível"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Há problemas e -y foi usado sem --force-yes"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Falhou ao abrir %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Falha ao escrever ficheiro %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Impossível o parse ao ficheiro de pacote %s (1)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Erro Interno, Ordering não terminou"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Impossível o parse ao ficheiro de pacote %s (2)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Impossível criar lock no directório de download"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Linha malformada %lu na lista de fontes %s (URI)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "A lista de fontes não pôde ser lida."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Linha malformada %lu na lista de fontes %s (distribuição)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Estranho.. Os tamanhos não coincidiram, escreva para apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Linha malformada %lu na lista de fontes %s (parse de URI)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "É necessário fazer o download de %sB/%sB de arquivos.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Linha malformada %lu na lista de fontes %s (Distribuição absoluta)"
+msgid "Need to get %sB of archives.\n"
+msgstr "É necessário fazer o download de %sB de arquivos.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Linha malformada %lu na lista de fontes %s (dist parse)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"Depois de descompactar, %sB adicionais de espaço em disco serão utilizados.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Abrindo %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Depois de descompactar, %sB de espaço em disco serão libertados.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linha %u é demasiado longa na lista de fontes %s."
+msgid "Couldn't determine free space in %s"
+msgstr "Impossível de determinar espaço livre em %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Linha malformada %u na lista de fontes %s (tipo)"
+msgid "You don't have enough free space in %s."
+msgstr "Você não possui espaço livre suficiente em %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only especificado mas essa não é uma operação trivial."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Linha malformada %u na lista de fontes %s (id de fornecedor)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Sim, faça como eu digo!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Esta execução da instalação irá requerer remover temporariamente o pacote "
-"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto "
-"normalmente é mau, mas se você quer realmente fazer isso, active a opção "
-"APT::Force-LoopBreak."
+"Você está prestes a fazer algo potencialmente nocivo.\n"
+"Para continuar escreva a frase '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Tipo do ficheiro de índice '%s' não é suportado"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abortado."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Você deseja continuar [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um "
-"repositório para o mesmo."
+msgid "Failed to fetch %s %s\n"
+msgstr "Falha ao obter %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Falhou o download de alguns ficheiros"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Download completo e em modo de apenas download"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
-"pacotes mantidos (hold)."
+"Impossível obter alguns arquivos, execute talvez apt-get update ou tente com "
+"--fix-missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Impossível corrigir problemas, você manteve (hold) pacotes estragados."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing e troca de mídia não são suportados actualmente"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Falta directório de listas %spartial."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Impossível corrigir os pacotes em falta."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Falta o directório de repositório %spartial."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Abortando a Instalação."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "A obter o ficheiro %li de %li (%s restantes)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Nota, seleccionando %s em vez de %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "A obter o ficheiro %li·of·%li"
+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"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "O driver do método %s não pôde ser encontrado."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "O pacote %s não está instalado, então não será removido\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Método %s não iniciou corretamente"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "O pacote %s é um pacote virtual disponibilizado por:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Instalado]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Você deve seleccionar explicitamente um para instalar."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter."
+"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
+"Isso pode significar que o pacote falta, ficou obsoleto ou\n"
+"está disponível somente a partir de outra fonte\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "No entanto, os seguintes pacotes substituem-no:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Sistema de empacotamento '%s' não é suportado"
+msgid "Package %s has no installation candidate"
+msgstr "O pacote %s não tem candidato para instalação"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1156
+#, c-format
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
msgstr ""
-"Não foi possível determinar um tipo de sistema de empacotamento aplicável"
+"A reinstalação de %s não é possível, o download do mesmo não pode ser "
+"feito.\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Unable to stat %s."
-msgstr "Impossível executar stat %s."
+msgid "%s is already the newest version.\n"
+msgstr "%s já é a versão mais recente.\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Você deve colocar alguns URIs 'source' no seu sources.list"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release '%s' para '%s' não foi encontrado"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "A lista de fontes não pôde ser lida."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versão '%s' para '%s' não foi encontrada"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou "
-"aberto."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versão seleccionada %s (%s) para %s\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Você terá que executar apt-get update para corrigir estes problemas"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "O comando update não leva argumentos"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Registro inválido no ficheiro de preferências, sem cabeçalho Pacote"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Impossível criar lock no directório de listas"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Não foi possível entender o tipo de marca %s"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Nenhuma prioridade (ou zero) especificada para marcação"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "A Cache possui um sistema de versões incompatível"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Os seguintes NOVOS pacotes serão instalados:"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Um erro ocorreu ao processar %s (NovoPacote)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Um erro ocorreu ao processar %s (UsePacote1)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "A seguinte informação pode ajudar a resolver a situação:"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Um erro ocorreu ao processar %s (UsePacote2)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Erro Interno, o solucionador de problemas estragou coisas"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Erro Interno, AllUpgrade estragou algo"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Um erro ocorreu ao processar %s (NovaVersão1)"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Impossível encontrar o pacote %s"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Um erro ocorreu ao processar %s (UsePacote3)"
+msgid "Couldn't find package %s"
+msgstr "Impossível encontrar o pacote %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Um erro ocorreu ao processar %s (NovaVersão2)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Nota, seleccionando %s para a expressão regular '%s'\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "mas %s está para ser instalado"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr ""
-"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de "
-"suportar."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Você deve querer executar `apt-get -f install' para corrigir isto:"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Uau, você excedeu o número de versões que este APT é capaz de suportar."
+"Dependências não satisfeitas. Tente `apt-get -f install' sem nenhum pacote "
+"(ou especifique uma solução)."
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Uau, você excedeu o número de versões que este APT é capaz de suportar."
+"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 instável, que alguns pacotes requisitados ainda não foram \n"
+"criados ou foram tirados do Incoming."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Uau, você excedeu o número de dependências que este APT é capaz de suportar."
+"Já que você requisitou uma única operação é extremamente provável que o \n"
+"pacote esteja simplesmente não instalável e deve ser enviado um relatório "
+"de\n"
+"bug sobre esse pacote."
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Um erro ocorreu ao processar %s (FindPkg)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pacotes estragados"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Um erro ocorreu ao processar %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Os seguintes pacotes extra serão instalados:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Pacotes sugeridos :"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Pacotes recomendados :"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calculando Actualização... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Falhou"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Pronto"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Erro Interno, o solucionador de problemas estragou coisas"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"O pacote %s %s não foi encontrado ao processar as dependências de ficheiros"
+"Deve-se especificar pelo menos um pacote para que se obtenha o código fonte"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s"
-
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "A Ler Listas de Pacotes"
+msgid "Unable to find a source package for %s"
+msgstr "Impossível encontrar um pacote de código fonte para %s"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Obtendo File Provides"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Saltando ficheiro do qual já havia sido feito download '%s'\n"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Unable to write to %s"
-msgstr "Impossível escrever para %s"
+msgid "You don't have enough free space in %s"
+msgstr "Você não possui espaço livre suficiente em %s"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Erro de I/O ao gravar a cache de código fonte"
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Preciso obter %sB/%sB de arquivos de código fonte.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "falhou renomear, %s (%s -> %s)."
+msgid "Need to get %sB of source archives.\n"
+msgstr "Precisa obter %sB de arquivos de código fonte.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum incorreto"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Obter Código Fonte %s\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum incorreto"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Falha ao obter alguns arquivos."
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2277
+#, c-format
+msgid "Skipping unpack of already unpacked source in %s\n"
msgstr ""
-"Não existe qualquer chave pública disponível para as seguintes IDs de "
-"chave:\n"
+"Saltando a descompactação de pacote código fonte já descompactado em %s\n"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar "
-"que você precisa consertar manualmente este pacote. (devido a arquitectura "
-"não especificada)."
+msgid "Unpack command '%s' failed.\n"
+msgstr "O comando de descompactação '%s' falhou.\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
-"que você precisa consertar manualmente este pacote."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr ""
-"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
-"para o pacote %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Tamanho incorrecto"
+msgid "Build command '%s' failed.\n"
+msgstr "O comando de compilação '%s' falhou.\n"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "O bloco de fabricante %s não contém a impressão digital"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "O processo filho falhou"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-"Utilizando o ponto de montagem do CD-ROM %s\n"
-"A montar o CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "A identificar.. "
+"Deve especificar pelo menos um pacote para verificar as dependências de "
+"compilação"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Label Guardada: %s \n"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Impossível obter informações de dependências de compilação para %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "A utilizar o mount point do CD-ROM %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "A desmontar o CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "A aguardar pelo disco...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "A montar o CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "A pesquisar os ficheiros de index do Disco..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Encontrou %i indexes de pacotes, %indexes de source e %i assinaturas\n"
+msgid "%s has no build depends.\n"
+msgstr "%s não tem dependências de compilação.\n"
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Found label '%s'\n"
-msgstr "Encontrada etiqueta '%s'\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Isso não é um nome válido, tente de novo.\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"a dependência de %s por %s não pôde ser satisfeita porque o pacote %s não "
+"pôde ser encontrado"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Este Disco tem o nome: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "A copiar listas de pacotes..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "A escrever lista de novas source\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "As entradas de listas de Source para este Disco são:\n"
-
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "A desmontar o CD-ROM...\n"
+"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão "
+"disponível do pacote %s pode satisfazer os requisitos de versão"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Escreveu %i registos.\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Falha ao satisfazer a dependência %s para %s: Pacote instalado %s é muito "
+"novo"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Escreveu %i registos com %i ficheiros em falta.\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Falha ao satisfazer a dependência %s para %s: %s"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Não foi possível satisfazer as dependências de compilação para %s."
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não "
-"coincidentes\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Falha ao processar as dependências de compilação"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Falta directório de listas %spartial."
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Módulos Suportados:"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "A preparar %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Utilização: apt-get [opções] comando\n"
+" apt-get [opções] install|remove pacote1 [pacote2 ...]\n"
+" apt-get [opções] source pacote1 [pacote2 ...]\n"
+"\n"
+"O apt-get é um interface simples de linha de comando para fazer o\n"
+"download de pacotes e instalá-los. Os comandos usados mais frequentemente\n"
+"são o update e install\n"
+"\n"
+"Comandos:\n"
+" update - Obtém novas listas de pacotes\n"
+" upgrade - Executa uma actualização\n"
+" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n"
+" remove - Remove um pacote\n"
+" source - Faz o download de arquivos de código fonte\n"
+" build-dep - Configura as dependências de compilação de pacotes código "
+"fonte\n"
+" dist-upgrade - Actualiza a distribuição, consulte apt-get(8)\n"
+" dselect-upgrade - Segue as selecções feitas do dselect\n"
+" clean - Apaga arquivos obtidos para instalação\n"
+" autoclean - Apaga arquivos antigos obtidos para instalação\n"
+" check - Verifica se não há dependências erradas\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda\n"
+" -q Saída para log, excepto para erros\n"
+" -qq Sem saída, excepto para erros\n"
+" -d Fazer o download apenas - NÃO instalar ou descompactar arquivos\n"
+" -s Não-agir. Executar simulação de ordenação\n"
+" -y Assumir Sim para todas as perguntas, sem pedir confirmação\n"
+" -f Tenta continuar se a verificação de integridade falhar\n"
+" -m Tenta continuar se os arquivos não poderem ser localizados\n"
+" -u Mostra uma lista também de pacotes actualizados\n"
+" -b Compila o pacote fonte depois de fazer o download\n"
+" -c=? Ler este arquivo de configuração\n"
+" -o=? Definir uma opção de configuração arbitrária, \n"
+" ex -o dir::cache=/tmp\n"
+"Veja as páginas do manual apt-get(8), sources.list(5) e apt.conf(5)\n"
+"para mais informações e opções.\n"
+" Este APT tem Poderes de Super Vaca.\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "A desempacotar %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Atingido "
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "A preparar para configurar %s"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Obter:"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "A configurar %s"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Erro processando o directório %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Installed %s"
-msgstr "%s instalado"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Obtidos %sB em %s (%sB/s)\n"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "A preparar para remoção de %s"
+msgid " [Working]"
+msgstr " [Trabalhando]"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Removing %s"
-msgstr "A remover %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Troca de mídia: Por favor insira o disco chamado\n"
+" '%s'\n"
+"na drive '%s' e pressione enter\n"
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "%s removido"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Registro de pacote desconhecido!"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "A preparar para remover completamente %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilização: apt-sortpkgs [opções] ficheiro1 [ficheiro2 ...]\n"
+"\n"
+"O apt-sortpkgs é uma ferramenta simples para ordenar ficheiros de pacote.\n"
+"A opção -s é usada para indicar que tipo de ficheiro é.\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda\n"
+" -s Usar ordenação de arquivo fonte\n"
+" -c=? Ler este arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Remoção completa de %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Configuração padrão Errada!"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Pressione enter para continuar."
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Não foi possível abrir ficheiro o %s"
+# Note to translators: The following four messages belong together. It doesn't
+# matter where sentences start, but it has to fit in just these four lines, and
+# at only 80 characters per line, if possible.
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Alguns erros ocorreram ao descompactar. Irei configurar os pacotes"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Falha ao criar pipe IPC para subprocesso"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "que foram instalados. Isto pode resultar em erros duplicados"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Conexão encerrada prematuramente"
+#: dselect/install:102
+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:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"acima desta mensagem são importantes. Por favor resolva-os e execute [I]"
+"nstalar novamente"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Juntando informação Disponível"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "O caminho de desvio é muito longo"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Falha ao renomear %s para %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Ficheiro %s/%s sobrescreve o que está no pacote %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Impossível ler %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Os directórios info e temp precisam estar no mesmo sistema de arquivos"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "A Ler Listas de Pacotes"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Ficheiro de controle não interpretável"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Impossível encontrar o pacote %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Impossível ler a base de dados de cdrom %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Total de Nomes de Pacotes : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido "
+"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Pacotes Normais: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD errado"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pacotes Puramente Virtuais: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pacotes Virtuais Únicos: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disco não encontrado"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Pacotes Virtuais Misturados: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Arquivo não encontrado"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Faltam: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Falha ao executar stat"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Total de Versões Distintas: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Falha ao definir hora de modificação"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Total de Versões Distintas: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI inválido, URIs locais não devem iniciar com //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Total de Dependências: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "A entrar no sistema"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Total de relações Ver/Ficheiro: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Impossível determinar o nome do posto"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Total de relações Ver/Ficheiro: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Impossível determinar o nome local"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Total de Mapeamentos Disponibilizados: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "O servidor recusou a nossa ligação e respondeu: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Total de Strings Globbed: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER falhou, o servidor respondeu: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total de espaço de Dependência de Versão: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS falhou, o servidor respondeu: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total de espaço Desperdiçado: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Um servidor de proxy foi especificado mas não um script de login, Acquire::"
+"ftp::ProxyLogin está vazio."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total de Espaço Contabilizado: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Comando de script de login '%s' falhou, o servidor respondeu: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "O ficheiro do pacote %s está dessincronizado."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE falhou, o servidor respondeu: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Você deve dar exactamente um pattern"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Tempo limite de ligação atingido"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Não foi encontrado nenhum pacote"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Servidor fechou a ligação"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Ficheiros de Pacotes :"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Erro de leitura"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Uma resposta sobrecarregou o buffer"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Corrupção de protocolo"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pacotes Marcados: "
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Erro de escrita"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(não encontrado)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Não foi possível criar um socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalado: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Não foi possível ligar socket de dados, a ligação expirou"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(nenhum)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Não foi possível ligar socket passivo."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidato: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo não foi capaz de obter um socket de escuta"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Marcação do Pacote: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Não foi possível fazer o bind a um socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabela de Versão:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Não foi possível executar listen no socket"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Não foi possível determinar o nome do socket"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s para %s %s compilado em %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Impossível enviar o comando PORT"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Utilização: apt-cache [opções] comando\n"
-" apt-cache [opções] add ficheiro1 [ficheiro1 ...]\n"
-" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n"
-" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n"
-"\n"
-"O apt-cache é uma ferramenta de baixo nível utilizada para manipular\n"
-"os ficheiros de cache binários do APT e para procurar informações\n"
-"neles\n"
-"\n"
-"Comandos:\n"
-" add - Adiciona um ficheiro de pacote à cache de fontes\n"
-" gencaches - Constrói ambas as caches de pacotes e de fontes\n"
-" showpkg - Mostra informações gerais sobre um pacote\n"
-" showsrc - Mostra registros de fontes\n"
-" stats - Mostra estatísticas básicas\n"
-" dump - Mostra o ficheiro inteiro de forma concisa\n"
-" dumpavail - Imprime um ficheiro disponível para stdout\n"
-" unmet - Mostra dependências não satisfeitas\n"
-" search - Procura na lista de pacotes por um pattern regex\n"
-" show - Mostra um registro legível sobre o pacote\n"
-" depends - Mostra informações em bruto de dependências de um pacote\n"
-" pkgnames - Lista o nome de todos os pacotes\n"
-" dotty - Gera gráficos de pacotes para o GraphVis\n"
-" xvcg - Gera gráficos de pacotes para o xvcg\n"
-" policy - Mostra as configurações de políticas\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda.\n"
-" -p=? A cache de pacotes.\n"
-" -s=? A cache de fontes.\n"
-" -q Desabilita o indicador de progresso.\n"
-" -i Mostra apenas dependências importantes para o comando unmet.\n"
-" -c=? Ler o ficheiro de configuração especificado.\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-"Veja as páginas do manual apt-cache(8) e apt.conf(5) para mais informações.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Família de endereços %u desconhecida (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Por favor forneça um nome para este Disco, tal como 'Debian 2.1r1 Disco 1'"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT falhou, o servidor respondeu: %s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Por favor insira um Disco no leitor e pressione enter"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Ligação de socket de dados expirou"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Impossível aceitar ligação"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumentos não estão em pares"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problema fazendo o hash do ficheiro"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Utilização: apt-config [opções] comando\n"
-"\n"
-"O apt-config é uma ferramenta simples para ler o ficheiro de configuração\n"
-"do APT\n"
-"\n"
-"Comandos:\n"
-" shell - Modo Shell\n"
-" dump - Mostra a configuração\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda.\n"
-" -c=? Ler este arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Impossível obter ficheiro, o servidor respondeu '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Socket de dados expirou"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s não é um pacote DEB válido."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Transferência de dados falhou, o servidor respondeu '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Utilização: apt-extracttemplates ficheiro1 [ficheiro2 ...]\n"
-"\n"
-"O apt-extracttemplates é uma ferramenta para extrair configuração\n"
-"e informação de template de pacotes debian.\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda\n"
-" -t Define o directório temporário\n"
-" -c=? Ler este arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Pesquisa"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Não foi possível obter a versão do debconf. O debconf está instalado?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Impossível invocar "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista de extensão de pacotes é demasiado longa"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Ligando a %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Erro processando o directório %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista de extensão de fontes é demasiado longa"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Erro ao gravar cabeçalho no ficheiro de conteúdo"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Não posso iniciar a ligação para %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Erro processando o ficheiro Contents %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Utilização: apt-ftparchive [opções] comando\n"
-"Comandos: packages caminho_binário [ficheiro_override [prefixo_caminho]]\n"
-" sources caminho_fonte [ficheiro_override [prefixo_caminho]]\n"
-" contents caminho\n"
-" release caminho\n"
-" generate config [grupos]\n"
-" clean config\n"
-"\n"
-"O apt-ftparchive gera ficheiros de índice para repositórios Debian. Ele \n"
-"suporta muitos estilos de criação, desde totalmente automatizados até \n"
-"substitutos funcionais para o dpkg-scanpackages e dpkg-scansources\n"
-"\n"
-"O apt-ftparchive gera ficheiros Packages a partir de uma árvore de .debs.\n"
-" O ficheiro Package contém o conteúdo de todos os campos de controle de \n"
-"cada pacote bem como o hash MD5 e tamanho do ficheiro. Um ficheiro \n"
-"override é suportado para forçar o valor de Priority e Section.\n"
-"\n"
-"Similarmente, o apt-ftparchive gera ficheiros Sources a partir de uma \n"
-"árvore de .dscs. A opção --source-override pode ser utilizada para \n"
-"especificar um ficheiro override de fontes\n"
-"\n"
-"Os comandos 'packages' e 'sources' devem ser executados na raiz da \n"
-"árvore. CaminhoBinário deve apontar para a base de procura recursiva \n"
-"e o ficheiro override deve conter as flags override. CaminhoPrefixo é \n"
-"incluído aos campos filename caso esteja presente. Exemplo de uso do \n"
-"repositório Debian :\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda\n"
-" --md5 Controla a criação do MD5\n"
-" -s=? Ficheiro override de código-fonte \n"
-" -q Quieto\n"
-" -d=? Selecciona a base de dados de caching opcional\n"
-" --no-delink Habilita o modo de debug delinking\n"
-" --contents Controla a criação do ficheiro de conteúdo\n"
-" -c=? Lê este ficheiro de configuração\n"
-" -o=? Define uma opção de configuração arbitrária"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Não foi possível ligar em %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Ligando a %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Não foi possível resolver '%s'"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nenhuma selecção coincidiu"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Falha temporária resolvendo '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Alguns ficheiros faltam no ficheiro de grupo de pacotes `%s'"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "A base de dados estava corrompida, ficheiro renomeado para %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Impossível ligar a %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB é antiga, tentando uma actualização %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Não foi possível aceder à 'keyring': '%s'"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: A lista de argumentos de Acquire::gpgv::Options é demasiado longa. A sair."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"O formato DB é inválido. Se actualizou a partir de uma versão antiga do apt, "
-"por favor remova-a e recrie a base de dados."
+"Erro interno: Assinatura válida, mas não foi possível determinar a impressão "
+"digital da chave?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Pelo menos uma assinatura inválida foi encontrada."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Não foi possível abrir o ficheiro DB %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Não foi possível executar '%s' para verificar a assinatura (gnupg está "
+"instalado?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "O arquivo não tem registro de controle"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Erro desconhecido ao executar gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Não foi possível obter um cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "As seguintes assinaturas estavam inválidas:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"As seguintes assinaturas não puderam ser verificadas porque a chave pública "
+"não está disponível:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Não foi possível ler o directório %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Não foi possível abrir pipe para %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Não foi possível fazer stat %s\n"
+msgid "Read error from %s process"
+msgstr "Erro de leitura do processo %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Aguardando por cabeçalhos"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Erros aplicam-se ao ficheiro "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Linha de cabeçalho errada"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Falha ao resolver %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "O servidor http enviou um cabeçalho de resposta inválido"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Falhou ao percorrer a árvore"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "O servidor http enviou um cabeçalho Conten-Length inválido"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Falhou ao abrir %s"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "O servidor http enviou um cabeçalho Conten-Range inválido"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Este servidor http possui suporte a range errado"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Formato de data desconhecido"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Select falhou."
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "A ligação expirou"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Erro gravando para ficheiro de saída"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Erro gravando para ficheiro"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Erro gravando para o ficheiro"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Erro lendo do servidor. O Remoto fechou a ligação"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Erro lendo do servidor"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Dados de cabeçalho errados"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Falhou a ligação"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Erro interno"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Não é possível fazer mmap a um ficheiro vazio"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Falhou ao executar readlink %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Impossível fazer mmap de %lu bytes"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Falhou ao executar unlink %s"
+msgid "Selection %s not found"
+msgstr "Selecção %s não encontrada"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Falhou ao ligar %s a %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Abreviatura de tipo desconhecida: '%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Limite DeLink de %sB atingido.\n"
+msgid "Opening configuration file %s"
+msgstr "Abrindo ficheiro de configuração %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arquivo não possuía campo pacote"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linha %d é demasiado longa (max %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s não possui entrada override\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " maintainer de %s é %s, não %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Erro de sintaxe %s:%u: Tag Malformada"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s não possui fonte de entrada de 'override'\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s não possui de igual modo entrada binária de 'override'\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Erro Interno, não foi possível localizar o membro %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Erro de sintaxe %s:%u: Muitos includes encadeados"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Falha ao alocar memória"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Impossível abrir %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Override malformado %s linha %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Override malformado %s linha %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Erro !"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Override malformado %s linha %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Pronto"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Falha ao ler o ficheiro override %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Opção de linha de comandos '%c' [de %s] é desconnhecida."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algoritmo de Compressão Desconhecido '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Opção de linha de comandos %s não é compreendida"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Saída compactada %s precisa de um conjunto de compressão"
+msgid "Command line option %s is not boolean"
+msgstr "Opção de linha de comandos %s não é booleana"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Falha ao criar FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Opção %s requer um argumento."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Falha ao executar fork"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opção %s: Especificação de item de configuração deve possuir um =<val>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Compactar Filho"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Opção %s requer um argumento inteiro, não '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Erro Interno, Falha ao criar %s"
+msgid "Option '%s' is too long"
+msgstr "Opção '%s' é demasiado longa"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Falha ao criar subprocesso IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Falha ao executar compressor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Operação %s inválida"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "descompactador"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Impossível executar stat ao ponto de montagem %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO para subprocesso/arquivo falhou"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Impossível mudar para %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Falha ao ler durante o cálculo de MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Impossível executar stat ao cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problema ao executar unlinking %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Não utilizando locking para ficheiro lock apenas de leitura %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "S"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Não foi possível abrir ficheiro de lock %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Erro de compilação de regex - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Não usando locking para ficheiro de lock montado via nfs %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Os pacotes a seguir têm dependências não satisfeitas:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Não foi possível obter lock %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "mas %s está instalado"
+msgid "Waited for %s but it wasn't there"
+msgstr "Esperou, por %s mas não estava lá"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "mas %s está para ser instalado"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Sub-processo %s recebeu uma falha de segmentação."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "mas não está instalável"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Sub-processo %s retornou um código de erro (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "mas é um pacote virtual"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Sub-processo %s finalizou inesperadamente"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "mas não está instalado"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Não foi possível abrir ficheiro o %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "mas não vai ser instalado"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "leitura, ainda restam %lu para serem lidos mas não resta nenhum"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " ou"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "gravação, ainda restam %lu para gravar mas não foi possível"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Os seguintes NOVOS pacotes serão instalados:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problema ao fechar o ficheiro"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Os seguintes pacotes serão REMOVIDOS:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problema removendo o link ao ficheiro"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Os seguintes pacotes serão mantidos em suas versões actuais:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problema sincronizando o ficheiro"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Os seguintes pacotes serão actualizados:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Cache de pacotes vazia"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Aos seguintes pacotes será feito o DOWNGRADE :"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "O ficheiro de cache de pacotes está corrompido"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Os seguintes pacotes mantidos serão mudados :"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "O ficheiro de cache de pacotes é de uma versão incompatível"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (devido a %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Este APT não suporta o Sistema de Versões '%s'"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "A cache de pacotes foi gerada para uma arquitectura diferente"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depende"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Pré-Depende"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu a que foi feito o downgrade, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Sugere"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a remover e %lu não actualizados.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recomenda"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Em Conflito"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Corrigindo dependências..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Substitui"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " falhou."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Obsoleta"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Impossível corrigir dependências"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossível minimizar o conjunto de actualizações"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "importante"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Feito"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "requerido"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Você pode querer executar `apt-get -f install' para corrigir isso."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "padrão"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependências não satisfeitas. Tente utilizar -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: Os seguintes pacotes não podem ser autenticados"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticação ultrapassado.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Construindo Árvore de Dependências"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Instalar estes pacotes sem verificação [y/N]? "
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versões Candidatas"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Alguns pacotes não puderam ser autenticados"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Geração de Dependência"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Há problemas e -y foi usado sem --force-yes"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Juntando informação Disponível"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Falhou ao abrir %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado."
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Falha ao escrever ficheiro %s"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Erro Interno, Ordering não terminou"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Impossível o parse ao ficheiro de pacote %s (1)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Impossível criar lock no directório de download"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Impossível o parse ao ficheiro de pacote %s (2)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Estranho.. Os tamanhos não coincidiram, escreva para apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Linha malformada %lu na lista de fontes %s (URI)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "É necessário fazer o download de %sB/%sB de arquivos.\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Linha malformada %lu na lista de fontes %s (distribuição)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "É necessário fazer o download de %sB de arquivos.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Linha malformada %lu na lista de fontes %s (parse de URI)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr ""
-"Depois de descompactar, %sB adicionais de espaço em disco serão utilizados.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Linha malformada %lu na lista de fontes %s (Distribuição absoluta)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Depois de descompactar, %sB de espaço em disco serão libertados.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Linha malformada %lu na lista de fontes %s (dist parse)"
+
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "Abrindo %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Impossível de determinar espaço livre em %s"
+msgid "Line %u too long in source list %s."
+msgstr "Linha %u é demasiado longa na lista de fontes %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Você não possui espaço livre suficiente em %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Linha malformada %u na lista de fontes %s (tipo)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only especificado mas essa não é uma operação trivial."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Sim, faça como eu digo!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Linha malformada %u na lista de fontes %s (id de fornecedor)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Você está prestes a fazer algo potencialmente nocivo.\n"
-"Para continuar escreva a frase '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abortado."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Você deseja continuar [Y/n]? "
+"Esta execução da instalação irá requerer remover temporariamente o pacote "
+"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto "
+"normalmente é mau, mas se você quer realmente fazer isso, active a opção "
+"APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Falha ao obter %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Falhou o download de alguns ficheiros"
+msgid "Index file type '%s' is not supported"
+msgstr "Tipo do ficheiro de índice '%s' não é suportado"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Download completo e em modo de apenas download"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um "
+"repositório para o mesmo."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Impossível obter alguns arquivos, execute talvez apt-get update ou tente com "
-"--fix-missing?"
+"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
+"pacotes mantidos (hold)."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing e troca de mídia não são suportados actualmente"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Impossível corrigir problemas, você manteve (hold) pacotes estragados."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Impossível corrigir os pacotes em falta."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Falta directório de listas %spartial."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Abortando a Instalação."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Falta o directório de repositório %spartial."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Nota, seleccionando %s em vez de %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "A obter o ficheiro %li de %li (%s restantes)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, 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"
+msgid "Retrieving file %li of %li"
+msgstr "A obter o ficheiro %li·of·%li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "O pacote %s não está instalado, então não será removido\n"
+msgid "The method driver %s could not be found."
+msgstr "O driver do método %s não pôde ser encontrado."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "O pacote %s é um pacote virtual disponibilizado por:\n"
+msgid "Method %s did not start correctly"
+msgstr "Método %s não iniciou corretamente"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Instalado]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Você deve seleccionar explicitamente um para instalar."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Sistema de empacotamento '%s' não é suportado"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr ""
+"Não foi possível determinar um tipo de sistema de empacotamento aplicável"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Impossível executar stat %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Você deve colocar alguns URIs 'source' no seu sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
-"Isso pode significar que o pacote falta, ficou obsoleto ou\n"
-"está disponível somente a partir de outra fonte\n"
+"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou "
+"aberto."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "No entanto, os seguintes pacotes substituem-no:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Você terá que executar apt-get update para corrigir estes problemas"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Registro inválido no ficheiro de preferências, sem cabeçalho Pacote"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "O pacote %s não tem candidato para instalação"
+msgid "Did not understand pin type %s"
+msgstr "Não foi possível entender o tipo de marca %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Nenhuma prioridade (ou zero) especificada para marcação"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "A Cache possui um sistema de versões incompatível"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Um erro ocorreu ao processar %s (NovoPacote)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s já é a versão mais recente.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Um erro ocorreu ao processar %s (UsePacote1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Um erro ocorreu ao processar %s (UsePacote2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release '%s' para '%s' não foi encontrado"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versão '%s' para '%s' não foi encontrada"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Um erro ocorreu ao processar %s (NovaVersão1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versão seleccionada %s (%s) para %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Um erro ocorreu ao processar %s (UsePacote3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "O comando update não leva argumentos"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Um erro ocorreu ao processar %s (NovaVersão2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Impossível criar lock no directório de listas"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Falhou o download de alguns ficheiros de índice, foram ignorados ou os "
-"antigos foram usados em seu lugar."
+"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de "
+"suportar."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de versões que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Os seguintes NOVOS pacotes serão instalados:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de versões que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de dependências que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Erro Interno, o solucionador de problemas estragou coisas"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Um erro ocorreu ao processar %s (FindPkg)"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Erro Interno, AllUpgrade estragou algo"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Um erro ocorreu ao processar %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Impossível encontrar o pacote %s"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"O pacote %s %s não foi encontrado ao processar as dependências de ficheiros"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Impossível encontrar o pacote %s"
+msgid "Couldn't stat source package list %s"
+msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Obtendo File Provides"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Erro de I/O ao gravar a cache de código fonte"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Nota, seleccionando %s para a expressão regular '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "falhou renomear, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "mas %s está para ser instalado"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum incorreto"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Você deve querer executar `apt-get -f install' para corrigir isto:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum incorreto"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Dependências não satisfeitas. Tente `apt-get -f install' sem nenhum pacote "
-"(ou especifique uma solução)."
+"Não existe qualquer chave pública disponível para as seguintes IDs de "
+"chave:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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 instável, que alguns pacotes requisitados ainda não foram \n"
-"criados ou foram tirados do Incoming."
+"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar "
+"que você precisa consertar manualmente este pacote. (devido a arquitectura "
+"não especificada)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Já que você requisitou uma única operação é extremamente provável que o \n"
-"pacote esteja simplesmente não instalável e deve ser enviado um relatório "
-"de\n"
-"bug sobre esse pacote."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pacotes estragados"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Os seguintes pacotes extra serão instalados:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Pacotes sugeridos :"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Pacotes recomendados :"
+"Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
+"que você precisa consertar manualmente este pacote."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calculando Actualização... "
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
+"para o pacote %s."
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Pronto"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Tamanho incorrecto"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Erro Interno, o solucionador de problemas estragou coisas"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "O bloco de fabricante %s não contém a impressão digital"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"Deve-se especificar pelo menos um pacote para que se obtenha o código fonte"
+"Utilizando o ponto de montagem do CD-ROM %s\n"
+"A montar o CD-ROM\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Impossível encontrar um pacote de código fonte para %s"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "A identificar.. "
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Saltando ficheiro do qual já havia sido feito download '%s'\n"
+msgid "Stored label: %s\n"
+msgstr "Label Guardada: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Você não possui espaço livre suficiente em %s"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "A desmontar o CD-ROM...\n"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Preciso obter %sB/%sB de arquivos de código fonte.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "A utilizar o mount point do CD-ROM %s\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Precisa obter %sB de arquivos de código fonte.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "A desmontar o CD-ROM\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Obter Código Fonte %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "A aguardar pelo disco...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Falha ao obter alguns arquivos."
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "A montar o CD-ROM...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr ""
-"Saltando a descompactação de pacote código fonte já descompactado em %s\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "A pesquisar os ficheiros de index do Disco..\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "O comando de descompactação '%s' falhou.\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Encontrou %i indexes de pacotes, %indexes de source e %i assinaturas\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n"
+msgid "Found label '%s'\n"
+msgstr "Encontrada etiqueta '%s'\n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Isso não é um nome válido, tente de novo.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "O comando de compilação '%s' falhou.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Este Disco tem o nome: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "O processo filho falhou"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "A copiar listas de pacotes..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "A escrever lista de novas source\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Deve especificar pelo menos um pacote para verificar as dependências de "
-"compilação"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "As entradas de listas de Source para este Disco são:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Impossível obter informações de dependências de compilação para %s"
+msgid "Wrote %i records.\n"
+msgstr "Escreveu %i registos.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s não tem dependências de compilação.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Escreveu %i registos com %i ficheiros em falta.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"a dependência de %s por %s não pôde ser satisfeita porque o pacote %s não "
-"pôde ser encontrado"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
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 requisitos de versão"
+"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não "
+"coincidentes\n"
-#: cmdline/apt-get.cc:2518
-#, 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: Pacote instalado %s é muito "
-"novo"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Falta directório de listas %spartial."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Falha ao satisfazer a dependência %s para %s: %s"
+msgid "Preparing %s"
+msgstr "A preparar %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "Falha ao processar as dependências de compilação"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Módulos Suportados:"
+msgid "Unpacking %s"
+msgstr "A desempacotar %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Utilização: apt-get [opções] comando\n"
-" apt-get [opções] install|remove pacote1 [pacote2 ...]\n"
-" apt-get [opções] source pacote1 [pacote2 ...]\n"
-"\n"
-"O apt-get é um interface simples de linha de comando para fazer o\n"
-"download de pacotes e instalá-los. Os comandos usados mais frequentemente\n"
-"são o update e install\n"
-"\n"
-"Comandos:\n"
-" update - Obtém novas listas de pacotes\n"
-" upgrade - Executa uma actualização\n"
-" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n"
-" remove - Remove um pacote\n"
-" source - Faz o download de arquivos de código fonte\n"
-" build-dep - Configura as dependências de compilação de pacotes código "
-"fonte\n"
-" dist-upgrade - Actualiza a distribuição, consulte apt-get(8)\n"
-" dselect-upgrade - Segue as selecções feitas do dselect\n"
-" clean - Apaga arquivos obtidos para instalação\n"
-" autoclean - Apaga arquivos antigos obtidos para instalação\n"
-" check - Verifica se não há dependências erradas\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda\n"
-" -q Saída para log, excepto para erros\n"
-" -qq Sem saída, excepto para erros\n"
-" -d Fazer o download apenas - NÃO instalar ou descompactar arquivos\n"
-" -s Não-agir. Executar simulação de ordenação\n"
-" -y Assumir Sim para todas as perguntas, sem pedir confirmação\n"
-" -f Tenta continuar se a verificação de integridade falhar\n"
-" -m Tenta continuar se os arquivos não poderem ser localizados\n"
-" -u Mostra uma lista também de pacotes actualizados\n"
-" -b Compila o pacote fonte depois de fazer o download\n"
-" -c=? Ler este arquivo de configuração\n"
-" -o=? Definir uma opção de configuração arbitrária, \n"
-" ex -o dir::cache=/tmp\n"
-"Veja as páginas do manual apt-get(8), sources.list(5) e apt.conf(5)\n"
-"para mais informações e opções.\n"
-" Este APT tem Poderes de Super Vaca.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "A preparar para configurar %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Atingido "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "A configurar %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Obter:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Erro processando o directório %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s instalado"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "A preparar para remoção de %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Obtidos %sB em %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "A remover %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Trabalhando]"
+msgid "Removed %s"
+msgstr "%s removido"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
-"na drive '%s' e pressione enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "A preparar para remover completamente %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Registro de pacote desconhecido!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Remoção completa de %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Utilização: apt-sortpkgs [opções] ficheiro1 [ficheiro2 ...]\n"
-"\n"
-"O apt-sortpkgs é uma ferramenta simples para ordenar ficheiros de pacote.\n"
-"A opção -s é usada para indicar que tipo de ficheiro é.\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda\n"
-" -s Usar ordenação de arquivo fonte\n"
-" -c=? Ler este arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Configuração padrão Errada!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Não foi possível abrir ficheiro o %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Pressione enter para continuar."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Conexão encerrada prematuramente"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Alguns erros ocorreram ao descompactar. Irei configurar os pacotes"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linha %d é demasiado longa (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "que foram instalados. Isto pode resultar em erros duplicados"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Um erro ocorreu ao processar %s (NovoArquivoVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"acima desta mensagem são importantes. Por favor resolva-os e execute [I]"
-"nstalar novamente"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Label Guardada: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Juntando informação Disponível"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Encontrou %i indexes de pacotes, %indexes de source e %i assinaturas\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-08-21 00:40-0300\n"
"Last-Translator: Felipe Augusto van de Wiel (faw) <faw@cathedrallabs.org>\n"
"Language-Team: l10n portuguese <debian-l10n-portuguese@lists.debian.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Impossível ler a base de dados de cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Por favor use o apt-cdrom para fazer com que este CD-ROM seja reconhecido "
-"pelo APT. apt-get update não pode ser usado para adicionar novos CD-ROMs"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD-ROM errado"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disco não encontrado."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Arquivo não encontrado"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Falha ao checar"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Falha ao definir hora de modificação"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI inválida, URIs locais não devem iniciar com //"
+msgid "Unable to locate package %s"
+msgstr "Impossível encontrar o pacote %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Logando"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Total de Nomes de Pacotes : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Impossível determinar o nome do ponto"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Pacotes normais: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Impossível determinar o nome local"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pacotes puramente virtuais: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Servidor recusou a conexão e respondeu: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pacotes virtuais únicos: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER falhou, servidor respondeu: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Pacotes virtuais misturados: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS falhou, servidor respondeu: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Faltando: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::"
-"ProxyLogin está vazio."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Total de versões distintas: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Comando de script de login '%s' falhou, servidor respondeu: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Total de versões distintas: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE falhou, servidor respondeu: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Total de dependências: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Conexão expirou"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Total de relações ver/arquivo: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Servidor fechou a conexão"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Total de relações ver/arquivo: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Erro de leitura"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Total de mapeamentos Provides: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Uma resposta sobrecarregou o buffer"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Total de strings globbed: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Corrupção de protocolo"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total de espaço de dependência de versão: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Erro de gravação"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total de espaço frouxo: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Não foi possível criar um socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total de espaço contabilizado: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Não foi possível conectar socket de dados, conexão expirou"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "O arquivo de pacote %s está dessincronizado."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Falhou"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Você deve passar exatamente um padrão"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Não foi possível conectar socket passivo."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nenhum pacote encontrado"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo não foi capaz de obter um socket de escuta"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Arquivos de pacote:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Não foi possível fazer o bind de um socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "O cache está fora de sincronia, não posso x-ref um arquivo de pacote"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Não foi possível ouvir no socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Não foi possível determinar o nome do socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pacotes pinados:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Impossível enviar o comando PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(não encontrado)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Família de endereços %u desconhecida (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalado: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT falhou, servidor respondeu: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(nenhum)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Conexão do socket de dados expirou"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidato: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Impossível aceitar conexão"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pin do pacote: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problema fazendo o hash do arquivo"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabela de versão:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Impossível obter arquivo, servidor respondeu '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Socket de dados expirou"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Transferência de dados falhou, servidor respondeu '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s para %s %s compilado em %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Pesquisa"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Impossível invocar "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Conectando em %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Uso: apt-cache [opções] comando\n"
+" apt-cache [opções] add arquivo1 [arquivo1 ...]\n"
+" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n"
+" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n"
+"\n"
+"O apt-cache é uma ferramenta de baixo nível usada para manipular\n"
+"os arquivos de cache binários do APT e para buscar informações\n"
+"neles\n"
+"\n"
+"Comandos:\n"
+" add - Adiciona um arquivo de pacote ao cache de fontes\n"
+" gencaches - Constrói ambos os caches de pacotes e fontes\n"
+" showpkg - Mostra informações gerais sobre um pacote\n"
+" showsrc - Mostra registros fontes\n"
+" stats - Mostra estatísticas básicas\n"
+" dump - Mostra o arquivo inteiro em uma forma concisa\n"
+" dumpavail - Imprime um arquivo \"available\" para stdout\n"
+" unmet - Mostra dependências não satisfeitas (quebradas)\n"
+" search - Procura a lista de pacotes por um padrão regex\n"
+" show - Mostra um registro legível sobre o pacote\n"
+" depends - Mostra informações cruas de dependências de um pacote\n"
+" rdepends - Mostra informações de dependências reversas de um pacote\n"
+" pkgnames - Lista o nome de todos os pacotes\n"
+" dotty - Gera gráficos de pacotes para o GraphVis\n"
+" xvcg - Gera gráficos de pacotes para o xvcg\n"
+" policy - Mostra as configurações de políticas\n"
+"\n"
+"Opções:\n"
+" -h Esse texto de ajuda.\n"
+" -p=? O cache de pacotes.\n"
+" -s=? O cache de fontes.\n"
+" -q Desabilita o indicador de progresso.\n"
+" -i Mostra apenas dependências importantes para o comando unmet.\n"
+" -c=? Ler arquivo de configuração especificado.\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+"Veja as páginas de manual apt-cache(8) e apt.conf(5) para maiores "
+"informações.\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Por favor, forneça um nome para este Disco, como 'Debian 2.1r1 Disco 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Por favor, insira um Disco no leitor e pressione enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Não posso iniciar a conexão para %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumentos não estão em pares"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Não foi possível conectar em %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-config [opções] comando\n"
+"\n"
+"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n"
+"do APT\n"
+"\n"
+"Comandos:\n"
+" shell - Modo shell\n"
+" dump - Mostra a configuração\n"
+"\n"
+"Opções:\n"
+" -h Esse texto de ajuda.\n"
+" -c=? Ler esse arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Conectando a %s"
+msgid "%s not a valid DEB package."
+msgstr "%s não é um pacote DEB válido."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Não foi possível resolver '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-extracttemplates arquivo1 [arquivo2 ...]\n"
+"\n"
+"O apt-extracttemplates é uma ferramenta para extrair configuração\n"
+"e informação de modelo (\"template\") de pacotes debian.\n"
+"\n"
+"Opções:\n"
+" -h Esse texto de ajuda\n"
+" -t Define o diretório temporário\n"
+" -c=? Ler esse arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Falha temporária resolvendo '%s'"
+msgid "Unable to write to %s"
+msgstr "Impossível escrever para %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Não foi possível obter a versão do debconf. O debconf está instalado?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Impossível conectar em %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista de extensão de pacotes é muito extensa"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Não foi possível acessar o chaveiro: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Lista de argumentos de Acquire::gpgv::Options muito extensa. Saindo."
+msgid "Error processing directory %s"
+msgstr "Erro processando o diretório %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr ""
-"Erro interno: Assinatura boa, mas não foi possível determinar a impressão "
-"digital da chave?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista de extensão de fontes é muito extensa"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Ao menos uma assinatura inválida foi encontrada."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Erro ao gravar cabeçalho no arquivo de conteúdo"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Não foi possível executar '%s' para verificar a assinatura (o gnupg está "
-"instalado?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Erro desconhecido executando gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "As seguintes assinaturas eram inválidas:\n"
+msgid "Error processing contents %s"
+msgstr "Erro processando conteúdo %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"As assinaturas a seguir não puderam ser verificadas devido a chave pública "
-"não estar disponível:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Falha ao checar %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Não foi possível abrir pipe para %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Erro de leitura do processo %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Uso: apt-ftparchive [opções] comando\n"
+"Comandos: packages caminho_binário [arquivo_override [prefixo_caminho]]\n"
+" sources caminho_fonte [arquivo_override [prefixo_caminho]]\n"
+" contents caminho\n"
+" release caminho\n"
+" generate config [grupos]\n"
+" clean config\n"
+"\n"
+"O apt-ftparchive gera arquivos de índice para repositórios Debian. Ele \n"
+"suporta muitos estilos de geração, desde totalmente automatizadas até \n"
+"substitutos funcionais para o dpkg-scanpackages e dpkg-scansources\n"
+"\n"
+"O apt-ftparchive gera arquivos Package a partir de uma árvore de .debs. \n"
+"O arquivo Package contém o conteúdo de todos os campos control de \n"
+"cada pacote bem como o hash MD5 e tamanho de arquivo. Um arquivo \n"
+"override é suportado para forçar o valor de Priority e Section.\n"
+"\n"
+"Similarmente, o apt-ftparchive gera arquivos Sources a partir de uma \n"
+"árvore de .dscs. A opção --source-override pode ser usada para \n"
+"especificar um arquivo override de fontes\n"
+"\n"
+"Os comandos 'packages' e 'sources' devem ser executados na raiz da \n"
+"árvore. CaminhoBinário deve apontar para a base de procura recursiva \n"
+"e o arquivo override deve conter as flags override. CaminhoPrefixo é \n"
+"incluído aos campos filename caso esteja presente. Exemplo de uso do \n"
+"repositório Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opções:\n"
+" -h Este texto de ajuda\n"
+" --md5 Controla a geração de MD5\n"
+" -s=? Arquivo fonte (source) override\n"
+" -q Quieto\n"
+" -d=? Seleciona a base de dados de caching opcional\n"
+" --no-delink Habilita o modo de depuração delinking\n"
+" --contents Controla a geração do arquivo de conteúdo\n"
+" -c=? Lê este arquivo de configuração\n"
+" -o=? Define uma opção de configuração arbitrária"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Aguardando por cabeçalhos"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nenhuma seleção correspondente"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Linha de cabeçalho ruim"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Alguns arquivos estão faltando no arquivo de grupo de pacotes `%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "BD estava corrompido, arquivo renomeado para %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "BD é antigo, tentando atualizar %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Formato do BD é inválido. Se você atualizou a partir de uma versão antiga do "
+"apt, por favor remova e recrie o banco de dados."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Este servidor HTTP possui suporte a range quebrado"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Impossível abrir arquivo BD %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Formato de data desconhecido"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Falha ao checar %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Seleção falhou"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Repositório não possui registro de controle"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Conexão expirou"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Impossível obter um cursor"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Erro gravando para arquivo de saída"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Impossível ler o diretório %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Erro gravando para arquivo"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Impossível checar %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Erro gravando para o arquivo"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Erro lendo do servidor"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Erros aplicam ao arquivo "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Dados de cabeçalho ruins"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Falha ao resolver %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Conexão falhou"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Falha ao percorrer a árvore"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Erro interno"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Falha ao abrir %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Não foi possível fazer mmap de arquivo vazio"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Impossível fazer mmap de %lu bytes"
+msgid "Failed to readlink %s"
+msgstr "Falha ao executar readlink %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Seleção %s não encontrada"
+msgid "Failed to unlink %s"
+msgstr "Falha ao executar unlink %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Abreviação de tipo desconhecida: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Falha ao ligar %s a %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Abrindo arquivo de configuração %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Limite DeLink de %sB atingido.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linha %d muito longa (máx. %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Repositório não possuía campo pacote"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome."
+msgid " %s has no override entry\n"
+msgstr " %s não possui entrada override\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Erro de sintaxe %s:%u: Tag mal formada"
+msgid " %s maintainer is %s not %s\n"
+msgstr " mantenedor de %s é %s, não %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor"
+msgid " %s has no source override entry\n"
+msgstr " %s não possui entrada source override\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto"
+msgid " %s has no binary override entry either\n"
+msgstr " %s também não possui entrada binary override\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Erro de sintaxe %s:%u: Muitos includes aninhados"
+msgid "Internal error, could not locate member %s"
+msgstr "Erro interno, não foi possível localizar membro %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Falha ao alocar memória"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Erro de sintaxe %s:%u: Diretiva '%s' não suportada"
+msgid "Unable to open %s"
+msgstr "Impossível abrir %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo"
+msgid "Malformed override %s line %lu #1"
+msgstr "Override malformado %s linha %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Impossível ler %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Override malformado %s linha %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Erro!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Override malformado %s linha %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Pronto"
+msgid "Failed to read the override file %s"
+msgstr "Falha ao ler o arquivo override %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Opção de linha de comando '%c' [de %s] é desconnhecida."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algoritmo de compactação desconhecido '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Opção de linha de comando %s não é compreendida"
+msgid "Compressed output %s needs a compression set"
+msgstr "Saída compactada %s precisa de um conjunto de compactação"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Opção de linha de comando %s não é booleana"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Falha ao criar pipe IPC para subprocesso"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Opção %s requer um argumento."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Falha ao criar FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Opção %s: Especificação de item de configuração deve possuir um =<val>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Falha oa executar fork"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Opção %s requer um argumento inteiro, não '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Compactar filho"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opção '%s' é muito longa"
+msgid "Internal error, failed to create %s"
+msgstr "Erro interno, falha ao criar %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Falha ao criar subprocesso IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Operação %s inválida"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Falha ao executar compressor "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Impossível checar o ponto de montagem %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "descompactador"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Impossível mudar para %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO para subprocesso/arquivo falhou"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Impossível checar o cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Falha ao ler durante o cálculo MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Não usando locking para arquivo de trava somente leitura %s"
+msgid "Problem unlinking %s"
+msgstr "Problema executando unlinking %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Não foi possível abrir arquivo de trava %s"
+msgid "Failed to rename %s to %s"
+msgstr "Falha ao renomear %s para %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Não usando locking para arquivo de trava montado via nfs %s"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "S"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Não foi possível obter trava %s"
+msgid "Regex compilation error - %s"
+msgstr "Erro de compilação de regex - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Esperado %s mas este não estava lá"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Os pacotes a seguir têm dependências desencontradas:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Sub-processo %s recebeu uma falha de segmentação."
+msgid "but %s is installed"
+msgstr "mas %s está instalado"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Sub-processo %s retornou um código de erro (%u)"
+msgid "but %s is to be installed"
+msgstr "mas %s está para ser instalado"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Sub-processo %s finalizou inesperadamente"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "mas não está instalável"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Não foi possível abrir arquivo %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "mas é um pacote virtual"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "mas não está instalado"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "gravação, ainda restam %lu para gravar mas não foi possível"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "mas não vai ser instalado"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problema fechando o arquivo"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " ou"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problema removendo o link do arquivo"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Os NOVOS pacotes a seguir serão instalados:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problema sincronizando o arquivo"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Os pacotes a seguir serão REMOVIDOS:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Cache de pacotes vazio"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "O arquivo de cache de pacotes está corrompido"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Os pacotes a seguir serão atualizados:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "O arquivo de cache de pacotes é uma versão incompatível"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Os pacotes a seguir serão REVERTIDOS:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Este APT não suporta o sistema de versões '%s'"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Os seguintes pacotes mantidos serão mudados:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "O cache de pacotes foi gerado para uma arquitetura diferente"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (por causa de %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depende"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Pré-Depende"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Sugere"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalados, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recomenda"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu desatualizados, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Conflita"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu a serem removidos e %lu não atualizados.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Substitui"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Obsoleta"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Corrigindo dependências..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " falhou."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "importante"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Impossível corrigir dependências"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "requerido"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Impossível minimizar o conjunto de atualizações"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "padrão"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Pronto"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opcional"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Você pode querer rodar `apt-get -f install' para corrigir isso."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependências desencontradas. Tente usar -f."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Construindo árvore de dependências"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versões candidatas"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Aviso de autenticação sobrescrito.\n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Geração de dependência"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Instalar estes pacotes sem verificação [s/N]? "
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Mesclando informação disponível"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Alguns pacotes não puderam ser autenticados"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Falha ao abrir %s"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Há problemas e -y foi usado sem --force-yes"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Falha ao gravar arquivo %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Impossível analisar arquivo de pacote %s (1)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Impossível analisar arquivo de pacote %s (2)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Erro interno, Ordenação não finalizou"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Impossível criar lock no diretório de download"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "A lista de fontes não pôde ser lida."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Que estranho.. Os tamanhos não batem, informe apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "É preciso fazer o download de %sB/%sB de arquivos.\n"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
+msgid "Need to get %sB of archives.\n"
+msgstr "É preciso fazer o download de %sB de arquivos.\n"
+
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
msgstr ""
-"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)"
+"Depois de desempacotar, %sB adicionais de espaço em disco serão usados.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Abrindo %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Depois de desempacotar, %sB de espaço em disco serão liberados.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linha %u muito longa na lista de fontes %s."
+msgid "Couldn't determine free space in %s"
+msgstr "Não foi possível determinar o espaço livre em %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)"
+msgid "You don't have enough free space in %s."
+msgstr "Você não possui espaço suficiente em %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only especificado mas essa não é uma operação trivial."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Linha mal formada %u na lista de fontes %s (id de fornecedor)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Sim, faça o que eu digo!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Esta execução de instalação irá requerer remover temporariamente o pacote "
-"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente "
-"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-"
-"LoopBreak."
+"Você está prestes a fazer algo potencialmente destruidor.\n"
+"Para continuar digite a frase '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Tipo de arquivo de índice '%s' não é suportado"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abortar."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Quer continuar [S/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um "
-"arquivo para o mesmo."
+msgid "Failed to fetch %s %s\n"
+msgstr "Falha ao buscar %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Alguns arquivos falharam ao baixar"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Baixar completo e no modo somente baixar (\"download only\")"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
-"pacotes mantidos (hold)."
+"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar "
+"com --fix-missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing e troca de mídia não são suportados atualmente"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Diretório de listas %spartial está faltando."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Impossível corrigir pacotes faltosos."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Diretório de repositório %spartial está faltando."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Abortando instalação."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Obtendo o arquivo %li de %li (%s restantes)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Nota, selecionando %s ao invés de %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Obtendo arquivo %li de %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"Ignorando %s, já está instalado e a atualização não está configurada.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "O driver do método %s não pôde ser encontrado."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "O pacote %s não está instalado, então não será removido\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Método %s não iniciou corretamente"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "O pacote %s é um pacote virtual provido por:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr ""
-"Por favor, insira o disco nomeado: '%s' no leitor '%s' e pressione enter."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Instalado]"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Sistema de empacotamento '%s' não é suportado"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Você deve selecionar um explicitamente para instalar."
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
+#: cmdline/apt-get.cc:1114
+#, 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 ""
-"Não foi possível determinar um tipo de sistema de empacotamento aplicável."
+"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
+"Isso pode significar que o pacote está faltando, ficou obsoleto ou\n"
+"está disponível somente a partir de outra fonte\n"
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Impossível checar %s."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "No entanto, os pacotes a seguir o substituem:"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Você deve colocar algumas URIs 'source' em seu sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "A lista de fontes não pôde ser lida."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"As listas de pacotes ou os arquivos de status não puderam ser analisados ou "
-"abertos."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Você terá que executar apt-get update para corrigir esses problemas"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package"
-
-#: apt-pkg/policy.cc:289
-#, 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:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Nenhuma prioridade (ou zero) especificada para pin"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "O cache possui um sistema de versões incompatível"
-
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Um erro ocorreu processando %s (NovoPacote)"
+msgid "Package %s has no installation candidate"
+msgstr "O pacote %s não tem candidato para instalação"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Um erro ocorreu processando %s (UsePacote1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "A reinstalação de %s não é possível, não pode ser baixado.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Um erro ocorreu processando %s (UsePacote2)"
+msgid "%s is already the newest version.\n"
+msgstr "%s já é a versão mais nova.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release '%s' para '%s' não foi encontrada"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Um erro ocorreu processando %s (NovaVersão1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versão '%s' para '%s' não foi encontrada"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Um erro ocorreu processando %s (UsePacote3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versão selecionada %s (%s) para %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Um erro ocorreu processando %s (NovaVersão2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "O comando update não leva argumentos"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Impossível criar lock no diretório de listas"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de "
-"suportar."
+"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os "
+"antigos foram usados no lugar."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
msgstr ""
-"Uau, você excedeu o número de versões que este APT é capaz de suportar."
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr ""
-"Uau, você excedeu o número de versões que este APT é capaz de suportar."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Os NOVOS pacotes a seguir serão instalados:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Uau, você excedeu o número de dependências que este APT é capaz de suportar."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Um erro ocorreu processando %s (EncontrarPacote)"
-
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Um erro ocorreu processando %s (ColetarArquivoProvides)"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo"
-
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Não foi possível checar a lista de pacotes fonte %s"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Lendo lista de pacotes"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "A informação a seguir pode ajudar a resolver a situação:"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Coletando Arquivo Provides"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Erro interno, o solucionador de problemas quebrou coisas"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Impossível escrever para %s"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Erro interno, AllUpgrade quebrou as coisas"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Erro de I/O ao gravar cache fonte"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Impossível achar pacote %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "renomeação falhou, %s (%s -> %s)."
+msgid "Couldn't find package %s"
+msgstr "Impossível achar pacote %s"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum incorreto"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Nota, selecionando %s para expressão regular '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum incorreto"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "mas %s está para ser instalado"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Você deve querer executar `apt-get -f install' para corrigir isso:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar "
-"que você precisa consertar manualmente este pacote. (devido a arquitetura "
-"não especificada)."
+"Dependências desencontradas. Tente `apt-get -f install' sem nenhum pacote "
+"(ou especifique uma solução)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
-"que você precisa consertar manualmente este pacote."
+"Alguns pacotes não puderam ser instalados. Isso 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 tirados do Incoming."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
-"para o pacote %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Tamanho incorreto"
+"Já que você solicitou uma única operação é bem provável que o pacote\n"
+"esteja simplesmente não instalável e um relato de erro sobre esse\n"
+"pacotes deve ser enviado."
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Bloco Fornecedor %s não contém impressão digital (\"fingerprint\""
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pacotes quebrados"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Usando ponto de montagem de CD-ROM %s\n"
-"Montando CD-ROM\n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Os pacotes extra a seguir serão instalados:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificando.. "
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Pacotes sugeridos:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Rótulo armazenado: %s \n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Pacotes recomendados:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Usando ponto de montagem de CD-ROM %s\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calculando atualização... "
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Desmontando CD-ROM\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Falhou"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Aguardando por disco...\n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Pronto"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Montando CD-ROM...\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Erro interno, o solucionador de problemas quebrou coisas"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Procurando por arquivos de índice no disco..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Encontrado(s) %i índice(s) de pacote(s), %i índice(s) de fonte(s) e %i "
-"assinaturas\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Rótulo armazenado: %s \n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Este não é um nome válido, tente novamente.\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Esse disco é chamado: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Copiando lista de pacotes..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Gravando nova lista de fontes\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Entradas na lista de fontes para este disco são:\n"
+msgid "Unable to find a source package for %s"
+msgstr "Impossível encontrar um pacote fonte para %s"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Desmontando CD-ROM..."
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Ignorando arquivo já obtido '%s'\n"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Gravados %i registros.\n"
+msgid "You don't have enough free space in %s"
+msgstr "Você não possui espaço livre suficiente em %s"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Gravados %i registros com %i arquivos faltando.\n"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Preciso obter %sB/%sB de arquivos fonte.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Gravados %i registros com %i arquivos que não combinam\n"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Precisa obter %sB de arquivos fonte.\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Gravados %i registros com %i arquivos faltando e %i arquivos que não "
-"combinam\n"
+msgid "Fetch source %s\n"
+msgstr "Obter fonte %s\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Diretório de listas %spartial está faltando."
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Falha ao buscar alguns arquivos."
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing %s"
-msgstr "Preparando %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Ignorando desempacotamento de fonte já desempacotado em %s\n"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Unpacking %s"
-msgstr "Desempacotando %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Comando de desempacotamento '%s' falhou.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Preparando para configurar %s"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Configuring %s"
-msgstr "Configurando %s"
+msgid "Build command '%s' failed.\n"
+msgstr "Comando de construção '%s' falhou.\n"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Erro processando o diretório %s"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Processo filho falhou"
+
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Deve-se especificar pelo menos um pacote para que se cheque as dependências "
+"de construção"
-#: apt-pkg/deb/dpkgpm.cc:584
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Installed %s"
-msgstr "%s instalado"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Impossível conseguir informações de dependência de construção para %s"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Preparando para a remoção de %s"
+msgid "%s has no build depends.\n"
+msgstr "%s não tem dependências de construção.\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Removing %s"
-msgstr "Removendo %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"a dependência de %s por %s não pôde ser satisfeita porque o pacote %s não "
+"pôde ser encontrado"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Removed %s"
-msgstr "%s removido"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"a dependência de %s por %s não pôde ser satisfeita porque nenhuma versão "
+"disponível do pacote %s pôde satisfazer os requerimentos de versão"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Preparando para remover completamente %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Falha ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito "
+"novo"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Completely removed %s"
-msgstr "%s completamente removido"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Falha ao satisfazer dependência de %s por %s: %s"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
+#: cmdline/apt-get.cc:2570
+#, 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."
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Não foi possível aplicar o patch"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Falha ao processar as dependências de construção"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Falha ao criar pipe IPC para subprocesso"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Módulos suportados:"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Conexão encerrada prematuramente"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Uso: apt-get [opções] comando\n"
+" apt-get [opções] install|remove pacote1 [pacote2 ...]\n"
+" apt-get [opções] source pacote1 [pacote2 ...]\n"
+"\n"
+"O apt-get é uma interface simples de linha de comando para fazer o\n"
+"download de pacotes e instalá-los. Os comandos usados mais frequentemente\n"
+"são update e install.\n"
+"\n"
+"Comandos:\n"
+" update - Adquire novas listas de pacotes\n"
+" upgrade - Faz uma atualização\n"
+" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n"
+" remove - Remove pacotes\n"
+" source - Baixa arquivos fonte\n"
+" build-dep - Configura as dependências de compilação de pacotes fonte\n"
+" dist-upgrade - Atualiza a distribuição, consulte apt-get(8)\n"
+" dselect-upgrade - Segue as seleções do dselect\n"
+" clean - Apaga arquivos baixados para instalação\n"
+" autoclean - Apaga arquivos antigos baixados para instalação\n"
+" check - Verifica se não há dependências quebradas\n"
+"\n"
+"Opções:\n"
+" -h Esse texto de ajuda\n"
+" -q Saída logável, exceto para erros\n"
+" -qq Sem saída, exceto para erros\n"
+" -d Fazer o download apenas - NÃO instalar ou desempacotar arquivos\n"
+" -s Não-agir. Executar simulação de ordenação\n"
+" -y Assumir Sim para todas as perguntas e não questionar\n"
+" -f Tenta continuar se a checagem de integridade falhar\n"
+" -m Tenta continuar se os arquivos não podem ser localizados\n"
+" -u Mostra uma lista de pacotes atualizados também\n"
+" -b Constrói o pacote fonte depois de baixá-lo\n"
+" -V Exibe números de versões mais detalhados\n"
+" -c=? Ler esse arquivo de configuração\n"
+" -o=? Definir uma opção de configuração arbitrária, ex -o dir::cache=/tmp\n"
+"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n"
+"para maiores informações e opções.\n"
+" Este APT tem Poderes de Super Vaca.\n"
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Falha ao criar pipes"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Atingido "
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Falha ao executar gzip "
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Obtendo:"
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Arquivo corrompido"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Checksum do arquivo tar falhou, arquivo corrompido"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Baixados %sB em %s (%sB/s)\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [Trabalhando]"
+
+#: cmdline/acqprogress.cc:271
+#, 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"
+"no drive '%s' e pressione enter\n"
+
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Registro de pacote desconhecido!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uso: apt-sortpkgs [opções] arquivo1 [arquivo2 ...]\n"
+"\n"
+"O apt-sortpkgs é uma ferramenta simples para ordenar arquivos de pacote.\n"
+"A opção -s é usada para indicar que tipo de arquivo é.\n"
+"\n"
+"Opções:\n"
+" -h Esse texto de ajuda\n"
+" -s Usar ordenação de arquivo fonte\n"
+" -c=? Ler esse arquivo de configuração\n"
+" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Configuração padrão ruim!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Pressione enter para continuar."
+
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr ""
+"Alguns erros ocorreram ao desempacotar. Eu vou configurar os pacotes que "
+"foram"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr ""
+"instalados. Isto pode resultar em erros duplicados ou erros causados por"
+
+#: dselect/install:102
+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:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Mesclando informação disponível"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Falha ao criar pipes"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Falha ao executar gzip "
+
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Arquivo corrompido"
+
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Checksum do arquivo tar falhou, arquivo corrompido"
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s"
#: apt-inst/contrib/arfile.cc:70
msgid "Invalid archive signature"
msgid "The diversion path is too long"
msgstr "O caminho de desvio é muito longo"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Falha ao renomear %s para %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Arquivo %s/%s sobreescreve arquivo no pacote %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Impossível ler %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Os diretórios info e temp precisam estar no mesmo sistema de arquivos"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Lendo lista de pacotes"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Arquivo de controle não interpretável"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Impossível encontrar o pacote %s"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Total de Nomes de Pacotes : "
+msgid "Unable to read the cdrom database %s"
+msgstr "Impossível ler a base de dados de cdrom %s"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Pacotes normais: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Por favor use o apt-cdrom para fazer com que este CD-ROM seja reconhecido "
+"pelo APT. apt-get update não pode ser usado para adicionar novos CD-ROMs"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pacotes puramente virtuais: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD-ROM errado"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pacotes virtuais únicos: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Pacotes virtuais misturados: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disco não encontrado."
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Faltando: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Arquivo não encontrado"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Total de versões distintas: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Falha ao checar"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Total de versões distintas: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Falha ao definir hora de modificação"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Total de dependências: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI inválida, URIs locais não devem iniciar com //"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Total de relações ver/arquivo: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Logando"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Total de relações ver/arquivo: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Impossível determinar o nome do ponto"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Total de mapeamentos Provides: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Impossível determinar o nome local"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Total de strings globbed: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Servidor recusou a conexão e respondeu: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total de espaço de dependência de versão: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER falhou, servidor respondeu: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total de espaço frouxo: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS falhou, servidor respondeu: %s"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total de espaço contabilizado: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::"
+"ProxyLogin está vazio."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:265
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "O arquivo de pacote %s está dessincronizado."
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Comando de script de login '%s' falhou, servidor respondeu: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Você deve passar exatamente um padrão"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE falhou, servidor respondeu: %s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nenhum pacote encontrado"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Conexão expirou"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Arquivos de pacote:"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Servidor fechou a conexão"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "O cache está fora de sincronia, não posso x-ref um arquivo de pacote"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Erro de leitura"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Uma resposta sobrecarregou o buffer"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pacotes pinados:"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Corrupção de protocolo"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(não encontrado)"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Erro de gravação"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalado: "
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Não foi possível criar um socket"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(nenhum)"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Não foi possível conectar socket de dados, conexão expirou"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidato: "
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Não foi possível conectar socket passivo."
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pin do pacote: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo não foi capaz de obter um socket de escuta"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabela de versão:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Não foi possível fazer o bind de um socket"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Não foi possível ouvir no socket"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s para %s %s compilado em %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Não foi possível determinar o nome do socket"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Uso: apt-cache [opções] comando\n"
-" apt-cache [opções] add arquivo1 [arquivo1 ...]\n"
-" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n"
-" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n"
-"\n"
-"O apt-cache é uma ferramenta de baixo nível usada para manipular\n"
-"os arquivos de cache binários do APT e para buscar informações\n"
-"neles\n"
-"\n"
-"Comandos:\n"
-" add - Adiciona um arquivo de pacote ao cache de fontes\n"
-" gencaches - Constrói ambos os caches de pacotes e fontes\n"
-" showpkg - Mostra informações gerais sobre um pacote\n"
-" showsrc - Mostra registros fontes\n"
-" stats - Mostra estatísticas básicas\n"
-" dump - Mostra o arquivo inteiro em uma forma concisa\n"
-" dumpavail - Imprime um arquivo \"available\" para stdout\n"
-" unmet - Mostra dependências não satisfeitas (quebradas)\n"
-" search - Procura a lista de pacotes por um padrão regex\n"
-" show - Mostra um registro legível sobre o pacote\n"
-" depends - Mostra informações cruas de dependências de um pacote\n"
-" rdepends - Mostra informações de dependências reversas de um pacote\n"
-" pkgnames - Lista o nome de todos os pacotes\n"
-" dotty - Gera gráficos de pacotes para o GraphVis\n"
-" xvcg - Gera gráficos de pacotes para o xvcg\n"
-" policy - Mostra as configurações de políticas\n"
-"\n"
-"Opções:\n"
-" -h Esse texto de ajuda.\n"
-" -p=? O cache de pacotes.\n"
-" -s=? O cache de fontes.\n"
-" -q Desabilita o indicador de progresso.\n"
-" -i Mostra apenas dependências importantes para o comando unmet.\n"
-" -c=? Ler arquivo de configuração especificado.\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-"Veja as páginas de manual apt-cache(8) e apt.conf(5) para maiores "
-"informações.\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Impossível enviar o comando PORT"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Por favor, forneça um nome para este Disco, como 'Debian 2.1r1 Disco 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Família de endereços %u desconhecida (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Por favor, insira um Disco no leitor e pressione enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT falhou, servidor respondeu: %s"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Conexão do socket de dados expirou"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumentos não estão em pares"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Impossível aceitar conexão"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Uso: apt-config [opções] comando\n"
-"\n"
-"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n"
-"do APT\n"
-"\n"
-"Comandos:\n"
-" shell - Modo shell\n"
-" dump - Mostra a configuração\n"
-"\n"
-"Opções:\n"
-" -h Esse texto de ajuda.\n"
-" -c=? Ler esse arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problema fazendo o hash do arquivo"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s não é um pacote DEB válido."
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Impossível obter arquivo, servidor respondeu '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Uso: apt-extracttemplates arquivo1 [arquivo2 ...]\n"
-"\n"
-"O apt-extracttemplates é uma ferramenta para extrair configuração\n"
-"e informação de modelo (\"template\") de pacotes debian.\n"
-"\n"
-"Opções:\n"
-" -h Esse texto de ajuda\n"
-" -t Define o diretório temporário\n"
-" -c=? Ler esse arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Socket de dados expirou"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Não foi possível obter a versão do debconf. O debconf está instalado?"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Transferência de dados falhou, servidor respondeu '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista de extensão de pacotes é muito extensa"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Pesquisa"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Impossível invocar "
+
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing directory %s"
-msgstr "Erro processando o diretório %s"
+msgid "Connecting to %s (%s)"
+msgstr "Conectando em %s (%s)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista de extensão de fontes é muito extensa"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Erro ao gravar cabeçalho no arquivo de conteúdo"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:86
#, c-format
-msgid "Error processing contents %s"
-msgstr "Erro processando conteúdo %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Não posso iniciar a conexão para %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Uso: apt-ftparchive [opções] comando\n"
-"Comandos: packages caminho_binário [arquivo_override [prefixo_caminho]]\n"
-" sources caminho_fonte [arquivo_override [prefixo_caminho]]\n"
-" contents caminho\n"
-" release caminho\n"
-" generate config [grupos]\n"
-" clean config\n"
-"\n"
-"O apt-ftparchive gera arquivos de índice para repositórios Debian. Ele \n"
-"suporta muitos estilos de geração, desde totalmente automatizadas até \n"
-"substitutos funcionais para o dpkg-scanpackages e dpkg-scansources\n"
-"\n"
-"O apt-ftparchive gera arquivos Package a partir de uma árvore de .debs. \n"
-"O arquivo Package contém o conteúdo de todos os campos control de \n"
-"cada pacote bem como o hash MD5 e tamanho de arquivo. Um arquivo \n"
-"override é suportado para forçar o valor de Priority e Section.\n"
-"\n"
-"Similarmente, o apt-ftparchive gera arquivos Sources a partir de uma \n"
-"árvore de .dscs. A opção --source-override pode ser usada para \n"
-"especificar um arquivo override de fontes\n"
-"\n"
-"Os comandos 'packages' e 'sources' devem ser executados na raiz da \n"
-"árvore. CaminhoBinário deve apontar para a base de procura recursiva \n"
-"e o arquivo override deve conter as flags override. CaminhoPrefixo é \n"
-"incluído aos campos filename caso esteja presente. Exemplo de uso do \n"
-"repositório Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opções:\n"
-" -h Este texto de ajuda\n"
-" --md5 Controla a geração de MD5\n"
-" -s=? Arquivo fonte (source) override\n"
-" -q Quieto\n"
-" -d=? Seleciona a base de dados de caching opcional\n"
-" --no-delink Habilita o modo de depuração delinking\n"
-" --contents Controla a geração do arquivo de conteúdo\n"
-" -c=? Lê este arquivo de configuração\n"
-" -o=? Define uma opção de configuração arbitrária"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou"
+
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Não foi possível conectar em %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Conectando a %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Não foi possível resolver '%s'"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nenhuma seleção correspondente"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Falha temporária resolvendo '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Alguns arquivos estão faltando no arquivo de grupo de pacotes `%s'"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "BD estava corrompido, arquivo renomeado para %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Impossível conectar em %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "BD é antigo, tentando atualizar %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Não foi possível acessar o chaveiro: '%s'"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Lista de argumentos de Acquire::gpgv::Options muito extensa. Saindo."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Formato do BD é inválido. Se você atualizou a partir de uma versão antiga do "
-"apt, por favor remova e recrie o banco de dados."
+"Erro interno: Assinatura boa, mas não foi possível determinar a impressão "
+"digital da chave?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Ao menos uma assinatura inválida foi encontrada."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Impossível abrir arquivo BD %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Não foi possível executar '%s' para verificar a assinatura (o gnupg está "
+"instalado?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Repositório não possui registro de controle"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Erro desconhecido executando gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Impossível obter um cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "As seguintes assinaturas eram inválidas:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"As assinaturas a seguir não puderam ser verificadas devido a chave pública "
+"não estar disponível:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Impossível ler o diretório %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Não foi possível abrir pipe para %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Impossível checar %s\n"
+msgid "Read error from %s process"
+msgstr "Erro de leitura do processo %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Aguardando por cabeçalhos"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Erros aplicam ao arquivo "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Linha de cabeçalho ruim"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Falha ao resolver %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Falha ao percorrer a árvore"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Falha ao abrir %s"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Este servidor HTTP possui suporte a range quebrado"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Formato de data desconhecido"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Seleção falhou"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Conexão expirou"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Erro gravando para arquivo de saída"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Erro gravando para arquivo"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Erro gravando para o arquivo"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Erro lendo do servidor"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Dados de cabeçalho ruins"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Conexão falhou"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Erro interno"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Não foi possível fazer mmap de arquivo vazio"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Falha ao executar readlink %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Impossível fazer mmap de %lu bytes"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Falha ao executar unlink %s"
+msgid "Selection %s not found"
+msgstr "Seleção %s não encontrada"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Falha ao ligar %s a %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Abreviação de tipo desconhecida: '%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Limite DeLink de %sB atingido.\n"
+msgid "Opening configuration file %s"
+msgstr "Abrindo arquivo de configuração %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Repositório não possuía campo pacote"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linha %d muito longa (máx. %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s não possui entrada override\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " mantenedor de %s é %s, não %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Erro de sintaxe %s:%u: Tag mal formada"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s não possui entrada source override\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s também não possui entrada binary override\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Erro interno, não foi possível localizar membro %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Erro de sintaxe %s:%u: Muitos includes aninhados"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Falha ao alocar memória"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Impossível abrir %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Erro de sintaxe %s:%u: Diretiva '%s' não suportada"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Override malformado %s linha %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Override malformado %s linha %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Erro!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Override malformado %s linha %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Pronto"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Falha ao ler o arquivo override %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Opção de linha de comando '%c' [de %s] é desconnhecida."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algoritmo de compactação desconhecido '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Opção de linha de comando %s não é compreendida"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Saída compactada %s precisa de um conjunto de compactação"
+msgid "Command line option %s is not boolean"
+msgstr "Opção de linha de comando %s não é booleana"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Falha ao criar FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Opção %s requer um argumento."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Falha oa executar fork"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opção %s: Especificação de item de configuração deve possuir um =<val>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Compactar filho"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Opção %s requer um argumento inteiro, não '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Erro interno, falha ao criar %s"
+msgid "Option '%s' is too long"
+msgstr "Opção '%s' é muito longa"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Falha ao criar subprocesso IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Falha ao executar compressor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Operação %s inválida"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "descompactador"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Impossível checar o ponto de montagem %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO para subprocesso/arquivo falhou"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Impossível mudar para %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Falha ao ler durante o cálculo MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Impossível checar o cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problema executando unlinking %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Não usando locking para arquivo de trava somente leitura %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "S"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Não foi possível abrir arquivo de trava %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Erro de compilação de regex - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Não usando locking para arquivo de trava montado via nfs %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Os pacotes a seguir têm dependências desencontradas:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Não foi possível obter trava %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "mas %s está instalado"
+msgid "Waited for %s but it wasn't there"
+msgstr "Esperado %s mas este não estava lá"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "mas %s está para ser instalado"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Sub-processo %s recebeu uma falha de segmentação."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "mas não está instalável"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Sub-processo %s retornou um código de erro (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "mas é um pacote virtual"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Sub-processo %s finalizou inesperadamente"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "mas não está instalado"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Não foi possível abrir arquivo %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "mas não vai ser instalado"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " ou"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "gravação, ainda restam %lu para gravar mas não foi possível"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Os NOVOS pacotes a seguir serão instalados:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problema fechando o arquivo"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Os pacotes a seguir serão REMOVIDOS:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problema removendo o link do arquivo"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problema sincronizando o arquivo"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Os pacotes a seguir serão atualizados:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Cache de pacotes vazio"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Os pacotes a seguir serão REVERTIDOS:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "O arquivo de cache de pacotes está corrompido"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Os seguintes pacotes mantidos serão mudados:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "O arquivo de cache de pacotes é uma versão incompatível"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (por causa de %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Este APT não suporta o sistema de versões '%s'"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "O cache de pacotes foi gerado para uma arquitetura diferente"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depende"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Pré-Depende"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu desatualizados, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Sugere"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu a serem removidos e %lu não atualizados.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recomenda"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu pacotes não totalmente instalados ou removidos.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Conflita"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Corrigindo dependências..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Substitui"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " falhou."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Obsoleta"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Impossível corrigir dependências"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Impossível minimizar o conjunto de atualizações"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "importante"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Pronto"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "requerido"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Você pode querer rodar `apt-get -f install' para corrigir isso."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "padrão"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependências desencontradas. Tente usar -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opcional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Aviso de autenticação sobrescrito.\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Construindo árvore de dependências"
+
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versões candidatas"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Instalar estes pacotes sem verificação [s/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Geração de dependência"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Alguns pacotes não puderam ser autenticados"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Mesclando informação disponível"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Há problemas e -y foi usado sem --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Falha ao abrir %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Falha ao gravar arquivo %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Impossível analisar arquivo de pacote %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Erro interno, Ordenação não finalizou"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Impossível analisar arquivo de pacote %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Impossível criar lock no diretório de download"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Que estranho.. Os tamanhos não batem, informe apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "É preciso fazer o download de %sB/%sB de arquivos.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "É preciso fazer o download de %sB de arquivos.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-"Depois de desempacotar, %sB adicionais de espaço em disco serão usados.\n"
+"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Depois de desempacotar, %sB de espaço em disco serão liberados.\n"
+msgid "Opening %s"
+msgstr "Abrindo %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Não foi possível determinar o espaço livre em %s"
+msgid "Line %u too long in source list %s."
+msgstr "Linha %u muito longa na lista de fontes %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Você não possui espaço suficiente em %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only especificado mas essa não é uma operação trivial."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Sim, faça o que eu digo!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Linha mal formada %u na lista de fontes %s (id de fornecedor)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Você está prestes a fazer algo potencialmente destruidor.\n"
-"Para continuar digite a frase '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abortar."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Quer continuar [S/n]? "
+"Esta execução de instalação irá requerer remover temporariamente o pacote "
+"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente "
+"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-"
+"LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Falha ao buscar %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Alguns arquivos falharam ao baixar"
+msgid "Index file type '%s' is not supported"
+msgstr "Tipo de arquivo de índice '%s' não é suportado"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Baixar completo e no modo somente baixar (\"download only\")"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um "
+"arquivo para o mesmo."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar "
-"com --fix-missing?"
+"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por "
+"pacotes mantidos (hold)."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing e troca de mídia não são suportados atualmente"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Impossível corrigir pacotes faltosos."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Diretório de listas %spartial está faltando."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Abortando instalação."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Diretório de repositório %spartial está faltando."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Nota, selecionando %s ao invés de %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Obtendo o arquivo %li de %li (%s restantes)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Ignorando %s, já está instalado e a atualização não está configurada.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Obtendo arquivo %li de %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "O pacote %s não está instalado, então não será removido\n"
+msgid "The method driver %s could not be found."
+msgstr "O driver do método %s não pôde ser encontrado."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "O pacote %s é um pacote virtual provido por:\n"
+msgid "Method %s did not start correctly"
+msgstr "Método %s não iniciou corretamente"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Instalado]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Por favor, insira o disco nomeado: '%s' no leitor '%s' e pressione enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Você deve selecionar um explicitamente para instalar."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Sistema de empacotamento '%s' não é suportado"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr ""
+"Não foi possível determinar um tipo de sistema de empacotamento aplicável."
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Impossível checar %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Você deve colocar algumas URIs 'source' em seu sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-"O pacote %s não está disponível, mas é referenciado por outro pacote.\n"
-"Isso pode significar que o pacote está faltando, ficou obsoleto ou\n"
-"está disponível somente a partir de outra fonte\n"
+"As listas de pacotes ou os arquivos de status não puderam ser analisados ou "
+"abertos."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "No entanto, os pacotes a seguir o substituem:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Você terá que executar apt-get update para corrigir esses problemas"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "O pacote %s não tem candidato para instalação"
+msgid "Did not understand pin type %s"
+msgstr "Não foi possível entender o tipo de pin %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Nenhuma prioridade (ou zero) especificada para pin"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "O cache possui um sistema de versões incompatível"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:115
#, 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"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Um erro ocorreu processando %s (NovoPacote)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s já é a versão mais nova.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Um erro ocorreu processando %s (UsePacote1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Um erro ocorreu processando %s (UsePacote2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release '%s' para '%s' não foi encontrada"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versão '%s' para '%s' não foi encontrada"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Um erro ocorreu processando %s (NovaVersão1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versão selecionada %s (%s) para %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Um erro ocorreu processando %s (UsePacote3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "O comando update não leva argumentos"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Um erro ocorreu processando %s (NovaVersão2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Impossível criar lock no diretório de listas"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os "
-"antigos foram usados no lugar."
+"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de "
+"suportar."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de versões que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Os NOVOS pacotes a seguir serão instalados:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de versões que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Uau, você excedeu o número de dependências que este APT é capaz de suportar."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Erro interno, o solucionador de problemas quebrou coisas"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Um erro ocorreu processando %s (EncontrarPacote)"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Erro interno, AllUpgrade quebrou as coisas"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Um erro ocorreu processando %s (ColetarArquivoProvides)"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Impossível achar pacote %s"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr ""
+"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Impossível achar pacote %s"
+msgid "Couldn't stat source package list %s"
+msgstr "Não foi possível checar a lista de pacotes fonte %s"
+
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Coletando Arquivo Provides"
+
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Erro de I/O ao gravar cache fonte"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Nota, selecionando %s para expressão regular '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "renomeação falhou, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "mas %s está para ser instalado"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum incorreto"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Você deve querer executar `apt-get -f install' para corrigir isso:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum incorreto"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1100
+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:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Dependências desencontradas. Tente `apt-get -f install' sem nenhum pacote "
-"(ou especifique uma solução)."
+"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar "
+"que você precisa consertar manualmente este pacote. (devido a arquitetura "
+"não especificada)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Alguns pacotes não puderam ser instalados. Isso 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 tirados do Incoming."
+"Não foi possível localizar arquivo para o pacote %s. Isto pode significar "
+"que você precisa consertar manualmente este pacote."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Já que você solicitou uma única operação é bem provável que o pacote\n"
-"esteja simplesmente não instalável e um relato de erro sobre esse\n"
-"pacotes deve ser enviado."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pacotes quebrados"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Os pacotes extra a seguir serão instalados:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Pacotes sugeridos:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Pacotes recomendados:"
+"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: "
+"para o pacote %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calculando atualização... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Tamanho incorreto"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Pronto"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Bloco Fornecedor %s não contém impressão digital (\"fingerprint\""
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Erro interno, o solucionador de problemas quebrou coisas"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Usando ponto de montagem de CD-ROM %s\n"
+"Montando CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificando.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Impossível encontrar um pacote fonte para %s"
+msgid "Stored label: %s\n"
+msgstr "Rótulo armazenado: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Ignorando arquivo já obtido '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Desmontando CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Você não possui espaço livre suficiente em %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Usando ponto de montagem de CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Preciso obter %sB/%sB de arquivos fonte.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Desmontando CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Precisa obter %sB de arquivos fonte.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Aguardando por disco...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Obter fonte %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Montando CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Falha ao buscar alguns arquivos."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Procurando por arquivos de índice no disco..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Ignorando desempacotamento de fonte já desempacotado em %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Encontrado(s) %i índice(s) de pacote(s), %i índice(s) de fonte(s) e %i "
+"assinaturas\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Comando de desempacotamento '%s' falhou.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Rótulo armazenado: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Este não é um nome válido, tente novamente.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Comando de construção '%s' falhou.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Esse disco é chamado: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Processo filho falhou"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Copiando lista de pacotes..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Deve-se especificar pelo menos um pacote para que se cheque as dependências "
-"de construção"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Gravando nova lista de fontes\n"
-#: cmdline/apt-get.cc:2357
-#, 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"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Entradas na lista de fontes para este disco são:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s não tem dependências de construção.\n"
+msgid "Wrote %i records.\n"
+msgstr "Gravados %i registros.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"a dependência de %s por %s não pôde ser satisfeita porque o pacote %s não "
-"pôde ser encontrado"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Gravados %i registros com %i arquivos faltando.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"a dependência de %s por %s não pôde ser satisfeita porque nenhuma versão "
-"disponível do pacote %s pôde satisfazer os requerimentos de versão"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Gravados %i registros com %i arquivos que não combinam\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Falha ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito "
-"novo"
+"Gravados %i registros com %i arquivos faltando e %i arquivos que não "
+"combinam\n"
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Falha ao satisfazer dependência de %s por %s: %s"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Diretório de listas %spartial está faltando."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "Falha ao processar as dependências de construção"
+msgid "Preparing %s"
+msgstr "Preparando %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Módulos suportados:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Desempacotando %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Uso: apt-get [opções] comando\n"
-" apt-get [opções] install|remove pacote1 [pacote2 ...]\n"
-" apt-get [opções] source pacote1 [pacote2 ...]\n"
-"\n"
-"O apt-get é uma interface simples de linha de comando para fazer o\n"
-"download de pacotes e instalá-los. Os comandos usados mais frequentemente\n"
-"são update e install.\n"
-"\n"
-"Comandos:\n"
-" update - Adquire novas listas de pacotes\n"
-" upgrade - Faz uma atualização\n"
-" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n"
-" remove - Remove pacotes\n"
-" source - Baixa arquivos fonte\n"
-" build-dep - Configura as dependências de compilação de pacotes fonte\n"
-" dist-upgrade - Atualiza a distribuição, consulte apt-get(8)\n"
-" dselect-upgrade - Segue as seleções do dselect\n"
-" clean - Apaga arquivos baixados para instalação\n"
-" autoclean - Apaga arquivos antigos baixados para instalação\n"
-" check - Verifica se não há dependências quebradas\n"
-"\n"
-"Opções:\n"
-" -h Esse texto de ajuda\n"
-" -q Saída logável, exceto para erros\n"
-" -qq Sem saída, exceto para erros\n"
-" -d Fazer o download apenas - NÃO instalar ou desempacotar arquivos\n"
-" -s Não-agir. Executar simulação de ordenação\n"
-" -y Assumir Sim para todas as perguntas e não questionar\n"
-" -f Tenta continuar se a checagem de integridade falhar\n"
-" -m Tenta continuar se os arquivos não podem ser localizados\n"
-" -u Mostra uma lista de pacotes atualizados também\n"
-" -b Constrói o pacote fonte depois de baixá-lo\n"
-" -V Exibe números de versões mais detalhados\n"
-" -c=? Ler esse arquivo de configuração\n"
-" -o=? Definir uma opção de configuração arbitrária, ex -o dir::cache=/tmp\n"
-"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n"
-"para maiores informações e opções.\n"
-" Este APT tem Poderes de Super Vaca.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Preparando para configurar %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Atingido "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Configurando %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Obtendo:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Erro processando o diretório %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "%s instalado"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Preparando para a remoção de %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Baixados %sB em %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Removendo %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Trabalhando]"
+msgid "Removed %s"
+msgstr "%s removido"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
-"no drive '%s' e pressione enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "Preparando para remover completamente %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Registro de pacote desconhecido!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s completamente removido"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Uso: apt-sortpkgs [opções] arquivo1 [arquivo2 ...]\n"
-"\n"
-"O apt-sortpkgs é uma ferramenta simples para ordenar arquivos de pacote.\n"
-"A opção -s é usada para indicar que tipo de arquivo é.\n"
-"\n"
-"Opções:\n"
-" -h Esse texto de ajuda\n"
-" -s Usar ordenação de arquivo fonte\n"
-" -c=? Ler esse arquivo de configuração\n"
-" -o=? Define uma opção arbitrária de configuração, ex: -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Configuração padrão ruim!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Não foi possível aplicar o patch"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Pressione enter para continuar."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Conexão encerrada prematuramente"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr ""
-"Alguns erros ocorreram ao desempacotar. Eu vou configurar os pacotes que "
-"foram"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linha %d muito longa (máx. %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"instalados. Isto pode resultar em erros duplicados ou erros causados por"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)"
-#: dselect/install:103
-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"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Rótulo armazenado: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Mesclando informação disponível"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Encontrado(s) %i índice(s) de pacote(s), %i índice(s) de fonte(s) e %i "
+#~ "assinaturas\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt_po_ro\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-09-19 01:35+0300\n"
"Last-Translator: Sorin Batariuc <sorin@bonbon.net>\n"
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
"X-Generator: KBabel 1.11.2\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Nu pot citi baza de date a cdrom-ului %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Vă rog folosiţi apt-cdrom pentru a face recunoscut acest CD de către APT. "
-"'apt-get update' nu poate fi folosit pentru adăugarea de noi CD-uri"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD-ROM necorespunzător"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Pachetul %s versiunea %s are o dependenţă neîndeplinită:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Nu pot demonta CDROM-ul în %s, poate este încă utilizat."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disc negăsit."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Fişier negăsit"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Eşuare de determinare a stării"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Eşuare la ajustarea timpului"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI invalid, URIS local trebuie sa nu înceapă cu //"
+msgid "Unable to locate package %s"
+msgstr "Nu pot localiza pachetul %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Se autentifică"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Total nume pachete : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Nu pot determina numele pereche"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Pachete normale: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Nu pot determina numele local"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Pachete virtuale pure: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Serverul ne-a refuzat conectarea şi a spus: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Pachete virtuale singulare: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Eşuare UTILIZATOR, serverul a spus: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Pachete virtuale mixte: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Eşuare PAROLĂ, serverul a spus: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Lipsă: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Un server proxy a fost specificat dar nu exista nici un script de conectare, "
-"Acquire::ftp::ProxyLogin este gol."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Total versiuni distincte: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Script comandă de conectare '%s' eşuat, serverul a spus: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Total versiuni distincte: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Eşuare TIP, serverul a spus: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Total dependenţe: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Timpul de conectare a expirat"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Total relaţii versiune/fişier: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Serverul a terminat conexiunea"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Total relaţii versiune/fişier: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Eroare de citire"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Total cartări Furnizează: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Un răspuns a inundat zona tampon."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Total şiruri înglobate: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Degradare protocol"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Total spaţiu versiuni ale dependenţelor: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Eroare de scriere"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Total spaţiu intern: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Nu pot crea un socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Total spaţiu contorizat pentru: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Nu pot conecta data socket, timpul de conectare a expirat"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Fişierul pachetului %s este desincronizat."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Eşuare"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Trebuie să daţi exact un şablon"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Nu pot conecta socket pasiv"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nu s-au găsit pachete"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo n-a reuşit să obţină un socket de ascultare"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Fişiere pachet: "
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Nu pot lega un socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cache este desincronizat, nu pot executa x-ref un fişier pachet"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Nu pot asculta pe un socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Nu pot determina numele socket-ului"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pachete alese special:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Nu pot trimite comanda PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(negăsit)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Familie de adrese necunoscută %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Instalat: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Eşuare EPRT, serverul a spus: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(niciunul)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Timp de conectare data socket expirat"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Candidează: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Nu pot accepta conexiune"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pachet ales special: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problemă la indexarea fişierului"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabela de versiuni:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Nu pot aduce fişierul, serverul a spus '%s"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Timp expirat pentru data socket"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Eşuare transfer de date, serverul a spus: '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s pentru %s %s compilat pe %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Interogare"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Nu pot invoca"
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Conectare la %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Nu pot crea un socket pentru %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Nu pot iniţia conectarea la %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "N-am putut conecta la %s:%s (%s), timp de conectare expirat"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "N-am putut conecta la %s:%s (%s)."
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Utilizare: apt-cache [opţiuni] comanda\n"
+" apt-cache [opţiuni] add fişier1 [fişier2 ...]\n"
+" apt-cache [opţiuni] showpkg pachet1 [pachet2 ...]\n"
+" apt-cache [opţiuni] showsrc pachet1 [pachet2 ...]\n"
+"\n"
+"apt-cache este o unealtă de nivel scăzut pentru manipularea fişierelor\n"
+"binare din cache-ul APT, şi de interogare a informaţiilor din ele\n"
+"\n"
+"Comenzi:\n"
+" add - Adaugă un fişier pachet la cache-ul sursă\n"
+" gencaches - Construieşte şi cache-ul pachet şi cache-ul sursă\n"
+" showpkg - Arată unele informaţii generale pentru un singur pachet\n"
+" showsrc - Arată înregistrările sursei\n"
+" stats - Arată unele statistici de bază\n"
+" dump - Arată întregul fişier într-o formă concisă\n"
+" dumpavail - Afişează un fişier disponibil către stdout\n"
+" unmet - Arată dependenţele neîndeplinite\n"
+" search - Caută în lista de pachete pentru un şablon regex\n"
+" show - Arată o înregistrare lizibilă pentru pachet\n"
+" depends - Arată informaţii brute de dependenţă pentru un pachet\n"
+" rdepends - Arată dependenţele inversate pentru un pachet\n"
+" pkgnames - Afişează numele tuturor pachetelor\n"
+" dotty - Generează grafice de pachete pentru GraphVis\n"
+" xvcg - Generează grafice de pachete pentru xvcg\n"
+" policy - Arată ajustările de politică\n"
+"\n"
+"Opţiuni:\n"
+" -h Acest text de ajutor.\n"
+" -p=? Cache-ul de pachete.\n"
+" -s=? Cache-ul de surse.\n"
+" -q Dezactivează indicatorul de progres.\n"
+" -i Arată doar dependenţele importante pentru comanda neîndeplinită.\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
+"Vedeţi manualele apt-cache(8) şi apt.conf(5) pentru mai multe informaţii.\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Conectare la %s"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr ""
+"Vă rog furnizaţi un nume pentru acest disc, cum ar fi 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nu pot rezolva '%s'"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Vă rog introduceţi un disc în unitate şi apăsaţi Enter"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Eşuare temporară în rezolvarea '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Repetaţi această procedură pentru restul CD-urilor."
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "S-a întâmplat ceva rău la rezolvarea '%s:%s' (%i)"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumentele nu sunt perechi"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Nu pot conecta la %s %s"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilizare: apt-config [opţiuni] comanda\n"
+"\n"
+"apt-config este o unealtă simplă pentru citirea fişierului de configurare "
+"APT\n"
+"\n"
+"Comenzi:\n"
+" shell - Modul consolă\n"
+" dump - Arată configurarea\n"
+"\n"
+"Opţiuni:\n"
+" -h Acest text de ajutor.\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Nu pot accesa keyring: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Listă de argumente din Acquire::gpgv::Options prea lungă. Ies."
+msgid "%s not a valid DEB package."
+msgstr "%s nu este un pachet DEB valid."
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Eroare internă: Semnătură corespunzătoare, dar n-am putut determina cheia "
-"amprentei digitale?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Cel puţin o semnătură invalidă a fost întâlnită."
+"Utilizare: apt-extracttemplates fişier1 [fişier2 ...]\n"
+"\n"
+"apt-extracttemplates este o unealtă pentru extragerea informaţiilor \n"
+"de configurare şi şabloane dintr-un pachet Debian\n"
+"\n"
+"Opţiuni\n"
+" -h Acest text de ajutor.\n"
+" -t Impune directorul temp\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Nu pot executa '%s' pentru verificarea semnăturii (este instalat gnupg?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Eroare necunoscută în timp ce se execută gpgv"
+msgid "Unable to write to %s"
+msgstr "Nu pot scrie în %s"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Următoarele semnături au fost invalide:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Nu pot citi versiunea debconf. Este instalat debconf?"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Următoarele semnături n-au putut fi verificate datorită cheii publice care "
-"este indisponibilă:\n"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Lista de extensii pentru pachet este prea lungă"
-#: methods/gpgv.cc:272
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Failed to stat %s"
-msgstr "Eşuare în determinarea stării %s"
+msgid "Error processing directory %s"
+msgstr "Eroare la prelucrarea directorului %s"
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Nu pot deschide conexiunea pentru %s"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Lista de extensii pentru sursă este prea lungă"
-#: methods/gzip.cc:109
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Eroare la scrierea antetului în fişierul index"
+
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Read error from %s process"
-msgstr "Eroare de citire din procesul %s"
+msgid "Error processing contents %s"
+msgstr "Eroare la prelucrarea conţinutului %s"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "În aşteptarea antetelor"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Utilizare: apt-ftparchive [opţiuni] comanda\n"
+"Comenzi: packages cale_binare [fişier_înlocuire [prefix_cale]]\n"
+" sources cale_src [fişier_înlocuire [prefix_cale]]\n"
+" contents cale\n"
+" release cale\n"
+" generate config [grupuri]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generează fişiere de indexare pentru arhivele Debian. "
+"Suportă\n"
+"multe stiluri de generare de la complet automat la înlocuiri funcţionale\n"
+"pentru dpkg-scanpackage şi dpkg-scansources\n"
+"\n"
+"apt-ftparchive generează fişierele Package dintr-un arbore de .deb-uri.\n"
+"Fişierul Pachet înglobează conţinutul tuturor câmpurilor de control din "
+"fiecare\n"
+"pachet cât şi MD5 hash şi dimensiunea fişierului. Un fişier de înlocuire "
+"este\n"
+"furnizat pentru a forţa valoarea Priorităţii şi Secţiunii.\n"
+"\n"
+"În mod asemănator apt-ftparchive generează fişierele Sources dintr-un arbore "
+"de .dsc-uri.\n"
+"Opţiunea --source-override poate fi folosită pentru a specifica fişierul de "
+"înlocuire\n"
+"\n"
+"Comenzile 'packages' şi 'sources' ar trebui executate în rădăcina "
+"arborelui.\n"
+"Cale_binare ar trebui să indice baza căutării recursive şi fişierul de "
+"înlocuire ar\n"
+"trebui să conţină semnalizatorul de înlocuire. Prefix_cale este adăugat "
+"câmpului\n"
+"de nume fişier dacă acesta este prezent. Exemplu de utilizare din arhiva\n"
+"Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Opţiuni:\n"
+" -h Acest text de ajutor.\n"
+" --md5 Generarea controlului MD5\n"
+" -s=? Fişierul de înlocuire pentru surse\n"
+" -q În linişte\n"
+" -d=? Selectează baza de date de cache opţională\n"
+" --no-delink Activează modul de depanare dezlegare\n"
+" --contents Generarea fişierului cu sumarul de control\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară"
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Primit o singură linie de antet peste %u caractere"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nu s-a potrivit nici o selecţie"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Linie de antet necorespunzătoare"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Unele fişiere lipsesc din grupul fişierului pachet '%s'"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Serverul http a trimis un antet de răspuns necorespunzător"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB a fost corupt, fişierul a fost redenumit %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Serverul http a trimis un antet lungime-conţinut necorespunzător"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB este vechi, se încearcă înnoirea %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Serverul http a trimis un antet zonă de conţinut necorespunzător"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Formatul DB este nevalid. Dacă l-aţi înnoit pe apt de la o versiune mai "
+"veche, ştergeţi şi recreaţi baza de date."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Acest server http are zonă de suport necorespunzătoare"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Nu pot deschide fişierul DB %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Format de date necunoscut"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Eşuare în determinarea stării %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Eşuarea selecţiei"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arhiva nu are înregistrare de control"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Timp de conectare expirat"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Nu pot obţine un cursor"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Eroare la scrierea fişierului de rezultat"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "A: Nu pot citi directorul %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Eroare la scrierea în fişier"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "A: Nu pot determina starea %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Eroare la scrierea în fişierul"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr ""
-"Eroare la citirea de pe server, conexiunea a fost închisă de la distanţă"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "A: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Eroare la citirea de pe server"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Erori la fişierul "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Antet de date necorespunzător"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Eşuare în a rezolva %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Conectare eşuată"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Eşuare în parcurgerea arborelui"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Eroare internă"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Eşuare la deschiderea %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Nu pot mmap un fişier gol"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr " Dezlegare %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Nu pot face mmap la %lu bytes"
+msgid "Failed to readlink %s"
+msgstr "Eşuare la citirea legăturii %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Selecţia %s nu s-a găsit"
+msgid "Failed to unlink %s"
+msgstr "Eşuare în desfacerea legăturii %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Tip de prescurtare nerecunoscut: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Eşuare în legarea %s de %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Deschidere fişier de configurare %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Limita de %sB a dezlegării a fost atinsă.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Linie %d prea lungă (max %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arhiva nu are câmp de pachet"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume"
+msgid " %s has no override entry\n"
+msgstr " %s nu are intrare de înlocuire\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Eroare de sintaxă %s:%u: etichetă greşită"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s responsabil este %s nu %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare"
+msgid " %s has no source override entry\n"
+msgstr " %s nu are nici o intrare sursă de înlocuire\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Eroare de sintaxă %s:%u: directivele pot fi date doar la nivelul superior"
+msgid " %s has no binary override entry either\n"
+msgstr " %s nu are nici intrare binară de înlocuire\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse"
+msgid "Internal error, could not locate member %s"
+msgstr "Eroare internă, nu pot localiza membrul %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Eroare de sintaxă %s:%u: incluse de aici"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Eşuare în alocarea memoriei"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'"
+msgid "Unable to open %s"
+msgstr "Nu pot deschide %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârşitul fişierului"
+msgid "Malformed override %s line %lu #1"
+msgstr "Înlocuire greşită %s linia %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Nu pot citi %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Înlocuire greşită %s linia %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Eroare!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Înlocuire greşită %s linia %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Terminat"
+msgid "Failed to read the override file %s"
+msgstr "Eşuare la citirea fişierului de înlocuire %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Opţiunea linie de comandă '%c' [din %s] este necunoscută."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Algoritm de compresie necunoscut '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Opţiunea linie de comandă %s nu este înţeleasă"
+msgid "Compressed output %s needs a compression set"
+msgstr "Rezultatul comprimat %s are nevoie de o ajustare a compresiei"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Opţiunea linie de comandă %s nu este booleană"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Eşuare în crearea conexiunii IPC către subproces"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Opţiunea %s necesită un argument"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Eşuare în crearea FIŞIERULUI*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Opţiunea %s: Specificaţia configurării articolului trebuie să aibă o =<val>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Eşuare în bifurcare"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Opţiunea %s necesită un argument integru, nu '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Comprimare copil"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opţiunea '%s' este prea lungă"
+msgid "Internal error, failed to create %s"
+msgstr "Eroare internă, eşuare în a crea %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, 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)."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Eşuare în a crea subprocesul IPC"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Operaţiune invalidă %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Eşuare în executarea compresorului"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Nu pot determina starea punctului de montare %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "decompresor"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Nu pot schimba la %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IE către subproces/fişier eşuat"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Eşuare la determinarea stării cdrom-ului"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Eşuare la citire în timpul calculării MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, 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"
+msgid "Problem unlinking %s"
+msgstr "Problemă la desfacerea %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Nu pot deschide fişierul blocat %s"
+msgid "Failed to rename %s to %s"
+msgstr "Eşuare în a redenumi %s în %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Nu este folosit blocajul pentru fişierul montat nfs %s"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Nu pot determina blocajul %s"
+msgid "Regex compilation error - %s"
+msgstr "Eroare de compilare expresie regulată - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Aşteptat %s, dar n-a fost acolo"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Următoarele pachete au dependenţe neîndeplinite:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Subprocesul %s a primit o eroare de segmentare."
+msgid "but %s is installed"
+msgstr "dar %s este instalat"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Subprocesul %s a întors un cod de eroare (%u)"
+msgid "but %s is to be installed"
+msgstr "dar %s este pe cale de a fi instalat"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Subprocesul %s s-a terminat brusc"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "dar nu este instalabil"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Nu pot deschide fişierul %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "dar este un pachet virtual"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "dar nu este instalat"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "scriere, încă mai am %lu de scris dar nu pot"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "dar nu este pe cale să fie instalat"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problemă la închiderea fişierului"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " sau"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problemă la dezlegarea fişierului"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Următoarele pachete NOI vor fi instalate:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problemă în timpul sincronizării fişierului"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Următoarele pachete vor fi ŞTERSE:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Cache gol de pachet"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Următoarele pachete au fost reţinute:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Cache-ul fişierului pachet este deteriorat"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Următoarele pachete vor fi ÎNNOITE:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Fişierul cache al pachetului este o versiune incompatibilă"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Următoarele pachete vor fi DE-GRADATE:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Acest APT nu suportă versioning system '%s'"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Următoarele pachete ţinute vor fi schimbate:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (datorită %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Depinde"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"AVERTISMENT: Următoarele pachete esenţiale vor fi şterse.\n"
+"Aceasta NU ar trebui făcută decât dacă ştiţi exact ce vreţi!"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Pre-depinde"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu înnoite, %lu nou instalate, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Sugerează"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinstalate, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Recomandă"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu de-gradate, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Este în conflict"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu de şters şi %lu neînnoite.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Înlocuieşte"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu instalate sau şterse incomplet.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Învechit"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Corectez dependenţele..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " eşuare."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "important"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Nu pot corecta dependenţele"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "cerut"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Nu pot micşora mulţimea pachetelor de înnoire"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Terminat"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "opţional"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Aţi putea să porniţi 'apt-get -f install' pentru a corecta acestea."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Dependenţe neîndeplinite. Încercaţi să folosiţi -f."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Se construieşte arborele de dependenţă"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Versiuni candidat"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Avertisment de autentificare înlocuit.\n"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generare dependenţe"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Instalaţi aceste pachete fără verificare [y/N]? "
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Unirea informaţiilor disponibile"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Unele pachete n-au putut fi autentificate"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Eşuare la deschiderea %s"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+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-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Eşuare în scrierea fişierului %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Nu pot analiza fişierul pachet %s (1)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Pachete trebuiesc şterse dar ştergerea este dezactivată."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Nu pot analiza fişierul pachet %s (2)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Eroare internă, Ordering nu s-a terminat"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Linie greşită %lu în lista sursă %s (URI)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Nu pot încuia directorul de descărcare"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Linie greşită %lu în lista sursă %s (dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Lista surselor nu poate fi citită."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Linie greşită %lu în lista sursă %s (analiza URI)"
+#: cmdline/apt-get.cc:834
+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"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Linie greşită %lu în lista sursă %s (dist. absolută)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Este nevoie să descărcaţi %sB/%sB de arhive.\n"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Linie greşită %lu în lista sursă %s (analiza dist.)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Este nevoie să descărcaţi %sB de arhive.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Deschidere %s"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "După despachetare va fi folosit %sB de spaţiu suplimentar pe disc.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Linia %u prea lungă în lista sursă %s."
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "După despachetare va fi eliberat %sB din spaţiul de pe disc.\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Linie greşită %u în lista sursă %s (tip)"
+msgid "Couldn't determine free space in %s"
+msgstr "N-am putut determina spaţiul disponibil în %s"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s"
+msgid "You don't have enough free space in %s."
+msgstr "Nu aveţi suficient spaţiu în %s."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Linie greşită %u în lista sursă %s (identificator vânzător)"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"A fost specificat 'doar neimportant' dar nu este o operaţiune neimportantă."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Da, fă cum îţi spun!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Aceasta instalare va avea nevoie de ştergerea temporară a pachetului "
-"esenţial %s din cauza unui bucle conflict/pre-dependenţă. Asta de multe ori "
-"nu-i de bine, dar dacă vreţi întradevăr s-o faceţi, activaţi opţiunea APT::"
-"Force-LoopBreak."
+"Sunteţi pe cale de a face ceva cu potenţial distructiv.\n"
+"Pentru a continua tastaţi fraza '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Tipul de fişier index '%s' nu este suportat"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Renunţare."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Vreţi să continuaţi [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el."
+msgid "Failed to fetch %s %s\n"
+msgstr "Eşuare în aducerea %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Eşuare în descărcarea unor fişiere"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Descărcare completă şi în modul doar descărcare"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi "
-"cauzată de pachete ţinute."
+"Nu pot aduce unele arhive, poate porniţi 'apt-get update' sau încercaţi cu --"
+"fix-missing?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Nu pot corecta problema, aţi ţinut pachete deteriorate."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing şi schimbul de mediu nu este deocamdată suportat"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Directorul de liste %spartial lipseşte."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Nu pot corecta pachetele lipsă."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Directorul de arhive %spartial lipseşte."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Abandonez instalarea."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Se descarcă fişierul %li din %li (%s rămas)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Notă, se selectează %s în locul lui %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Se descarcă fişierul %li din %li"
+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"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Metoda driver %s nu poate fi găsită."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Pachetul %s nu este instalat, aşa încât nu este şters\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoda %s nu s-a lansat corect"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Pachetul %s este un pachet virtual furnizat de către:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Instalat]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Ar trebui să alegeţi în mod explicit unul pentru instalare."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Vă rog introduceţi discul numit: '%s' în unitatea '%s' şi apăsaţi Enter."
+"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"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Oricum următoarele pachete îl înlocuiesc:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Sistemul de pachete '%s' nu este suportat"
+msgid "Package %s has no installation candidate"
+msgstr "Pachetul %s nu are nici un candidat la instalare"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Nu pot determina un tip de sistem de pachete potrivit"
+#: cmdline/apt-get.cc:1156
+#, 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"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Unable to stat %s."
-msgstr "Nu pot determina starea %s."
+msgid "%s is already the newest version.\n"
+msgstr "%s este deja la cea mai nouă versiune.\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Trebuie să puneţi nişte 'surse' de URI în sources.list"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release '%s' pentru '%s' n-a fost găsită"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Lista surselor nu poate fi citită."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Versiunea '%s' pentru '%s' n-a fost găsită"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr ""
-"Listele de pachete sau fişierul de stare n-au putut fi analizate sau "
-"deschise."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Versiune selectată %s (%s) pentru %s\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
-"Aţi putea vrea să porniţi 'apt-get update' pentru a corecta aceste probleme."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Comanda de actualizare nu are argumente"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Înregistrare invalidă în fişierul de preferinţe, fără antet de pachet"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Nu pot încuia directorul cu lista"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Nu s-a înţeles tipul de pin %s"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Unele fişiere index au eşuat la descărcare, fie au fost ignorate, fie au "
+"fost folosite în loc unele vechi."
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Fără prioritate (sau zero) specificată pentru pin"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Cache are un versioning system incompatibil"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Următoarele pachete NOI vor fi instalate:"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Eroare apărută în timpul procesării %s (NewPackage)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Eroare apărută în timpul procesării %s (UsePackage1)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Următoarele informaţii ar putea să vă ajute la rezolvarea situaţiei:"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Eroare apărută în timpul procesării %s (UsePackage2)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr ""
+"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Eroare apărută în timpul procesării %s (NewVersion1)"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Nu pot găsi pachetul %s"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Eroare apărută în timpul procesării %s (UsePackage3)"
+msgid "Couldn't find package %s"
+msgstr "Nu pot găsi pachetul %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Eroare apărută în timpul procesării %s (NewVersion2)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
-#: apt-pkg/pkgcachegen.cc:245
+#: cmdline/apt-get.cc:1722
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
+msgid "%s set to manually installed.\n"
+msgstr "dar %s este pe cale de a fi instalat"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1735
+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:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Mamăăă, aţi depăşit numărul de nume de pachete de care este capabil acest "
-"APT."
+"Dependenţe neîndeplinite. Încercaţi 'apt-get -f install' fără nici un pachet "
+"(sau oferiţi o altă soluţie)."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
+"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că aţi "
+"cerut\n"
+"o situaţie imposibilă sau că folosiţi distribuţia instabilă în care unele "
+"pachete\n"
+"cerute n-au fost create încă sau au fost mutate din Incoming."
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
+"Din moment ce doar aţi cerut o singură operaţiune este extrem de probabil\n"
+" că pachetul pur şi simplu nu este instalabil şi un raport de eroare pentru\n"
+"acest pachet ar trebui completat."
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pachete deteriorate"
+
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Următoarele extra pachete vor fi instalate:"
+
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Pachete sugerate:"
+
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Pachete recomandate:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Calculez înnoirea... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Eşuare"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Terminat"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
msgstr ""
-"Mamăăă, aţi depăşit numărul de dependenţe de care este capabil acest APT."
+"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Eroare apărută în timpul procesării %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Nu pot găsi o sursă pachet pentru %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Eroare apărută în timpul procesării %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Sar peste fişierul deja descărcat '%s'\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr ""
-"Nu s-a găsit pachetul %s %s în timpul procesării dependenţelor de fişiere"
+msgid "You don't have enough free space in %s"
+msgstr "Nu aveţi suficient spaţiu în %s"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Nu pot determina starea listei surse de pachete %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Este nevoie să descărcaţi %sB/%sB din arhivele surselor.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Citire liste de pachete"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Este nevoie să descărcaţi %sB din arhivele surselor.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Colectare furnizori fişier"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Aducere sursa %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Eşuare în a aduce unele arhive."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Nu pot scrie în %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Sar peste despachetarea sursei deja despachetate în %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Eroare IO în timpul salvării sursei cache"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Comanda de despachetare '%s' eşuată.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "redenumire eşuată, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Verificaţi dacă pachetul 'dpkg-dev' este instalat.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Nepotrivire MD5Sum"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Comanda de construire '%s' eşuată.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Nepotrivire MD5Sum"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Eşuare proces copil"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
-"Nu există nici o cheie publică disponibilă pentru următoarele "
-"identificatoare de chei:\n"
+"Trebuie specificat cel puţin un pachet pentru a-i verifica dependenţele "
+"înglobate"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"N-am putut localiza un fişier pentru pachetul %s. Aceasta ar putea însemna "
-"că aveţi nevoie să reparaţi manual acest pachet (din pricina unui arch lipsă)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Nu pot prelua informaţiile despre dependenţele înglobate ale lui %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"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 "%s has no build depends.\n"
+msgstr "%s nu are dependenţe înglobate.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"Fişierele index de pachete sunt deteriorate. Fără câmpul 'nume fişier:' la "
-"pachetul %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Nepotrivire dimensiune"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Blocul vânzător %s nu conţine amprentă"
+"Dependenţa lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
+"poate fi găsit"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Utilizare puct de montare CD-ROM %s\n"
-"Montare CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificare.. "
+"Dependenţa lui %s de %s nu poate fi satisfăcută deoarece nici o versiune "
+"disponibilă a pachetului %s nu poate satisface versiunile cerute"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Etichetă memorată: %s \n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Eşuare în a satisface dependenţa lui %s de %s: Pachetul instalat %s este "
+"prea nou"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Utilizare punct de montare CD-ROM %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Demontare CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Aştept discul...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Montez CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Scanez discul de fişierele index..\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Eşuare în a satisface dependenţa lui %s de %s: %s"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Găsite %i indexuri de pachete, %i indexuri de surse şi %i semnături\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Dependenţele înglobate pentru %s nu pot fi satisfăcute."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Etichetă memorată: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Eşuare în a prelucra dependenţele înglobate"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Acesta nu este un nume valid, mai încercaţi.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Module suportate:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Acest disc este numit: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Copiez listele de pachete.."
+"Utilizare: apt-get [opţiuni] comanda\n"
+" apt-get [opţiuni] install|remove pachet1 [pachet2 ...]\n"
+" apt-get [opţiuni] source pachet1 [pachet2 ...]\n"
+"\n"
+"apt-get este o simplă interfaţă în linie de comandă pentru descărcarea şi\n"
+"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n"
+"şi install.\n"
+"\n"
+"Comenzi:\n"
+" update - Aduce noile liste de pachete\n"
+" upgrade - Realizează o înnoire\n"
+" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n"
+" remove - Şterge pachete\n"
+" source - Descarcă arhivele sursă\n"
+" build-dep - Configurează dependenţele înglobate pentru sursele "
+"pachetelor\n"
+" dist-upgrade - Înnoirea distribuţiei, vedeţi apt-get(8)\n"
+" dselect-upgrade - Urmează selecţiile dselect\n"
+" clean - Şterge fişierele arhivă descărcate\n"
+" autoclean - Şterge vechile fişiere arhivă descărcate\n"
+" check - Verifică dacă există dependenţe neîndeplinite\n"
+"\n"
+"Opţiuni:\n"
+" -h Acest text de ajutor.\n"
+" -q Afişare jurnalizabilă - fără indicator de progres\n"
+" -qq Fără afişare, cu excepţia erorilor\n"
+" -d Doar descărcare - NU instala sau despacheta arhive\n"
+" -s Fără acţiune. Realizează o simulare\n"
+" -y Presupune DA la toate întrebările şi nu solicita răspuns\n"
+" -f Încercare de continuare dacă verificarea integrităţii eşuează\n"
+" -m Încercare de continuare dacă arhivele sunt de negăsit\n"
+" -u Arată o listă de pachete ce pot fi înnoite\n"
+" -b Construieşte sursa pachetului după aducere\n"
+" -V Arată numerele versiunilor în mod logoreic\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
+"Vedeţi manualul apt-get(8), sources.list(5) şi apt.conf(5)\n"
+"pentru mai multe informaţii şi opţiuni.\n"
+" Acest APT are puterile unei Super Vaci.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Scriere noua listă sursă\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Atins "
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Intrările listei surselor pentru acest disc sunt:\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Luat:"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Demontez CD-ROM..."
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ignorat "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "S-au scris %i înregistrări.\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Eroare"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "S-au scris %i înregistrări cu %i fişiere lipsă.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Adus %sB în %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "S-au scris %i înregistrări cu %i fişiere nepotrivite\n"
+msgid " [Working]"
+msgstr " [În lucru]"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"S-au scris %i înregistrări cu %i fişiere lipsă şi %i fişiere nepotrivite\n"
+"Schimbare de mediu: Vă rog introduceţi discul numit\n"
+" '%s'\n"
+"în unitatea '%s' şi apăsaţi Enter\n"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Directorul de liste %spartial lipseşte."
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Înregistrare de pachet necunoscut!"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Se pregăteşte %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Utilizare: apt-sortpkgs [opţiuni] fişier1 [fişier2 ...]\n"
+"\n"
+"apt-sortpkgs este o unealtă simplă pentru sortarea fişierelor pachete. "
+"Opţiunea\n"
+"-s este folosită pentru a indica ce fel de fişier este.\n"
+"\n"
+"Opţiuni:\n"
+" -h Acest text de ajutor\n"
+" -s Foloseşte sortarea de fişiere sursă\n"
+" -c=? Citeşte acest fişier de configurare\n"
+" -o=? Ajustează o opţiune de configurare arbitrară, ex.: -o dir::cache=/"
+"tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Se despachetează %s"
-
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Se pregăteşte configurarea %s"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Se configurează %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Eroare la prelucrarea directorului %s"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Instalat %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Se pregăteşte ştergerea lui %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Se şterge %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Şters %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Ajustări implicite necorespunzătoare!"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Se pregăteşte ştergerea completă a %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Apăsaţi Enter pentru a continua."
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Şters complet %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "S-au produs unele erori în timpul despachetării. Voi configura"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
msgstr ""
+"pachetele care au fost instalate. Aceasta ar putea rezulta erori dublate"
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Nu pot deschide fişierul %s"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"sau erori cauzate de dependenţe lipsă. Aceasta este normal, doar erorile"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Eşuare în crearea conexiunii IPC către subproces"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"de deasupra acestui mesaj sunt importante. Vă rog corectaţi-le şi porniţi "
+"din nou [I]nstalarea"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Conexiune închisă prematur"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Unirea informaţiilor disponibile"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Calea de diversiune este prea lungă"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Eşuare în a redenumi %s în %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Fişierul %s/%s suprascrie pe cel din pachetul %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Nu pot citi %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
"Directoarele de informaţii şi temporare trebuie să fie în acelaşi sistem de "
"fişiere"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Citire liste de pachete"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Fişier de control neanalizabil"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Nu pot localiza pachetul %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "Nu pot citi baza de date a cdrom-ului %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Total nume pachete : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Vă rog folosiţi apt-cdrom pentru a face recunoscut acest CD de către APT. "
+"'apt-get update' nu poate fi folosit pentru adăugarea de noi CD-uri"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Pachete normale: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD-ROM necorespunzător"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Pachete virtuale pure: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Nu pot demonta CDROM-ul în %s, poate este încă utilizat."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Pachete virtuale singulare: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disc negăsit."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Pachete virtuale mixte: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Fişier negăsit"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Lipsă: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Eşuare de determinare a stării"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Total versiuni distincte: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Eşuare la ajustarea timpului"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Total versiuni distincte: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI invalid, URIS local trebuie sa nu înceapă cu //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Total dependenţe: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Se autentifică"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Total relaţii versiune/fişier: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Nu pot determina numele pereche"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Total relaţii versiune/fişier: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Nu pot determina numele local"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Total cartări Furnizează: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Serverul ne-a refuzat conectarea şi a spus: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Total şiruri înglobate: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Eşuare UTILIZATOR, serverul a spus: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Total spaţiu versiuni ale dependenţelor: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Eşuare PAROLĂ, serverul a spus: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Total spaţiu intern: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Un server proxy a fost specificat dar nu exista nici un script de conectare, "
+"Acquire::ftp::ProxyLogin este gol."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Total spaţiu contorizat pentru: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Script comandă de conectare '%s' eşuat, serverul a spus: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Fişierul pachetului %s este desincronizat."
+msgid "TYPE failed, server said: %s"
+msgstr "Eşuare TIP, serverul a spus: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Trebuie să daţi exact un şablon"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Timpul de conectare a expirat"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nu s-au găsit pachete"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Serverul a terminat conexiunea"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Fişiere pachet: "
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Eroare de citire"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cache este desincronizat, nu pot executa x-ref un fişier pachet"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Un răspuns a inundat zona tampon."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Degradare protocol"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pachete alese special:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Eroare de scriere"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(negăsit)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Nu pot crea un socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Instalat: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Nu pot conecta data socket, timpul de conectare a expirat"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(niciunul)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Nu pot conecta socket pasiv"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Candidează: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo n-a reuşit să obţină un socket de ascultare"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pachet ales special: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Nu pot lega un socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabela de versiuni:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Nu pot asculta pe un socket"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Nu pot determina numele socket-ului"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s pentru %s %s compilat pe %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Nu pot trimite comanda PORT"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Utilizare: apt-cache [opţiuni] comanda\n"
-" apt-cache [opţiuni] add fişier1 [fişier2 ...]\n"
-" apt-cache [opţiuni] showpkg pachet1 [pachet2 ...]\n"
-" apt-cache [opţiuni] showsrc pachet1 [pachet2 ...]\n"
-"\n"
-"apt-cache este o unealtă de nivel scăzut pentru manipularea fişierelor\n"
-"binare din cache-ul APT, şi de interogare a informaţiilor din ele\n"
-"\n"
-"Comenzi:\n"
-" add - Adaugă un fişier pachet la cache-ul sursă\n"
-" gencaches - Construieşte şi cache-ul pachet şi cache-ul sursă\n"
-" showpkg - Arată unele informaţii generale pentru un singur pachet\n"
-" showsrc - Arată înregistrările sursei\n"
-" stats - Arată unele statistici de bază\n"
-" dump - Arată întregul fişier într-o formă concisă\n"
-" dumpavail - Afişează un fişier disponibil către stdout\n"
-" unmet - Arată dependenţele neîndeplinite\n"
-" search - Caută în lista de pachete pentru un şablon regex\n"
-" show - Arată o înregistrare lizibilă pentru pachet\n"
-" depends - Arată informaţii brute de dependenţă pentru un pachet\n"
-" rdepends - Arată dependenţele inversate pentru un pachet\n"
-" pkgnames - Afişează numele tuturor pachetelor\n"
-" dotty - Generează grafice de pachete pentru GraphVis\n"
-" xvcg - Generează grafice de pachete pentru xvcg\n"
-" policy - Arată ajustările de politică\n"
-"\n"
-"Opţiuni:\n"
-" -h Acest text de ajutor.\n"
-" -p=? Cache-ul de pachete.\n"
-" -s=? Cache-ul de surse.\n"
-" -q Dezactivează indicatorul de progres.\n"
-" -i Arată doar dependenţele importante pentru comanda neîndeplinită.\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
-"Vedeţi manualele apt-cache(8) şi apt.conf(5) pentru mai multe informaţii.\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Familie de adrese necunoscută %u (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
-"Vă rog furnizaţi un nume pentru acest disc, cum ar fi 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Eşuare EPRT, serverul a spus: %s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Vă rog introduceţi un disc în unitate şi apăsaţi Enter"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Timp de conectare data socket expirat"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Repetaţi această procedură pentru restul CD-urilor."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Nu pot accepta conexiune"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumentele nu sunt perechi"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problemă la indexarea fişierului"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Utilizare: apt-config [opţiuni] comanda\n"
-"\n"
-"apt-config este o unealtă simplă pentru citirea fişierului de configurare "
-"APT\n"
-"\n"
-"Comenzi:\n"
-" shell - Modul consolă\n"
-" dump - Arată configurarea\n"
-"\n"
-"Opţiuni:\n"
-" -h Acest text de ajutor.\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Nu pot aduce fişierul, serverul a spus '%s"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Timp expirat pentru data socket"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s nu este un pachet DEB valid."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Eşuare transfer de date, serverul a spus: '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Utilizare: apt-extracttemplates fişier1 [fişier2 ...]\n"
-"\n"
-"apt-extracttemplates este o unealtă pentru extragerea informaţiilor \n"
-"de configurare şi şabloane dintr-un pachet Debian\n"
-"\n"
-"Opţiuni\n"
-" -h Acest text de ajutor.\n"
-" -t Impune directorul temp\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Interogare"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Nu pot citi versiunea debconf. Este instalat debconf?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Nu pot invoca"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Lista de extensii pentru pachet este prea lungă"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Conectare la %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Eroare la prelucrarea directorului %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Lista de extensii pentru sursă este prea lungă"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Nu pot crea un socket pentru %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Eroare la scrierea antetului în fişierul index"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Nu pot iniţia conectarea la %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Eroare la prelucrarea conţinutului %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "N-am putut conecta la %s:%s (%s), timp de conectare expirat"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Utilizare: apt-ftparchive [opţiuni] comanda\n"
-"Comenzi: packages cale_binare [fişier_înlocuire [prefix_cale]]\n"
-" sources cale_src [fişier_înlocuire [prefix_cale]]\n"
-" contents cale\n"
-" release cale\n"
-" generate config [grupuri]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generează fişiere de indexare pentru arhivele Debian. "
-"Suportă\n"
-"multe stiluri de generare de la complet automat la înlocuiri funcţionale\n"
-"pentru dpkg-scanpackage şi dpkg-scansources\n"
-"\n"
-"apt-ftparchive generează fişierele Package dintr-un arbore de .deb-uri.\n"
-"Fişierul Pachet înglobează conţinutul tuturor câmpurilor de control din "
-"fiecare\n"
-"pachet cât şi MD5 hash şi dimensiunea fişierului. Un fişier de înlocuire "
-"este\n"
-"furnizat pentru a forţa valoarea Priorităţii şi Secţiunii.\n"
-"\n"
-"În mod asemănator apt-ftparchive generează fişierele Sources dintr-un arbore "
-"de .dsc-uri.\n"
-"Opţiunea --source-override poate fi folosită pentru a specifica fişierul de "
-"înlocuire\n"
-"\n"
-"Comenzile 'packages' şi 'sources' ar trebui executate în rădăcina "
-"arborelui.\n"
-"Cale_binare ar trebui să indice baza căutării recursive şi fişierul de "
-"înlocuire ar\n"
-"trebui să conţină semnalizatorul de înlocuire. Prefix_cale este adăugat "
-"câmpului\n"
-"de nume fişier dacă acesta este prezent. Exemplu de utilizare din arhiva\n"
-"Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Opţiuni:\n"
-" -h Acest text de ajutor.\n"
-" --md5 Generarea controlului MD5\n"
-" -s=? Fişierul de înlocuire pentru surse\n"
-" -q În linişte\n"
-" -d=? Selectează baza de date de cache opţională\n"
-" --no-delink Activează modul de depanare dezlegare\n"
-" --contents Generarea fişierului cu sumarul de control\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "N-am putut conecta la %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Conectare la %s"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nu s-a potrivit nici o selecţie"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Nu pot rezolva '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Unele fişiere lipsesc din grupul fişierului pachet '%s'"
+msgid "Temporary failure resolving '%s'"
+msgstr "Eşuare temporară în rezolvarea '%s'"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB a fost corupt, fişierul a fost redenumit %s.old"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "S-a întâmplat ceva rău la rezolvarea '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB este vechi, se încearcă înnoirea %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Nu pot conecta la %s %s"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Nu pot accesa keyring: '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Listă de argumente din Acquire::gpgv::Options prea lungă. Ies."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Formatul DB este nevalid. Dacă l-aţi înnoit pe apt de la o versiune mai "
-"veche, ştergeţi şi recreaţi baza de date."
+"Eroare internă: Semnătură corespunzătoare, dar n-am putut determina cheia "
+"amprentei digitale?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Cel puţin o semnătură invalidă a fost întâlnită."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Nu pot deschide fişierul DB %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Nu pot executa '%s' pentru verificarea semnăturii (este instalat gnupg?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arhiva nu are înregistrare de control"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Eroare necunoscută în timp ce se execută gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Nu pot obţine un cursor"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Următoarele semnături au fost invalide:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Următoarele semnături n-au putut fi verificate datorită cheii publice care "
+"este indisponibilă:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "A: Nu pot citi directorul %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Nu pot deschide conexiunea pentru %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "A: Nu pot determina starea %s\n"
+msgid "Read error from %s process"
+msgstr "Eroare de citire din procesul %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "În aşteptarea antetelor"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "A: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Primit o singură linie de antet peste %u caractere"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Erori la fişierul "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Linie de antet necorespunzătoare"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Eşuare în a rezolva %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Serverul http a trimis un antet de răspuns necorespunzător"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Eşuare în parcurgerea arborelui"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Serverul http a trimis un antet lungime-conţinut necorespunzător"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Eşuare la deschiderea %s"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Serverul http a trimis un antet zonă de conţinut necorespunzător"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " Dezlegare %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Acest server http are zonă de suport necorespunzătoare"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Format de date necunoscut"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Eşuarea selecţiei"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Timp de conectare expirat"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Eroare la scrierea fişierului de rezultat"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Eroare la scrierea în fişier"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Eroare la scrierea în fişierul"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr ""
+"Eroare la citirea de pe server, conexiunea a fost închisă de la distanţă"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Eroare la citirea de pe server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Antet de date necorespunzător"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Conectare eşuată"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Eroare internă"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Nu pot mmap un fişier gol"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Eşuare la citirea legăturii %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Nu pot face mmap la %lu bytes"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Eşuare în desfacerea legăturii %s"
+msgid "Selection %s not found"
+msgstr "Selecţia %s nu s-a găsit"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Eşuare în legarea %s de %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Tip de prescurtare nerecunoscut: '%c'"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Limita de %sB a dezlegării a fost atinsă.\n"
+msgid "Opening configuration file %s"
+msgstr "Deschidere fişier de configurare %s"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arhiva nu are câmp de pachet"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Linie %d prea lungă (max %d)"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nu are intrare de înlocuire\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s responsabil este %s nu %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Eroare de sintaxă %s:%u: etichetă greşită"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nu are nici o intrare sursă de înlocuire\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s nu are nici intrare binară de înlocuire\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Eroare internă, nu pot localiza membrul %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Eşuare în alocarea memoriei"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Eroare de sintaxă %s:%u: incluse de aici"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "Nu pot deschide %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Înlocuire greşită %s linia %lu #1"
+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"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Înlocuire greşită %s linia %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Eroare!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Înlocuire greşită %s linia %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Terminat"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Eşuare la citirea fişierului de înlocuire %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Opţiunea linie de comandă '%c' [din %s] este necunoscută."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Algoritm de compresie necunoscut '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Opţiunea linie de comandă %s nu este înţeleasă"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Rezultatul comprimat %s are nevoie de o ajustare a compresiei"
+msgid "Command line option %s is not boolean"
+msgstr "Opţiunea linie de comandă %s nu este booleană"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Eşuare în crearea FIŞIERULUI*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Opţiunea %s necesită un argument"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Eşuare în bifurcare"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opţiunea %s: Specificaţia configurării articolului trebuie să aibă o =<val>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Comprimare copil"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Opţiunea %s necesită un argument integru, nu '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Eroare internă, eşuare în a crea %s"
+msgid "Option '%s' is too long"
+msgstr "Opţiunea '%s' este prea lungă"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Eşuare în a crea subprocesul IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, 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)."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Eşuare în executarea compresorului"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Operaţiune invalidă %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "decompresor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Nu pot determina starea punctului de montare %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IE către subproces/fişier eşuat"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Nu pot schimba la %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Eşuare la citire în timpul calculării MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Eşuare la determinarea stării cdrom-ului"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problemă la desfacerea %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Nu s-a folosit închiderea pentru fişierul disponibil doar-citire %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Nu pot deschide fişierul blocat %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Eroare de compilare expresie regulată - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Nu este folosit blocajul pentru fişierul montat nfs %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Următoarele pachete au dependenţe neîndeplinite:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Nu pot determina blocajul %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "dar %s este instalat"
+msgid "Waited for %s but it wasn't there"
+msgstr "Aşteptat %s, dar n-a fost acolo"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "dar %s este pe cale de a fi instalat"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Subprocesul %s a primit o eroare de segmentare."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "dar nu este instalabil"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Subprocesul %s a întors un cod de eroare (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "dar este un pachet virtual"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Subprocesul %s s-a terminat brusc"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "dar nu este instalat"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Nu pot deschide fişierul %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "dar nu este pe cale să fie instalat"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " sau"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "scriere, încă mai am %lu de scris dar nu pot"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Următoarele pachete NOI vor fi instalate:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problemă la închiderea fişierului"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Următoarele pachete vor fi ŞTERSE:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problemă la dezlegarea fişierului"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Următoarele pachete au fost reţinute:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problemă în timpul sincronizării fişierului"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Următoarele pachete vor fi ÎNNOITE:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Cache gol de pachet"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Următoarele pachete vor fi DE-GRADATE:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Cache-ul fişierului pachet este deteriorat"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Următoarele pachete ţinute vor fi schimbate:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Fişierul cache al pachetului este o versiune incompatibilă"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (datorită %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Acest APT nu suportă versioning system '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"AVERTISMENT: Următoarele pachete esenţiale vor fi şterse.\n"
-"Aceasta NU ar trebui făcută decât dacă ştiţi exact ce vreţi!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu înnoite, %lu nou instalate, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Depinde"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinstalate, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Pre-depinde"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu de-gradate, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Sugerează"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu de şters şi %lu neînnoite.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Recomandă"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu instalate sau şterse incomplet.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Este în conflict"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Corectez dependenţele..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Înlocuieşte"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " eşuare."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Învechit"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Nu pot corecta dependenţele"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Nu pot micşora mulţimea pachetelor de înnoire"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "important"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Terminat"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "cerut"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Aţi putea să porniţi 'apt-get -f install' pentru a corecta acestea."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Dependenţe neîndeplinite. Încercaţi să folosiţi -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "opţional"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
+
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Se construieşte arborele de dependenţă"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Avertisment de autentificare înlocuit.\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Versiuni candidat"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Instalaţi aceste pachete fără verificare [y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generare dependenţe"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Unele pachete n-au putut fi autentificate"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Unirea informaţiilor disponibile"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-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-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Eşuare la deschiderea %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Eşuare în scrierea fişierului %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Pachete trebuiesc şterse dar ştergerea este dezactivată."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Nu pot analiza fişierul pachet %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Eroare internă, Ordering nu s-a terminat"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Nu pot analiza fişierul pachet %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Nu pot încuia directorul de descărcare"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Linie greşită %lu în lista sursă %s (URI)"
-#: cmdline/apt-get.cc:831
-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"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Linie greşită %lu în lista sursă %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Este nevoie să descărcaţi %sB/%sB de arhive.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Linie greşită %lu în lista sursă %s (analiza URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Este nevoie să descărcaţi %sB de arhive.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Linie greşită %lu în lista sursă %s (dist. absolută)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "După despachetare va fi folosit %sB de spaţiu suplimentar pe disc.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Linie greşită %lu în lista sursă %s (analiza dist.)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "După despachetare va fi eliberat %sB din spaţiul de pe disc.\n"
+msgid "Opening %s"
+msgstr "Deschidere %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "N-am putut determina spaţiul disponibil în %s"
+msgid "Line %u too long in source list %s."
+msgstr "Linia %u prea lungă în lista sursă %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Nu aveţi suficient spaţiu în %s."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Linie greşită %u în lista sursă %s (tip)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr ""
-"A fost specificat 'doar neimportant' dar nu este o operaţiune neimportantă."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Da, fă cum îţi spun!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Linie greşită %u în lista sursă %s (identificator vânzător)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"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:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Renunţare."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Vreţi să continuaţi [Y/n]? "
+"Aceasta instalare va avea nevoie de ştergerea temporară a pachetului "
+"esenţial %s din cauza unui bucle conflict/pre-dependenţă. Asta de multe ori "
+"nu-i de bine, dar dacă vreţi întradevăr s-o faceţi, activaţi opţiunea APT::"
+"Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Eşuare în aducerea %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Eşuare în descărcarea unor fişiere"
+msgid "Index file type '%s' is not supported"
+msgstr "Tipul de fişier index '%s' nu este suportat"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Descărcare completă şi în modul doar descărcare"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Nu pot aduce unele arhive, poate porniţi 'apt-get update' sau încercaţi cu --"
-"fix-missing?"
+"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi "
+"cauzată de pachete ţinute."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing şi schimbul de mediu nu este deocamdată suportat"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Nu pot corecta problema, aţi ţinut pachete deteriorate."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Nu pot corecta pachetele lipsă."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Directorul de liste %spartial lipseşte."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Abandonez instalarea."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Directorul de arhive %spartial lipseşte."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Notă, se selectează %s în locul lui %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Se descarcă fişierul %li din %li (%s rămas)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Sar peste %s, este deja instalat şi înnoirea nu este activată.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Se descarcă fişierul %li din %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, 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"
+msgid "The method driver %s could not be found."
+msgstr "Metoda driver %s nu poate fi găsită."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Pachetul %s este un pachet virtual furnizat de către:\n"
+msgid "Method %s did not start correctly"
+msgstr "Metoda %s nu s-a lansat corect"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Instalat]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Vă rog introduceţi discul numit: '%s' în unitatea '%s' şi apăsaţi Enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Ar trebui să alegeţi în mod explicit unul pentru instalare."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Sistemul de pachete '%s' nu este suportat"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Nu pot determina un tip de sistem de pachete potrivit"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Nu pot determina starea %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Trebuie să puneţi nişte 'surse' de URI în sources.list"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
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"
+"Listele de pachete sau fişierul de stare n-au putut fi analizate sau "
+"deschise."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Oricum următoarele pachete îl înlocuiesc:"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Aţi putea vrea să porniţi 'apt-get update' pentru a corecta aceste probleme."
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Înregistrare invalidă în fişierul de preferinţe, fără antet de pachet"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Pachetul %s nu are nici un candidat la instalare"
+msgid "Did not understand pin type %s"
+msgstr "Nu s-a înţeles tipul de pin %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Fără prioritate (sau zero) specificată pentru pin"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Cache are un versioning system incompatibil"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Eroare apărută în timpul procesării %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Eroare apărută în timpul procesării %s (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s este deja la cea mai nouă versiune.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Eroare apărută în timpul procesării %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release '%s' pentru '%s' n-a fost găsită"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Versiunea '%s' pentru '%s' n-a fost găsită"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Eroare apărută în timpul procesării %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Versiune selectată %s (%s) pentru %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Eroare apărută în timpul procesării %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Comanda de actualizare nu are argumente"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Eroare apărută în timpul procesării %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Nu pot încuia directorul cu lista"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Unele fişiere index au eşuat la descărcare, fie au fost ignorate, fie au "
-"fost folosite în loc unele vechi."
+"Mamăăă, aţi depăşit numărul de nume de pachete de care este capabil acest "
+"APT."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
msgstr ""
+"Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Următoarele pachete NOI vor fi instalate:"
-
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
msgstr ""
+"Mamăăă, aţi depăşit numărul de versiuni de care este capabil acest APT."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Mamăăă, aţi depăşit numărul de dependenţe de care este capabil acest APT."
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Următoarele informaţii ar putea să vă ajute la rezolvarea situaţiei:"
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Eroare apărută în timpul procesării %s (FindPkg)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Eroare apărută în timpul procesării %s (CollectFileProvides)"
+
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
+"Nu s-a găsit pachetul %s %s în timpul procesării dependenţelor de fişiere"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Nu pot determina starea listei surse de pachete %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Nu pot găsi pachetul %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Colectare furnizori fişier"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Nu pot găsi pachetul %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Eroare IO în timpul salvării sursei cache"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Notă, selectare %s pentru expresie regulată '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "redenumire eşuată, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "dar %s este pe cale de a fi instalat"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Nepotrivire MD5Sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Aţi putea porni 'apt-get -f install' pentru a corecta acestea:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Nepotrivire MD5Sum"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Dependenţe neîndeplinite. Încercaţi 'apt-get -f install' fără nici un pachet "
-"(sau oferiţi o altă soluţie)."
+"Nu există nici o cheie publică disponibilă pentru următoarele "
+"identificatoare de chei:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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."
+"N-am putut localiza un fişier pentru pachetul %s. Aceasta ar putea însemna "
+"că aveţi nevoie să reparaţi manual acest pachet (din pricina unui arch lipsă)"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Din moment ce doar aţi cerut o singură operaţiune este extrem de probabil\n"
-" că pachetul pur şi simplu nu este instalabil şi un raport de eroare pentru\n"
-"acest pachet ar trebui completat."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pachete deteriorate"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Următoarele extra pachete vor fi instalate:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Pachete sugerate:"
+"N-am putut localiza un fişier pentru pachetul %s. Aceasta ar putea însemna "
+"că aveţi nevoie să depanaţi manual acest pachet."
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Pachete recomandate:"
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Fişierele index de pachete sunt deteriorate. Fără câmpul 'nume fişier:' la "
+"pachetul %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Calculez înnoirea... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Nepotrivire dimensiune"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Terminat"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Blocul vânzător %s nu conţine amprentă"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni"
+"Utilizare puct de montare CD-ROM %s\n"
+"Montare CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Trebuie specificat cel puţin un pachet pentru a-i aduce sursa"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificare.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Nu pot găsi o sursă pachet pentru %s"
+msgid "Stored label: %s\n"
+msgstr "Etichetă memorată: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Sar peste fişierul deja descărcat '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Demontez CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Nu aveţi suficient spaţiu în %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Utilizare punct de montare CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Este nevoie să descărcaţi %sB/%sB din arhivele surselor.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Demontare CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Este nevoie să descărcaţi %sB din arhivele surselor.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Aştept discul...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Aducere sursa %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Montez CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Eşuare în a aduce unele arhive."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Scanez discul de fişierele index..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Sar peste despachetarea sursei deja despachetate în %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Găsite %i indexuri de pachete, %i indexuri de surse şi %i semnături\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Comanda de despachetare '%s' eşuată.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Etichetă memorată: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Verificaţi dacă pachetul 'dpkg-dev' este instalat.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Acesta nu este un nume valid, mai încercaţi.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Comanda de construire '%s' eşuată.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Acest disc este numit: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Eşuare proces copil"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Copiez listele de pachete.."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Scriere noua listă sursă\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Trebuie specificat cel puţin un pachet pentru a-i verifica dependenţele "
-"înglobate"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Intrările listei surselor pentru acest disc sunt:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Nu pot prelua informaţiile despre dependenţele înglobate ale lui %s"
+msgid "Wrote %i records.\n"
+msgstr "S-au scris %i înregistrări.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s nu are dependenţe înglobate.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "S-au scris %i înregistrări cu %i fişiere lipsă.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"Dependenţa lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu "
-"poate fi găsit"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "S-au scris %i înregistrări cu %i fişiere nepotrivite\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
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"
+"S-au scris %i înregistrări cu %i fişiere lipsă şi %i fişiere nepotrivite\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Eşuare în a satisface dependenţa lui %s de %s: Pachetul instalat %s este "
-"prea nou"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Directorul de liste %spartial lipseşte."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Eşuare în a satisface dependenţa lui %s de %s: %s"
+msgid "Preparing %s"
+msgstr "Se pregăteşte %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, 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:2561
-msgid "Failed to process build dependencies"
-msgstr "Eşuare în a prelucra dependenţele înglobate"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Module suportate:"
+msgid "Unpacking %s"
+msgstr "Se despachetează %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Utilizare: apt-get [opţiuni] comanda\n"
-" apt-get [opţiuni] install|remove pachet1 [pachet2 ...]\n"
-" apt-get [opţiuni] source pachet1 [pachet2 ...]\n"
-"\n"
-"apt-get este o simplă interfaţă în linie de comandă pentru descărcarea şi\n"
-"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n"
-"şi install.\n"
-"\n"
-"Comenzi:\n"
-" update - Aduce noile liste de pachete\n"
-" upgrade - Realizează o înnoire\n"
-" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n"
-" remove - Şterge pachete\n"
-" source - Descarcă arhivele sursă\n"
-" build-dep - Configurează dependenţele înglobate pentru sursele "
-"pachetelor\n"
-" dist-upgrade - Înnoirea distribuţiei, vedeţi apt-get(8)\n"
-" dselect-upgrade - Urmează selecţiile dselect\n"
-" clean - Şterge fişierele arhivă descărcate\n"
-" autoclean - Şterge vechile fişiere arhivă descărcate\n"
-" check - Verifică dacă există dependenţe neîndeplinite\n"
-"\n"
-"Opţiuni:\n"
-" -h Acest text de ajutor.\n"
-" -q Afişare jurnalizabilă - fără indicator de progres\n"
-" -qq Fără afişare, cu excepţia erorilor\n"
-" -d Doar descărcare - NU instala sau despacheta arhive\n"
-" -s Fără acţiune. Realizează o simulare\n"
-" -y Presupune DA la toate întrebările şi nu solicita răspuns\n"
-" -f Încercare de continuare dacă verificarea integrităţii eşuează\n"
-" -m Încercare de continuare dacă arhivele sunt de negăsit\n"
-" -u Arată o listă de pachete ce pot fi înnoite\n"
-" -b Construieşte sursa pachetului după aducere\n"
-" -V Arată numerele versiunilor în mod logoreic\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară, ex. -o dir::cache=/tmp\n"
-"Vedeţi manualul apt-get(8), sources.list(5) şi apt.conf(5)\n"
-"pentru mai multe informaţii şi opţiuni.\n"
-" Acest APT are puterile unei Super Vaci.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Se pregăteşte configurarea %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Atins "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Se configurează %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Luat:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Eroare la prelucrarea directorului %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ignorat "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Instalat %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Eroare"
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Se pregăteşte ştergerea lui %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Adus %sB în %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Se şterge %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [În lucru]"
+msgid "Removed %s"
+msgstr "Şters %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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: Vă rog introduceţi discul numit\n"
-" '%s'\n"
-"în unitatea '%s' şi apăsaţi Enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "Se pregăteşte ştergerea completă a %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Înregistrare de pachet necunoscut!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Şters complet %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Utilizare: apt-sortpkgs [opţiuni] fişier1 [fişier2 ...]\n"
-"\n"
-"apt-sortpkgs este o unealtă simplă pentru sortarea fişierelor pachete. "
-"Opţiunea\n"
-"-s este folosită pentru a indica ce fel de fişier este.\n"
-"\n"
-"Opţiuni:\n"
-" -h Acest text de ajutor\n"
-" -s Foloseşte sortarea de fişiere sursă\n"
-" -c=? Citeşte acest fişier de configurare\n"
-" -o=? Ajustează o opţiune de configurare arbitrară, ex.: -o dir::cache=/"
-"tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Ajustări implicite necorespunzătoare!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Nu pot deschide fişierul %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Apăsaţi Enter pentru a continua."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Conexiune închisă prematur"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "S-au produs unele erori în timpul despachetării. Voi configura"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Linie %d prea lungă (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr ""
-"pachetele care au fost instalate. Aceasta ar putea rezulta erori dublate"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"sau erori cauzate de dependenţe lipsă. Aceasta este normal, doar erorile"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"de deasupra acestui mesaj sunt importante. Vă rog corectaţi-le şi porniţi "
-"din nou [I]nstalarea"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Etichetă memorată: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Unirea informaţiilor disponibile"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Găsite %i indexuri de pachete, %i indexuri de surse şi %i semnături\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: 0.6.46.4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-01-03 23:33+0300\n"
"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Невозможно прочесть базу %s с CD"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-"
-"get update не используется для добавления нового CD"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Ошибочный CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Диск не найден."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Файл не найден"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Не удалось получить атрибуты"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Не удалось установить время модификации"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Неправильный URI, локальный URI не должен начинаться с //"
+msgid "Unable to locate package %s"
+msgstr "Не удалось найти пакет %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Вход в систему"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Всего имён пакетов : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Невозможно определить имя удалённого сервера"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Нормальных пакетов: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Невозможно определить локальное имя"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Чисто виртуальных пакетов: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Сервер разорвал соединение и сообщил: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Одиночных виртуальных пакетов: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Команда USER не выполнена, сервер сообщил: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Смешанных виртуальных пакетов: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Команда PASS не выполнена, сервер сообщил: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Пропущено: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::"
-"ProxyLogin пуст."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Всего уникальных версий: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr ""
-"Команда '%s' сценария входа в систему завершилась неудачно, сервер сообщил: %"
-"s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Всего уникальных версий: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Команда TYPE не выполнена, сервер сообщил: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Всего зависимостей: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Ð\94опÑ\83Ñ\81Ñ\82имое вÑ\80емÑ\8f ожиданиÑ\8f длÑ\8f Ñ\81оединениÑ\8f иÑ\81Ñ\82екло"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Ð\92Ñ\81его оÑ\82ноÑ\88ений Ð\92еÑ\80Ñ\81иÑ\8f/Файл: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Сервер прервал соединение"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Всего отношений Версия/Файл: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Ð\9eÑ\88ибка Ñ\87Ñ\82ениÑ\8f"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Ð\92Ñ\81его оÑ\82ноÑ\88ений Provides: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Ð\9eÑ\82веÑ\82 пеÑ\80еполнил бÑ\83Ñ\84еÑ\80."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Ð\92Ñ\81его Ñ\80азвÑ\91Ñ\80нÑ\83Ñ\82Ñ\8bÑ\85 Ñ\81Ñ\82Ñ\80ок: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Ð\98Ñ\81кажение пÑ\80оÑ\82окола"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Ð\92Ñ\81его инÑ\84оÑ\80маÑ\86ии о завиÑ\81имоÑ\81Ñ\82Ñ\8fÑ\85: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Ð\9eÑ\88ибка запиÑ\81и"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Ð\9fÑ\83Ñ\81Ñ\82ого меÑ\81Ñ\82а в кеÑ\88е: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c Ñ\81океÑ\82"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Ð\9eбÑ\89ее пÑ\80оÑ\81Ñ\82Ñ\80анÑ\81Ñ\82во поÑ\81Ñ\87иÑ\82анное длÑ\8f: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr ""
-"Не удалось присоединиться к сокету данных, время на установление соединения "
-"истекло"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Список пакетов %s рассинхронизирован."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Ð\9dеÑ\83даÑ\87но"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Ð\92Ñ\8b должнÑ\8b задаÑ\82Ñ\8c Ñ\82олÑ\8cко один Ñ\88аблон"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Невозможно присоединить пассивный сокет"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Не найдено ни одного пакета"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "Ð\92Ñ\8bзов getaddrinfo не Ñ\81мог полÑ\83Ñ\87иÑ\82Ñ\8c Ñ\81океÑ\82"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "СпиÑ\81ки пакеÑ\82ов:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Ð\9dевозможно пÑ\80иÑ\81оединиÑ\82Ñ\8cÑ\81Ñ\8f к Ñ\81океÑ\82Ñ\83"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Ð\9aеÑ\88 Ñ\80аÑ\81Ñ\81инÑ\85Ñ\80онизиÑ\80ован, невозможно обнаÑ\80Ñ\83жиÑ\82Ñ\8c Ñ\81Ñ\81Ñ\8bлкÑ\83 на Ñ\81пиÑ\81ок пакеÑ\82ов"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Не удалось принимать соединения на сокете"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Не удалось определить имя сокета"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Зафиксированные пакеты:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Невозможно послать команду PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(не найдено)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Неизвестное семейство адресов %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Установлен: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Команда EPRT не выполнена, сервер сообщил: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(отсутствует)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Время установления соединения для сокета данных истекло"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Кандидат: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Невозможно принять соединение"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Фиксатор пакета: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Проблема при хешировании файла"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Таблица версий:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Невозможно загрузить файл, сервер сообщил: '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Время ожидания соединения для сокета данных истекло"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s для %s %s скомпилирован %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Передача данных завершилась неудачно, сервер сообщил: '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Запрос"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Невозможно вызвать "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Соединение с %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Использование: apt-cache [options] command\n"
+" или: apt-cache [options] add file1 [file1 ...]\n"
+" или: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" или: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache - низкоуровневый инструмент, использующийся для управления\n"
+"двоичными кеш-файлами APT'а, а также для извлечения информации из них\n"
+"Команды:\n"
+" add - добавить файл пакета в кеш исходников\n"
+" gencaches - построить оба кеша пакетов - бинарных и с исходными текстами\n"
+" showpkg - общая информация о конкретном пакете\n"
+" stats - основная статистика\n"
+" dump - показать весь файл в сжатой форме\n"
+" dumpavail - выдать на stdout список доступных пакетов\n"
+" unmet - показать неудовлетворённые зависимости\n"
+" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n"
+" show - показать информацию о пакете в удобочитаемой форме\n"
+" depends - показать информацию о зависимостях пакета построчно\n"
+" rdepends - показать информацию об обратных зависимостях пакета\n"
+" pkgnames - показать имена всех пакетов\n"
+" dotty - генерировать граф зависимостей пакетов в формате GraphVis\n"
+" xvcg - генерировать граф зависимостей пакетов в формате xvcg\n"
+" policy - показать текущую политику выбора пакетов\n"
+"\n"
+"Опции:\n"
+" -h Этот текст.\n"
+" -p=? Кеш пакетов.\n"
+" -s=? Кеш исходников.\n"
+" -q Не показывать индикатор прогресса.\n"
+" -i Показывать только важные зависимости для команды unmet.\n"
+" -c=? Читать указанный файл конфигурации.\n"
+" -o=? Установить произвольную опцию конфигурации, к примеру, -o dir::cache=/"
+"tmp\n"
+"Подробности в страницах руководства apt-cache(8) и apt.conf(5).\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Задайте имя для этого диска, например 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Вставьте диск в устройство и нажмите ввод"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Невозможно инициализировать соединение с %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Повторите этот процесс для всех имеющихся CD."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Непарные аргументы"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Не удаётся соединиться с %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Использование: apt-config [options] command\n"
+"\n"
+"apt-config - простой инструмент для чтения конфигурационного файла APT\n"
+"\n"
+"Команды:\n"
+" shell - режим shell\n"
+" dump - показать конфигурацию\n"
+"\n"
+"Опции:\n"
+" -h Этот текст.\n"
+" -с=? Читать указанный конфигурационный файл.\n"
+" -o=? Установить произвольную опцию, к примеру, -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Соединение с %s"
+msgid "%s not a valid DEB package."
+msgstr "%s не является правильным DEB-пакетом."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Не удалось найти IP адрес для %s"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Использование: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates извлекает из пакетов Debian конфигурационные скрипты\n"
+"и файлы-шаблоны\n"
+"\n"
+"Опции:\n"
+" -h Этот текст\n"
+" -t Установить каталог для временных файлов\n"
+" -c=? Читать указанный конфигурационный файл\n"
+" -o=? Указать произвольную опцию, к примеру, -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Ð\92Ñ\80еменнаÑ\8f оÑ\88ибка пÑ\80и попÑ\8bÑ\82ке полÑ\83Ñ\87иÑ\82Ñ\8c IP адÑ\80еÑ\81 '%s'"
+msgid "Unable to write to %s"
+msgstr "Ð\9dевозможно запиÑ\81аÑ\82Ñ\8c в %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr ""
-"Что-то странное произошло при попытке получить IP адрес для '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Невозможно определить версию debconf. Он установлен?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Невозможно соединиться с %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Список расширений, допустимых для пакетов, слишком длинен"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Ð\9dеÑ\82 доÑ\81Ñ\82Ñ\83па к Ñ\81вÑ\8fзке (keyring) клÑ\8eÑ\87ей: '%s'"
+msgid "Error processing directory %s"
+msgstr "Ð\9eÑ\88ибка обÑ\80абоÑ\82ки каÑ\82алога %s"
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
msgstr ""
-"E: Слишком большой список параметров у Acquire::gpgv::Options. Завершение "
-"работы."
+"Список расширений, допустимых для пакетов с исходными текстами, слишком "
+"длинен"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
msgstr ""
-"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток "
-"ключа?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Найдена как минимум одна неправильная подпись."
+"Ошибка записи заголовка в полный перечень содержимого пакетов (Contents)"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "Не удалось выполнить '%s' для проверки подписи (gnupg установлена?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Неизвестная ошибка при выполнении gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Следующие подписи неверные:\n"
+msgid "Error processing contents %s"
+msgstr "ошибка обработки полного перечня содержимого пакетов (Contents) %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Следующие подписи не могут быть проверены, так как недоступен общий ключ:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Не удалось получить атрибуты %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Не удалось открыть канал для %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Ошибка чтения из процесса %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Использование: apt-ftparchive [параметры] команда\n"
+"Команды: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive генерирует индексные файлы архивов Debian. Он поддерживает\n"
+"множество стилей генерации: от полностью автоматического до функциональной "
+"замены\n"
+"программ dpkg-scanpackages и dpkg-scansources\n"
+"\n"
+"apt-ftparchive генерирует файлы Package (списки пакетов) для дерева\n"
+"каталогов, содержащих файлы .deb. Файл Package включает в себя управляющие\n"
+"поля каждого пакета, а также хеш MD5 и размер файла. Значения управляющих\n"
+"полей \"приоритет\" (Priority) и \"секция\" (Section) могут быть изменены с\n"
+"помощью файла override.\n"
+"\n"
+"Кроме того, apt-ftparchive может генерировать файлы Sources из дерева\n"
+"каталогов, содержащих файлы .dsc. Для указания файла override в этом \n"
+"режиме можно использовать параметр --source-override.\n"
+"\n"
+"Команды 'packages' и 'sources' надо выполнять, находясь в корневом каталоге\n"
+"дерева, которое вы хотите обработать. BinaryPath должен указывать на место,\n"
+"с которого начинается рекурсивный обход, а файл переназначений (override)\n"
+"должен содержать записи о переназначениях управляющих полей. Если был "
+"указан\n"
+"Pathprefix, то его значение добавляется к управляющим полям, содержащим\n"
+"имена файлов. Пример использования для архива Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Параметры:\n"
+" -h Этот текст\n"
+" --md5 Управление генерацией MD5-хешей\n"
+" -s=? Указать файл переназначений (override) для пакетов с исходными "
+"текстами\n"
+" -q Не выводить сообщения в процессе работы\n"
+" -d=? Указать кеширующую базу данных (не обязательно)\n"
+" --no-delink Включить режим отладки процесса удаления файлов\n"
+" --contents Управление генерацией полного перечня содержимого пакетов\n"
+" (файла Contents)\n"
+" -c=? Использовать указанный конфигурационный файл\n"
+" -o=? Указать произвольный параметр конфигурации"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Ð\9eжидание заголовков"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Совпадений не обнаÑ\80Ñ\83жено"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Получен заголовок длиннее %u символов"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Неверный заголовок"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "В группе пакетов `%s' отсутствуют некоторые файлы"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Http-сервер послал неверный заголовок"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "БД была повреждена, файл переименован в %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Http сервер послал неверный заголовок Content-Length"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB устарела, попытка обновить %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Http-сервер послал неверный заголовок Content-Range"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Некорректный формат базы данных (DB). Если вы обновляли версию apt, удалите "
+"и создайте базу данных заново."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Этот http-сервер не поддерживает загрузку фрагментов файлов"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Не удалось открыть DB файл %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Неизвестный формат данных"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Не удалось получить атрибуты %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Ð\9eÑ\88ибка в select"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Ð\92 аÑ\80Ñ\85иве неÑ\82 полÑ\8f control"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Ð\92Ñ\80емÑ\8f ожиданиÑ\8f длÑ\8f Ñ\81оединениÑ\8f иÑ\81Ñ\82екло"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c кÑ\83Ñ\80Ñ\81оÑ\80"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Ошибка записи в выходной файл"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Не удалось прочитать каталог %s\n"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Ошибка записи в файл"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Не удалось прочитать атрибуты %s\n"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Ошибка записи в файл"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Ошибка чтения, удалённый сервер прервал соединение"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Ошибка чтения с сервера"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Ошибки относятся к файлу '"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Неверный заголовок данных"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Не удалось проследовать по ссылке %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Соединение Ñ\80азоÑ\80вано"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81овеÑ\80Ñ\88иÑ\82Ñ\8c обÑ\85од деÑ\80ева"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Внутренняя ошибка"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Не удалось открыть %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Невозможно отобразить в память пустой файл"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr "DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Невозможно отобразить в память %lu байт"
+msgid "Failed to readlink %s"
+msgstr "Не удалось прочесть ссылку %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Не найдено: %s"
+msgid "Failed to unlink %s"
+msgstr "Не удалось удалить %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Неизвестная аббревиатура типа: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Не удалось создать ссылку %s на %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Открытие файла конфигурации %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Превышен лимит в %sB в DeLink.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Строка %d слишком длинна (максимум %d)."
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "В архиве нет поля package"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени."
+msgid " %s has no override entry\n"
+msgstr " Нет записи о переназначении (override) для %s\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Синтаксическая ошибка %s:%u: искажённый тег"
+msgid " %s maintainer is %s not %s\n"
+msgstr " пакет %s сопровождает %s, а не %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения"
+msgid " %s has no source override entry\n"
+msgstr " Нет записи source override для %s\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем "
-"уровне"
+msgid " %s has no binary override entry either\n"
+msgstr " Нет записи binary override для %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "СинÑ\82акÑ\81иÑ\87еÑ\81каÑ\8f оÑ\88ибка %s:%u: Ñ\81лиÑ\88ком много вложеннÑ\8bÑ\85 include"
+msgid "Internal error, could not locate member %s"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, не Ñ\83далоÑ\81Ñ\8c найÑ\82и Ñ\81оÑ\81Ñ\82авнÑ\83Ñ\8e Ñ\87аÑ\81Ñ\82Ñ\8c %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - не удалось выделить память"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "СинÑ\82акÑ\81иÑ\87еÑ\81каÑ\8f оÑ\88ибка %s:%u: не поддеÑ\80живаемаÑ\8f диÑ\80екÑ\82ива '%s'"
+msgid "Unable to open %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c оÑ\82кÑ\80Ñ\8bÑ\82Ñ\8c %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "СинÑ\82акÑ\81иÑ\87еÑ\81каÑ\8f оÑ\88ибка %s:%u: лиÑ\88ние Ñ\81имволÑ\8b в конÑ\86е Ñ\84айла"
+msgid "Malformed override %s line %lu #1"
+msgstr "Ð\9dепÑ\80авилÑ\8cнаÑ\8f запиÑ\81Ñ\8c о пеÑ\80еназнаÑ\87ении (override) %s на Ñ\81Ñ\82Ñ\80оке %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Ð\9dевозможно пÑ\80оÑ\87иÑ\82аÑ\82Ñ\8c %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Ð\9dепÑ\80авилÑ\8cнаÑ\8f запиÑ\81Ñ\8c о пеÑ\80еназнаÑ\87ении (override) %s на Ñ\81Ñ\82Ñ\80оке %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Ошибка!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Неправильная запись о переназначении (override) %s на строке %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Готово"
+msgid "Failed to read the override file %s"
+msgstr "Не удалось прочесть файл переназначений (override)%s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Неизвестная опция командной строки '%c' [из %s]."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Неизвестный алгоритм сжатия '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Не распознанная опция командной строки %s"
+msgid "Compressed output %s needs a compression set"
+msgstr ""
+"Для получения сжатого вывода %s необходимо включить использования сжатия"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Опция командной строки %s - не логический переключатель \"да/нет\""
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Не удалось создать IPC-канал для порождённого процесса"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Опция %s требует аргумента."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Не удалось создать FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Опция %s: значение должно иметь вид =<val>."
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Не удалось запустить порождённый процесс"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Опция %s требует аргумент в виде целого числа, а не '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Процесс-потомок, производящий сжатие"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "СлиÑ\88ком длиннаÑ\8f опÑ\86иÑ\8f '%s'"
+msgid "Internal error, failed to create %s"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, не Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Смысл %s не ясен, используйте true или false."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Не удалось создать IPC с порождённым процессом"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Неверная операция %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Не удалось выполнить компрессор "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Невозможно прочитать атрибуты точки монтирования %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "декомпрессор"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Невозможно сменить текущий каталог на %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Ошибка ввода/вывода в подпроцесс/файл"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c аÑ\82Ñ\80ибÑ\83Ñ\82Ñ\8b cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Ð\9eÑ\88ибка Ñ\87Ñ\82ениÑ\8f во вÑ\80емÑ\8f вÑ\8bÑ\87иÑ\81лениÑ\8f MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
-"Блокировка не используется, так как файл блокировки %s доступен только для "
-"чтения"
+msgid "Problem unlinking %s"
+msgstr "Не удалось удалить %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c оÑ\82кÑ\80Ñ\8bÑ\82Ñ\8c Ñ\84айл блокиÑ\80овки %s"
+msgid "Failed to rename %s to %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c пеÑ\80еименоваÑ\82Ñ\8c %s в %s"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"Блокировка не используется, так как файл блокировки %s находится на файловой "
-"системе nfs"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "д"
-#: apt-pkg/contrib/fileutl.cc:109
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Could not get lock %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c полÑ\83Ñ\87иÑ\82Ñ\8c доÑ\81Ñ\82Ñ\83п к Ñ\84айлÑ\83 блокиÑ\80овки %s"
+msgid "Regex compilation error - %s"
+msgstr "Ð\9eÑ\88ибка компилÑ\8fÑ\86ии Ñ\80егÑ\83лÑ\8fÑ\80ного вÑ\8bÑ\80ажениÑ\8f - %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Ожидалось завершение процесса %s, но он не был запущен"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Пакеты, имеющие неудовлетворённые зависимости:"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr ""
-"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s."
+msgid "but %s is installed"
+msgstr "но %s уже установлен"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Ð\9fоÑ\80ождÑ\91ннÑ\8bй пÑ\80оÑ\86еÑ\81Ñ\81 %s веÑ\80нÑ\83л код оÑ\88ибки (%u)"
+msgid "but %s is to be installed"
+msgstr "но %s бÑ\83деÑ\82 Ñ\83Ñ\81Ñ\82ановлен"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Порождённый процесс %s неожиданно завершился"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "но он не может быть установлен"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Не удалось открыть файл %s"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "но это виртуальный пакет"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr ""
-"ошибка при чтении. собирались прочесть ещё %lu байт, но ничего больше нет"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "но он не установлен"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "ошибка при записи, собирались записать ещё %lu байт, но не смогли"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "но он не будет установлен"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Проблема закрытия файла"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " или"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Ð\9eÑ\88ибка пÑ\80и Ñ\83далении Ñ\84айла"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Ð\9dÐ\9eÐ\92ЫÐ\95 пакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 Ñ\83Ñ\81Ñ\82ановленÑ\8b:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Проблема при синхронизации файловых буферов с диском"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Пакеты, которые будут УДАЛЕНЫ:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Ð\9aеÑ\88 пакеÑ\82ов пÑ\83Ñ\81Ñ\82"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Ð\9fакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 оÑ\81Ñ\82авленÑ\8b в неизменном виде:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Ð\9aеÑ\88 пакеÑ\82ов повÑ\80еждÑ\91н"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Ð\9fакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 обновленÑ\8b:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Ð\9dе поддеÑ\80живаемаÑ\8f веÑ\80Ñ\81иÑ\8f кеÑ\88а пакеÑ\82ов"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Ð\9fакеÑ\82Ñ\8b, бÑ\83дÑ\83Ñ\82 замененÑ\8b на более СТÐ\90РЫÐ\95 веÑ\80Ñ\81ии:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr ""
+"Пакеты, которые должны были бы остаться без изменений, но будут заменены:"
+
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Данный APT не поддерживает систему версий '%s'"
+msgid "%s (due to %s) "
+msgstr "%s (вследствие %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Кеш пакетов был собран для другой архитектуры"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n"
+"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Зависит"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "обновлено %lu, установлено %lu новых пакетов, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "ПредЗависит"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "переустановлено %lu переустановлено, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Предлагает"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu пакетов заменены на старые версии, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Рекомендует"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Конфликтует"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "не установлено до конца или удалено %lu пакетов.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Ð\97аменÑ\8fеÑ\82"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Ð\98Ñ\81пÑ\80авление завиÑ\81имоÑ\81Ñ\82ей..."
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Замещает"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " не удалось."
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Невозможно скорректировать зависимости"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "важнÑ\8bй"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ð\9dевозможно минимизиÑ\80оваÑ\82Ñ\8c набоÑ\80 обновлений"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "необходимый"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Готово"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "стандартный"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
+"f install'."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "необÑ\8fзаÑ\82елÑ\8cнÑ\8bй"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ð\9dеÑ\83довлеÑ\82воÑ\80Ñ\91ннÑ\8bе завиÑ\81имоÑ\81Ñ\82и. Ð\9fопÑ\8bÑ\82айÑ\82еÑ\81Ñ\8c иÑ\81полÑ\8cзоваÑ\82Ñ\8c -f."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "дополниÑ\82елÑ\8cнÑ\8bй"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "Ð\92Ð\9dÐ\98Ð\9cÐ\90Ð\9dÐ\98Ð\95: СледÑ\83Ñ\8eÑ\89ие пакеÑ\82Ñ\8b невозможно аÑ\83Ñ\82енÑ\82иÑ\84иÑ\86иÑ\80оваÑ\82Ñ\8c!"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Ð\9fоÑ\81Ñ\82Ñ\80оение деÑ\80ева завиÑ\81имоÑ\81Ñ\82ей"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Ð\90Ñ\83Ñ\82енÑ\82иÑ\84икаÑ\86ионное пÑ\80едÑ\83пÑ\80еждение не пÑ\80инÑ\8fÑ\82о в внимание.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Ð\92еÑ\80Ñ\81ии-кандидаÑ\82Ñ\8b"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "УÑ\81Ñ\82ановиÑ\82Ñ\8c Ñ\8dÑ\82и пакеÑ\82Ñ\8b без пÑ\80овеÑ\80ки [y/N]? "
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Ð\93енеÑ\80иÑ\80ование завиÑ\81имоÑ\81Ñ\82ей"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Ð\9dекоÑ\82оÑ\80Ñ\8bе пакеÑ\82Ñ\8b невозможно аÑ\83Ñ\82енÑ\82иÑ\84иÑ\86иÑ\80оваÑ\82Ñ\8c"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Объединение информации о доступных пакетах"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Существуют проблемы, а опция -y использована без --force-yes"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Не удалось открыть %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными "
+"пакетами!"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Не удалось записать в файл %s"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Пакеты необходимо удалить, но удаление запрещено."
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Невозможно прочесть содержимое пакета %s (1)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Внутренняя ошибка, Ordering не завершилась"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Невозможно прочесть содержимое пакета %s (2)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Невозможно заблокировать каталог для загрузки"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %lu в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (пÑ\80облема в URI)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Ð\9dе Ñ\87иÑ\82аеÑ\82Ñ\81Ñ\8f пеÑ\80еÑ\87енÑ\8c иÑ\81Ñ\82оÑ\87ников."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr ""
-"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Странно.. Несовпадение размеров, напишите на apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:95
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %lu в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (анализ URI)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ð\9dеобÑ\85одимо Ñ\81каÑ\87аÑ\82Ñ\8c %sB/%sB аÑ\80Ñ\85ивов.\n"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %lu в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (absolute dist)"
+msgid "Need to get %sB of archives.\n"
+msgstr "Ð\9dеобÑ\85одимо Ñ\81каÑ\87аÑ\82Ñ\8c %sÐ\91 аÑ\80Ñ\85ивов.\n"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Искажённая строка %lu в списке источников %s (dist parse)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr ""
+"После распаковки объем занятого дискового пространства возрастёт на %sB.\n"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Открытие %s"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+"После распаковки объем занятого дискового пространства уменьшится на %sB.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "СÑ\82Ñ\80ока %u в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s Ñ\81лиÑ\88ком длинна."
+msgid "Couldn't determine free space in %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c опÑ\80еделиÑ\82Ñ\8c колиÑ\87еÑ\81Ñ\82во Ñ\81вободного меÑ\81Ñ\82а в %s"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %u в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (Ñ\82ип)"
+msgid "You don't have enough free space in %s."
+msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82оÑ\87но Ñ\81вободного меÑ\81Ñ\82а в %s."
-#: apt-pkg/sourcelist.cc:240
-#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Неизвестный тип '%s' в строке %u в списке источников %s"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Запрошено выполнение только тривиальных операций, но это не тривиальная "
+"операция."
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Искажённая строка %u в списке источников %s (vendor id)"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Да, делать, как я скажу!"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Вследствие возникновения циклических зависимостей типа Конфликтует/"
-"ПредЗависит, для продолжения установки необходимо временно удалить "
-"существенно важный пакет %s. Это может привести к фатальным последствиям. "
-"Если вы действительно хотите продолжить, включите опцию APT::Force-LoopBreak."
+"То, что вы хотите сделать, может иметь нежелательные последствия.\n"
+"Чтобы продолжить, введите фразу: '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Не поддерживается индексный файл типа '%s'"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Аварийное завершение."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Хотите продолжить [Д/н]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Пакет %s нуждается в переустановке, но найти архив для него не удалось."
+msgid "Failed to fetch %s %s\n"
+msgstr "Не удалось загрузить %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Некоторые файлы не удалось загрузить"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Указан режим \"только загрузка\", и загрузка завершена"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Ð\9eÑ\88ибка, pkgProblemResolver::Resolve Ñ\81генеÑ\80иÑ\80овал повÑ\80еждÑ\91ннÑ\8bе пакеÑ\82Ñ\8b. ÐÑ\82о "
-"может быть вызвано отложенными (held) пакетами."
+"Ð\9dевозможно загÑ\80Ñ\83зиÑ\82Ñ\8c некоÑ\82оÑ\80Ñ\8bе аÑ\80Ñ\85ивÑ\8b, веÑ\80оÑ\8fÑ\82но надо запÑ\83Ñ\81Ñ\82иÑ\82Ñ\8c apt-get "
+"update или попытаться повторить запуск с ключом --fix-missing"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing и смена носителя в данный момент не поддерживаются"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Каталог %spartial отсутствует."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Невозможно исправить ситуацию с пропущенными пакетами."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Архивный каталог %spartial отсутствует."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Аварийное завершение установки."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Ð\97агÑ\80Ñ\83жаеÑ\82Ñ\81Ñ\8f Ñ\84айл %li из %li (%s оÑ\81Ñ\82алоÑ\81Ñ\8c)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Ð\97амеÑ\82Ñ\8cÑ\82е, вмеÑ\81Ñ\82о %2$s вÑ\8bбиÑ\80аеÑ\82Ñ\81Ñ\8f %1$s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Загружается файл %li из %li"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr ""
+"Пропускается %s - пакет уже установлен, и опция upgrade не установлена.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ð\94Ñ\80айвеÑ\80 длÑ\8f меÑ\82ода %s не найден."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Ð\9fакеÑ\82 %s не Ñ\83Ñ\81Ñ\82ановлен, поÑ\8dÑ\82омÑ\83 не можеÑ\82 бÑ\8bÑ\82Ñ\8c Ñ\83далÑ\91н\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Ð\9cеÑ\82од %s запÑ\83Ñ\81Ñ\82илÑ\81Ñ\8f не коÑ\80Ñ\80екÑ\82но"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Ð\9fакеÑ\82 %s - виÑ\80Ñ\82Ñ\83алÑ\8cнÑ\8bй, его Ñ\84Ñ\83нкÑ\86ии пÑ\80едоÑ\81Ñ\82авлÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f пакеÑ\82ами:\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Вставьте диск с меткой '%s' в устройство '%s' и нажмите ввод."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Установлен]"
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Менеджер пакетов '%s' не поддерживается"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Вы должны явно указать, какой именно вы хотите установить."
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Невозможно определить подходящий тип менеджера пакетов"
-
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Невозможно получить атрибуты %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Вы должны заполнить sources.list, поместив туда URI источников пактов"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Не читается перечень источников."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Списки пакетов или status-файл не могут быть открыты или прочитаны."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Вы можете запустить 'apt-get update' для исправления этих ошибок"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Неверная запись в файле preferences: отсутствует заголовок Package"
-
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Неизвестный тип фиксации %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Ð\9aеÑ\88 имееÑ\82 неÑ\81овмеÑ\81Ñ\82имÑ\83Ñ\8e Ñ\81иÑ\81Ñ\82емÑ\83 веÑ\80Ñ\81ий"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Ð\9eднако Ñ\81ледÑ\83Ñ\8eÑ\89ие пакеÑ\82Ñ\8b могÑ\83Ñ\82 его замениÑ\82Ñ\8c:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Ð\94лÑ\8f пакеÑ\82а %s не найденÑ\8b кандидаÑ\82Ñ\8b на Ñ\83Ñ\81Ñ\82ановкÑ\83"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Произошла ошибка во время обработки %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Переустановка %s невозможна, он не загружается.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "Уже Ñ\83Ñ\81Ñ\82ановлена Ñ\81амаÑ\8f новаÑ\8f веÑ\80Ñ\81иÑ\8f %s.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Релиз '%s' длÑ\8f '%s' не найден"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Ð\92еÑ\80Ñ\81иÑ\8f '%s' длÑ\8f '%s' не найдена"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Ð\92Ñ\8bбÑ\80ана веÑ\80Ñ\81иÑ\8f %s (%s) длÑ\8f %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Произошла ошибка во время обработки %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Команде update не нужны аргументы"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Невозможно заблокировать каталог со списками пакетов"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Превышено допустимое количество имён пакетов."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Некоторые индексные файлы не загрузились, они были проигнорированы или "
+"вместо них были использованы старые версии"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Превышено допустимое количество версий."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Превышено допустимое количество версий."
-
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Превышено допустимое количество зависимостей."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "НОВЫЕ пакеты, которые будут установлены:"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Произошла ошибка во время обработки %s (FindPkg)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Произошла ошибка во время обработки %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Во время обработки файла зависимостей не найден пакет %s %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Следующая информация, возможно, поможет вам:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c полÑ\83Ñ\87иÑ\82Ñ\8c аÑ\82Ñ\80ибÑ\83Ñ\82Ñ\8b Ñ\81пиÑ\81ка пакеÑ\82ов Ñ\81 иÑ\81Ñ\85однÑ\8bми Ñ\82екÑ\81Ñ\82ами %s"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, Ñ\80еÑ\88аÑ\82елÑ\8c пÑ\80облем вÑ\81Ñ\91 поломал"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Чтение списков пакетов"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Внутренняя ошибка, AllUpgrade все поломал"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Сбор информации о Provides"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Не удалось найти пакет %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "Невозможно записать в %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Ошибка ввода/вывода при попытке сохранить кеш исходных текстов"
+msgid "Couldn't find package %s"
+msgstr "Не удалось найти пакет %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "переименовать не удалось, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum не совпадает"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Заметьте, регулярное выражение %2$s приводит к выбору %1$s\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5Sum не совпадает"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "но %s будет установлен"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Недоступен общий ключ для следующих ID ключей:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+"Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
+"f install':"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся "
-"вÑ\80Ñ\83Ñ\87нÑ\83Ñ\8e иÑ\81пÑ\80авиÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 пакеÑ\82 (возможно, пÑ\80опÑ\83Ñ\89ен arch)"
+"Неудовлетворённые зависимости. Попытайтесь выполнить 'apt-get -f install', "
+"не Ñ\83казÑ\8bваÑ\8f имени пакеÑ\82а, (или найдиÑ\82е дÑ\80Ñ\83гое Ñ\80еÑ\88ение)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся "
-"вручную исправить этот пакет."
+"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n"
+"или же используете нестабильную версию дистрибутива, где запрошенные вами\n"
+"пакеты ещё не созданы или были удалены из Incoming."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"Так как вы просили выполнить только одну операцию, то вероятнее всего, что\n"
+"пакет просто не может быть установлен из-за ошибок в самом пакете.\n"
+"Необходимо послать отчёт об этой ошибке."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Ð\9dе Ñ\81овпадаеÑ\82 Ñ\80азмеÑ\80"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "СломаннÑ\8bе пакеÑ\82Ñ\8b"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Будут установлены следующие дополнительные пакеты:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"В качестве точки монтирования CD-ROM используется %s\n"
-"Монтируется CD-ROM\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Предлагаемые пакеты:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Ð\98денÑ\82иÑ\84икаÑ\86иÑ\8f.. "
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "РекомендÑ\83емÑ\8bе пакеÑ\82Ñ\8b:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Найдена метка: %s \n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Расчёт обновлений... "
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Использование %s в качестве точки монтирования CD-ROM\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Неудачно"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Размонтирование CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Ожидание операции работы с диском...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Монтирование CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Поиск на диске индексных файлов..\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Найдено индексов: %i для пакетов, %i для пакетов c исходными текстами\n"
-"и %i для сигнатур\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Найдена метка: %s \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Готово"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "ÐÑ\82о непÑ\80авилÑ\8cное имÑ\8f, попÑ\80обÑ\83йÑ\82е еÑ\89Ñ\91 Ñ\80аз.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, Ñ\80еÑ\88аÑ\82елÑ\8c пÑ\80облем вÑ\81Ñ\91 поломал"
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"Название диска: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Копирование списков пакетов..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Запись нового списка источников\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Записи в списке источников для этого диска:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Размонтирование CD-ROM..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Сохранено %i записей.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Сохранено %i записей с %i отсутствующими файлами.\n"
+"Укажите как минимум один пакет, для которого необходимо загрузить исходные "
+"тексты"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "СоÑ\85Ñ\80анено %i запиÑ\81ей Ñ\81 %i неÑ\81овпадаÑ\8eÑ\89ими Ñ\84айлами\n"
+msgid "Unable to find a source package for %s"
+msgstr "Ð\9dевозможно найÑ\82и пакеÑ\82 Ñ\81 иÑ\81Ñ\85однÑ\8bми Ñ\82екÑ\81Ñ\82ами длÑ\8f %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Сохранено %i записей с %i отсутствующими файлами и с %i несовпадающими "
-"файлами\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Каталог %spartial отсутствует."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Пропускаем уже загруженный файл '%s'\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "Ð\9fодгоÑ\82авливаеÑ\82Ñ\81Ñ\8f %s"
+msgid "You don't have enough free space in %s"
+msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82оÑ\87но меÑ\81Ñ\82а в %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "РаÑ\81паковÑ\8bваеÑ\82Ñ\81Ñ\8f %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Ð\9dеобÑ\85одимо загÑ\80Ñ\83зиÑ\82Ñ\8c %sB/%sB из аÑ\80Ñ\85ивов иÑ\81Ñ\85однÑ\8bÑ\85 Ñ\82екÑ\81Ñ\82ов.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Ð\9fодгоÑ\82авливаеÑ\82Ñ\81Ñ\8f длÑ\8f конÑ\84игÑ\83Ñ\80аÑ\86ии %s"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Ð\9dÑ\83жно загÑ\80Ñ\83зиÑ\82Ñ\8c %sB аÑ\80Ñ\85ивов Ñ\81 иÑ\81Ñ\85однÑ\8bми Ñ\82екÑ\81Ñ\82ами.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "Настройка %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Ошибка обработки каталога %s"
+msgid "Fetch source %s\n"
+msgstr "Загрузка исходных текстов %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Установлен %s"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Некоторые архивы не удалось загрузить."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Подготавливается для удаления %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+"Распаковка исходных текстов пропущена, так как в %s уже находятся "
+"распакованные исходные тексты\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "Удаление %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Ð\9aоманда Ñ\80аÑ\81паковки '%s' завеÑ\80Ñ\88илаÑ\81Ñ\8c неÑ\83даÑ\87но.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "УдалÑ\91н %s"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Ð\9fÑ\80овеÑ\80Ñ\8cÑ\82е, Ñ\83Ñ\81Ñ\82ановлен ли пакеÑ\82 'dpkg-dev'.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Ð\9fодгоÑ\82овка к полномÑ\83 Ñ\83далениÑ\8e %s"
+msgid "Build command '%s' failed.\n"
+msgstr "Ð\9aоманда Ñ\81боÑ\80ки '%s' завеÑ\80Ñ\88илаÑ\81Ñ\8c неÑ\83даÑ\87но.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "%s полностью удалён"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Порождённый процесс завершился неудачно"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Для проверки зависимостей для сборки необходимо указать как минимум один "
+"пакет"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Не удалось пропатчить файл"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Не удалось создать IPC-канал для порождённого процесса"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Соединение закрыто преждевременно"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Не удалось создать порождённые процессы"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Не удалось выполнить gzip "
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Повреждённый архив"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Неправильная контрольная сумма Tar, архив повреждён"
-
-#: apt-inst/contrib/extracttar.cc:296
-#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Неверная сигнатура архива"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Ошибка чтения заголовка элемента архива"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Неправильный заголовок элемента архива"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Слишком короткий архив"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Не удалось прочитать заголовки архива"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "DropNode вызван для узла, который ещё используется"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Не удалось найти элемент хеша!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Не удалось создать diversion"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Внутренняя ошибка в AddDiversion"
-
-#: apt-inst/filelist.cc:477
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Ð\9fопÑ\8bÑ\82ка изменениÑ\8f diversion, %s -> %s и %s/%s"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c инÑ\84оÑ\80маÑ\86иÑ\8e о завиÑ\81имоÑ\81Ñ\82Ñ\8fÑ\85 длÑ\8f Ñ\81боÑ\80ки %s"
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Двойное добавление diversion %s -> %s"
+msgid "%s has no build depends.\n"
+msgstr "%s не имеет зависимостей для сборки.\n"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Повторно указанный конфигурационный файл %s/%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не "
+"найден"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to write file %s"
-msgstr "Не удалось записать в файл %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"Зависимость типа %s для %s не может быть удовлетворена, поскольку ни одна из "
+"версий пакета %s не удовлетворяет требованиям"
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Failed to close file %s"
-msgstr "Не удалось закрыть файл %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный "
+"пакет %s новее, чем надо"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "The path %s is too long"
-msgstr "СлиÑ\88ком длиннÑ\8bй пÑ\83Ñ\82Ñ\8c %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Ð\9dевозможно Ñ\83довлеÑ\82воÑ\80иÑ\82Ñ\8c завиÑ\81имоÑ\81Ñ\82Ñ\8c Ñ\82ипа %s длÑ\8f пакеÑ\82а %s: %s"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "Ð\9fовÑ\82оÑ\80наÑ\8f Ñ\80аÑ\81паковка %s"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Ð\97авиÑ\81имоÑ\81Ñ\82и длÑ\8f Ñ\81боÑ\80ки %s не могÑ\83Ñ\82 бÑ\8bÑ\82Ñ\8c Ñ\83довлеÑ\82воÑ\80енÑ\8b."
-#: apt-inst/extract.cc:134
-#, c-format
-msgid "The directory %s is diverted"
-msgstr "Каталог %s входит в список diverted"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Обработка зависимостей для сборки завершилась неудачно"
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Пакет пытается писать в diversion %s/%s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Поддерживаемые модули:"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Путь diversion слишком длинен"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Использование: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get - простой интерфейс командной строки для загрузки и\n"
+"установки пакетов. Наиболее часто используемые команды - update \n"
+"и install.\n"
+"\n"
+"Команды:\n"
+" update - загрузить новые списки пакетов\n"
+" upgrade - выполнить обновление пакетов\n"
+" install - установить новые пакеты (имя пакета указывается\n"
+" как libc6, а не libc6.deb)\n"
+" remove - удалить пакеты\n"
+" source - загрузить архивы с исходными текстами\n"
+" build-dep - загрузить все необходимое для сборки указанного\n"
+" пакета из исходных текстов\n"
+" dist-upgrade - обновить всю систему, подробнее - в apt-get(8)\n"
+" dselect-upgrade - руководствоваться выбором, сделанным в dselect'е\n"
+" clean - удалить загруженные архивы\n"
+" autoclean - удалить старые загруженные архивы\n"
+" check - проверить наличие нарушенных зависимостей\n"
+"\n"
+"Опции:\n"
+" -h Этот текст.\n"
+" -q Выводить сообщения, пригодные для записи в файл журнала.\n"
+" Не выводить индикатор прогресса\n"
+" -qq Выводить только сообщения об ошибках\n"
+" -d только загрузить - не устанавливать и не распаковывать архивы\n"
+" -s Не выполнять действия на самом деле. Имитация работы\n"
+" -y Отвечать \"Да\" на все вопросы. Сами вопросы при этом не выводятся\n"
+" -f продолжать, даже если проверка целостности не прошла\n"
+" -m продолжать, даже если местоположение архивов неизвестно\n"
+" -u показывать список обновляемых пакетов\n"
+" -b компилировать пакет из исходных текстов после их загрузки\n"
+" -c=? читать указанный файл конфигурации\n"
+" -o=? установить произвольную опцию, например, -o dir::cache=/tmp\n"
+"Страницы руководства apt-get(8), sources.list(5) и apt.conf(5)\n"
+"содержат больше информации.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Не удалось переименовать %s в %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "В кеше "
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Каталог %s был заменён не-каталогом"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Получено:"
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Не удалось разместить узел в хеше"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Путь слишком длинен"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-inst/extract.cc:414
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "ФайлÑ\8b заменÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ñ\81одеÑ\80жимÑ\8bм пакеÑ\82а %s без веÑ\80Ñ\81ии"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Ð\9fолÑ\83Ñ\87ено %sB за %s (%sB/c)\n"
-#: apt-inst/extract.cc:431
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Файл %s/%s переписывает файл в пакете %s"
+msgid " [Working]"
+msgstr " [Ожидание]"
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to stat %s"
-msgstr "Невозможно получить атрибуты %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Смена носителя: вставьте диск с меткой '%s' в устройство '%s' и нажмите "
+"ввод\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
-#, c-format
-msgid "Failed to remove %s"
-msgstr "Не удалось удалить %s"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Запись о неизвестном пакете!"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Не удалось создать %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Использование: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs - простой инструмент для сортировки списков пакетов. Опция -s\n"
+"используется, чтобы указать тип списка.\n"
+"\n"
+"Опции:\n"
+" -h этот текст\n"
+" -s сортировать список файлов с исходными текстами\n"
+" -c=? читать указанный файл конфигурации\n"
+" -o=? установить произвольную опцию, например, -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Не удалось получить атрибуты %sinfo"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Неправильное значение по умолчанию!"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr "Каталоги info и temp должны находиться на одной файловой системе"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Для продолжения нажмите ввод."
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Не удалось сменить текущий каталог на административный каталог %sinfo"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Во время распаковки возникли ошибки. Будет продолжен процесс настройки"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Внутренняя ошибка при получении имени пакета"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "установленных пакетов. Это может привести к повторению ошибок или"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Чтение списков файлов в пакете"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"возникновению новых из-за неудовлетворённых зависимостей. Это нормально,"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Не удалось открыть список файлов '%sinfo/%s'. Если вы не сможете "
-"восстановить этот файл, то обнулите его и немедленно переустановите ту же "
-"версию пакета!"
+"важны только ошибки, указанные выше. Исправьте их и выполните установку ещё "
+"раз"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Ошибка чтения списка файлов %sinfo/%s"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Объединение информации о доступных пакетах"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка пÑ\80и полÑ\83Ñ\87ении node"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c поÑ\80ождÑ\91ннÑ\8bе пÑ\80оÑ\86еÑ\81Ñ\81Ñ\8b"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Не удалось открыть файл diversions %sdiversions"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Не удалось выполнить gzip "
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Файл diversions повÑ\80еждÑ\91н"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Ð\9fовÑ\80еждÑ\91ннÑ\8bй аÑ\80Ñ\85ив"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Неверная строка в файле diversions: %s"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Неправильная контрольная сумма Tar, архив повреждён"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Внутренняя ошибка при добавлении diversion"
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s"
+
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Неверная сигнатура архива"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Ошибка чтения заголовка элемента архива"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Неправильный заголовок элемента архива"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Слишком короткий архив"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Не удалось прочитать заголовки архива"
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "DropNode вызван для узла, который ещё используется"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Не удалось найти элемент хеша!"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Не удалось создать diversion"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Внутренняя ошибка в AddDiversion"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Попытка изменения diversion, %s -> %s и %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Двойное добавление diversion %s -> %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Повторно указанный конфигурационный файл %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Не удалось записать в файл %s"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Не удалось закрыть файл %s"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Слишком длинный путь %s"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Повторная распаковка %s"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "Каталог %s входит в список diverted"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Пакет пытается писать в diversion %s/%s"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Путь diversion слишком длинен"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Каталог %s был заменён не-каталогом"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Не удалось разместить узел в хеше"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Путь слишком длинен"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Файлы заменяются содержимым пакета %s без версии"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Файл %s/%s переписывает файл в пакете %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Невозможно прочитать %s"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Невозможно получить атрибуты %s"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Не удалось удалить %s"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Не удалось создать %s"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Не удалось получить атрибуты %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr "Каталоги info и temp должны находиться на одной файловой системе"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Чтение списков пакетов"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Не удалось сменить текущий каталог на административный каталог %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Внутренняя ошибка при получении имени пакета"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Чтение списков файлов в пакете"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Не удалось открыть список файлов '%sinfo/%s'. Если вы не сможете "
+"восстановить этот файл, то обнулите его и немедленно переустановите ту же "
+"версию пакета!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Ошибка чтения списка файлов %sinfo/%s"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Внутренняя ошибка при получении node"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Не удалось открыть файл diversions %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Файл diversions повреждён"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Неверная строка в файле diversions: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Внутренняя ошибка при добавлении diversion"
#: apt-inst/deb/dpkgdb.cc:379
msgid "The pkg cache must be initialized first"
msgid "Unparsable control file"
msgstr "Не удалось прочесть содержимое control-файла"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Ð\9fакеÑ\82 %s веÑ\80Ñ\81ии %s имееÑ\82 неÑ\83довлеÑ\82воÑ\80Ñ\91ннÑ\83Ñ\8e завиÑ\81имоÑ\81Ñ\82Ñ\8c:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Ð\9dевозможно пÑ\80оÑ\87еÑ\81Ñ\82Ñ\8c базÑ\83 %s Ñ\81 CD"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Не удалось найти пакет %s"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-"
+"get update не используется для добавления нового CD"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Ð\92Ñ\81его имÑ\91н пакеÑ\82ов : "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Ð\9eÑ\88ибоÑ\87нÑ\8bй CD"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Нормальных пакетов: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Чисто виртуальных пакетов: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Диск не найден."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Одиночных виртуальных пакетов: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Файл не найден"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Смешанных виртуальных пакетов: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Не удалось получить атрибуты"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Пропущено: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Не удалось установить время модификации"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Ð\92Ñ\81его Ñ\83никалÑ\8cнÑ\8bÑ\85 веÑ\80Ñ\81ий: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ð\9dепÑ\80авилÑ\8cнÑ\8bй URI, локалÑ\8cнÑ\8bй URI не должен наÑ\87инаÑ\82Ñ\8cÑ\81Ñ\8f Ñ\81 //"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Всего уникальных версий: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Всего зависимостей: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Вход в систему"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Ð\92Ñ\81его оÑ\82ноÑ\88ений Ð\92еÑ\80Ñ\81иÑ\8f/Файл: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Ð\9dевозможно опÑ\80еделиÑ\82Ñ\8c имÑ\8f Ñ\83далÑ\91нного Ñ\81еÑ\80веÑ\80а"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Всего отношений Версия/Файл: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Невозможно определить локальное имя"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Всего отношений Provides: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Сервер разорвал соединение и сообщил: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Всего развёрнутых строк: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Команда USER не выполнена, сервер сообщил: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Всего информации о зависимостях: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Команда PASS не выполнена, сервер сообщил: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Пустого места в кеше: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::"
+"ProxyLogin пуст."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Общее пространство посчитанное для: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr ""
+"Команда '%s' сценария входа в систему завершилась неудачно, сервер сообщил: %"
+"s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "СпиÑ\81ок пакеÑ\82ов %s Ñ\80аÑ\81Ñ\81инÑ\85Ñ\80онизиÑ\80ован."
+msgid "TYPE failed, server said: %s"
+msgstr "Ð\9aоманда TYPE не вÑ\8bполнена, Ñ\81еÑ\80веÑ\80 Ñ\81ообÑ\89ил: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Ð\92Ñ\8b должнÑ\8b задаÑ\82Ñ\8c Ñ\82олÑ\8cко один Ñ\88аблон"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Ð\94опÑ\83Ñ\81Ñ\82имое вÑ\80емÑ\8f ожиданиÑ\8f длÑ\8f Ñ\81оединениÑ\8f иÑ\81Ñ\82екло"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Ð\9dе найдено ни одного пакеÑ\82а"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "СеÑ\80веÑ\80 пÑ\80еÑ\80вал Ñ\81оединение"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "СпиÑ\81ки пакеÑ\82ов:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Ð\9eÑ\88ибка Ñ\87Ñ\82ениÑ\8f"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Ð\9aеÑ\88 Ñ\80аÑ\81Ñ\81инÑ\85Ñ\80онизиÑ\80ован, невозможно обнаÑ\80Ñ\83жиÑ\82Ñ\8c Ñ\81Ñ\81Ñ\8bлкÑ\83 на Ñ\81пиÑ\81ок пакеÑ\82ов"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Ð\9eÑ\82веÑ\82 пеÑ\80еполнил бÑ\83Ñ\84еÑ\80."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Искажение протокола"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Зафиксированные пакеты:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Ошибка записи"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(не найдено)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Не удалось создать сокет"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Установлен: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr ""
+"Не удалось присоединиться к сокету данных, время на установление соединения "
+"истекло"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(отсутствует)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Невозможно присоединить пассивный сокет"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Кандидат: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "Вызов getaddrinfo не смог получить сокет"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Фиксатор пакета: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Невозможно присоединиться к сокету"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Таблица версий:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Не удалось принимать соединения на сокете"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Не удалось определить имя сокета"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s для %s %s скомпилирован %s %s\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Невозможно послать команду PORT"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Использование: apt-cache [options] command\n"
-" или: apt-cache [options] add file1 [file1 ...]\n"
-" или: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" или: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache - низкоуровневый инструмент, использующийся для управления\n"
-"двоичными кеш-файлами APT'а, а также для извлечения информации из них\n"
-"Команды:\n"
-" add - добавить файл пакета в кеш исходников\n"
-" gencaches - построить оба кеша пакетов - бинарных и с исходными текстами\n"
-" showpkg - общая информация о конкретном пакете\n"
-" stats - основная статистика\n"
-" dump - показать весь файл в сжатой форме\n"
-" dumpavail - выдать на stdout список доступных пакетов\n"
-" unmet - показать неудовлетворённые зависимости\n"
-" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n"
-" show - показать информацию о пакете в удобочитаемой форме\n"
-" depends - показать информацию о зависимостях пакета построчно\n"
-" rdepends - показать информацию об обратных зависимостях пакета\n"
-" pkgnames - показать имена всех пакетов\n"
-" dotty - генерировать граф зависимостей пакетов в формате GraphVis\n"
-" xvcg - генерировать граф зависимостей пакетов в формате xvcg\n"
-" policy - показать текущую политику выбора пакетов\n"
-"\n"
-"Опции:\n"
-" -h Этот текст.\n"
-" -p=? Кеш пакетов.\n"
-" -s=? Кеш исходников.\n"
-" -q Не показывать индикатор прогресса.\n"
-" -i Показывать только важные зависимости для команды unmet.\n"
-" -c=? Читать указанный файл конфигурации.\n"
-" -o=? Установить произвольную опцию конфигурации, к примеру, -o dir::cache=/"
-"tmp\n"
-"Подробности в страницах руководства apt-cache(8) и apt.conf(5).\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Неизвестное семейство адресов %u (AF_*)"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Задайте имя для этого диска, например 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Команда EPRT не выполнена, сервер сообщил: %s"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Ð\92Ñ\81Ñ\82авÑ\8cÑ\82е диÑ\81к в Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82во и нажмиÑ\82е ввод"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Ð\92Ñ\80емÑ\8f Ñ\83Ñ\81Ñ\82ановлениÑ\8f Ñ\81оединениÑ\8f длÑ\8f Ñ\81океÑ\82а даннÑ\8bÑ\85 иÑ\81Ñ\82екло"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Ð\9fовÑ\82оÑ\80иÑ\82е Ñ\8dÑ\82оÑ\82 пÑ\80оÑ\86еÑ\81Ñ\81 длÑ\8f вÑ\81еÑ\85 имеÑ\8eÑ\89иÑ\85Ñ\81Ñ\8f CD."
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Ð\9dевозможно пÑ\80инÑ\8fÑ\82Ñ\8c Ñ\81оединение"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Ð\9dепаÑ\80нÑ\8bе аÑ\80гÑ\83менÑ\82Ñ\8b"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Ð\9fÑ\80облема пÑ\80и Ñ\85еÑ\88иÑ\80овании Ñ\84айла"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Использование: apt-config [options] command\n"
-"\n"
-"apt-config - простой инструмент для чтения конфигурационного файла APT\n"
-"\n"
-"Команды:\n"
-" shell - режим shell\n"
-" dump - показать конфигурацию\n"
-"\n"
-"Опции:\n"
-" -h Этот текст.\n"
-" -с=? Читать указанный конфигурационный файл.\n"
-" -o=? Установить произвольную опцию, к примеру, -o dir::cache=/tmp\n"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Невозможно загрузить файл, сервер сообщил: '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Время ожидания соединения для сокета данных истекло"
+
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s не является правильным DEB-пакетом."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Передача данных завершилась неудачно, сервер сообщил: '%s'"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Использование: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates извлекает из пакетов Debian конфигурационные скрипты\n"
-"и файлы-шаблоны\n"
-"\n"
-"Опции:\n"
-" -h Этот текст\n"
-" -t Установить каталог для временных файлов\n"
-" -c=? Читать указанный конфигурационный файл\n"
-" -o=? Указать произвольную опцию, к примеру, -o dir::cache=/tmp\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Запрос"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Ð\9dевозможно опÑ\80еделиÑ\82Ñ\8c веÑ\80Ñ\81иÑ\8e debconf. Ð\9eн Ñ\83Ñ\81Ñ\82ановлен?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Ð\9dевозможно вÑ\8bзваÑ\82Ñ\8c "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Список расширений, допустимых для пакетов, слишком длинен"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Соединение с %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Ошибка обработки каталога %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr ""
-"Список расширений, допустимых для пакетов с исходными текстами, слишком "
-"длинен"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr ""
-"Ошибка записи заголовка в полный перечень содержимого пакетов (Contents)"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Невозможно инициализировать соединение с %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "оÑ\88ибка обÑ\80абоÑ\82ки полного пеÑ\80еÑ\87нÑ\8f Ñ\81одеÑ\80жимого пакеÑ\82ов (Contents) %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Ð\9dе Ñ\83даÑ\91Ñ\82Ñ\81Ñ\8f Ñ\81оединиÑ\82Ñ\8cÑ\81Ñ\8f Ñ\81 %s:%s (%s), connection timed out"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Использование: apt-ftparchive [параметры] команда\n"
-"Команды: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive генерирует индексные файлы архивов Debian. Он поддерживает\n"
-"множество стилей генерации: от полностью автоматического до функциональной "
-"замены\n"
-"программ dpkg-scanpackages и dpkg-scansources\n"
-"\n"
-"apt-ftparchive генерирует файлы Package (списки пакетов) для дерева\n"
-"каталогов, содержащих файлы .deb. Файл Package включает в себя управляющие\n"
-"поля каждого пакета, а также хеш MD5 и размер файла. Значения управляющих\n"
-"полей \"приоритет\" (Priority) и \"секция\" (Section) могут быть изменены с\n"
-"помощью файла override.\n"
-"\n"
-"Кроме того, apt-ftparchive может генерировать файлы Sources из дерева\n"
-"каталогов, содержащих файлы .dsc. Для указания файла override в этом \n"
-"режиме можно использовать параметр --source-override.\n"
-"\n"
-"Команды 'packages' и 'sources' надо выполнять, находясь в корневом каталоге\n"
-"дерева, которое вы хотите обработать. BinaryPath должен указывать на место,\n"
-"с которого начинается рекурсивный обход, а файл переназначений (override)\n"
-"должен содержать записи о переназначениях управляющих полей. Если был "
-"указан\n"
-"Pathprefix, то его значение добавляется к управляющим полям, содержащим\n"
-"имена файлов. Пример использования для архива Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Параметры:\n"
-" -h Этот текст\n"
-" --md5 Управление генерацией MD5-хешей\n"
-" -s=? Указать файл переназначений (override) для пакетов с исходными "
-"текстами\n"
-" -q Не выводить сообщения в процессе работы\n"
-" -d=? Указать кеширующую базу данных (не обязательно)\n"
-" --no-delink Включить режим отладки процесса удаления файлов\n"
-" --contents Управление генерацией полного перечня содержимого пакетов\n"
-" (файла Contents)\n"
-" -c=? Использовать указанный конфигурационный файл\n"
-" -o=? Указать произвольный параметр конфигурации"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Не удаётся соединиться с %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Совпадений не обнаружено"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Соединение с %s"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Не удалось найти IP адрес для %s"
+
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Временная ошибка при попытке получить IP адрес '%s'"
+
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "В группе пакетов `%s' отсутствуют некоторые файлы"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr ""
+"Что-то странное произошло при попытке получить IP адрес для '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Ð\91Ð\94 бÑ\8bла повÑ\80еждена, Ñ\84айл пеÑ\80еименован в %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Ð\9dевозможно Ñ\81оединиÑ\82Ñ\8cÑ\81Ñ\8f Ñ\81 %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB устарела, попытка обновить %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Нет доступа к связке (keyring) ключей: '%s'"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Слишком большой список параметров у Acquire::gpgv::Options. Завершение "
+"работы."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"Ð\9dекоÑ\80Ñ\80екÑ\82нÑ\8bй Ñ\84оÑ\80маÑ\82 базÑ\8b даннÑ\8bÑ\85 (DB). Ð\95Ñ\81ли вÑ\8b обновлÑ\8fли веÑ\80Ñ\81иÑ\8e apt, Ñ\83далиÑ\82е "
-"и Ñ\81оздайÑ\82е базÑ\83 даннÑ\8bÑ\85 заново."
+"Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка: Ð\9fÑ\80авилÑ\8cнаÑ\8f подпиÑ\81Ñ\8c, но не Ñ\83далоÑ\81Ñ\8c опÑ\80еделиÑ\82Ñ\8c оÑ\82пеÑ\87аÑ\82ок "
+"клÑ\8eÑ\87а?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Найдена как минимум одна неправильная подпись."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c оÑ\82кÑ\80Ñ\8bÑ\82Ñ\8c DB Ñ\84айл %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c вÑ\8bполниÑ\82Ñ\8c '%s' длÑ\8f пÑ\80овеÑ\80ки подпиÑ\81и (gnupg Ñ\83Ñ\81Ñ\82ановлена?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Ð\92 аÑ\80Ñ\85иве неÑ\82 полÑ\8f control"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Ð\9dеизвеÑ\81Ñ\82наÑ\8f оÑ\88ибка пÑ\80и вÑ\8bполнении gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c кÑ\83Ñ\80Ñ\81оÑ\80"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "СледÑ\83Ñ\8eÑ\89ие подпиÑ\81и невеÑ\80нÑ\8bе:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Следующие подписи не могут быть проверены, так как недоступен общий ключ:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Не удалось прочитать каталог %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Не удалось открыть канал для %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Не удалось прочитать атрибуты %s\n"
+msgid "Read error from %s process"
+msgstr "Ошибка чтения из процесса %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Ожидание заголовков"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Получен заголовок длиннее %u символов"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Ошибки относятся к файлу '"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Неверный заголовок"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Не удалось проследовать по ссылке %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Http-сервер послал неверный заголовок"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Не удалось совершить обход дерева"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Http сервер послал неверный заголовок Content-Length"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Http-сервер послал неверный заголовок Content-Range"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Этот http-сервер не поддерживает загрузку фрагментов файлов"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Неизвестный формат данных"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Ошибка в select"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Время ожидания для соединения истекло"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Ошибка записи в выходной файл"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Ошибка записи в файл"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Ошибка записи в файл"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Ошибка чтения, удалённый сервер прервал соединение"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Ошибка чтения с сервера"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Неверный заголовок данных"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Соединение разорвано"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Внутренняя ошибка"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Невозможно отобразить в память пустой файл"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Не удалось открыть %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Невозможно отобразить в память %lu байт"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "DeLink %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Не найдено: %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Не удалось прочесть ссылку %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Неизвестная аббревиатура типа: '%c'"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c %s"
+msgid "Opening configuration file %s"
+msgstr "Ð\9eÑ\82кÑ\80Ñ\8bÑ\82ие Ñ\84айла конÑ\84игÑ\83Ñ\80аÑ\86ии %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Строка %d слишком длинна (максимум %d)."
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Не удалось создать ссылку %s на %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени."
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Превышен лимит в %sB в DeLink.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Синтаксическая ошибка %s:%u: искажённый тег"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "В архиве нет поля package"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " Нет записи о переназначении (override) для %s\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем "
+"уровне"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " пакет %s сопровождает %s, а не %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " Нет записи source override для %s\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " Нет записи binary override для %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива '%s'"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, не Ñ\83далоÑ\81Ñ\8c найÑ\82и Ñ\81оÑ\81Ñ\82авнÑ\83Ñ\8e Ñ\87аÑ\81Ñ\82Ñ\8c %s"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "СинÑ\82акÑ\81иÑ\87еÑ\81каÑ\8f оÑ\88ибка %s:%u: лиÑ\88ние Ñ\81имволÑ\8b в конÑ\86е Ñ\84айла"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - не удалось выделить память"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Ошибка!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "Не удалось открыть %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Готово"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Ð\9dепÑ\80авилÑ\8cнаÑ\8f запиÑ\81Ñ\8c о пеÑ\80еназнаÑ\87ении (override) %s на Ñ\81Ñ\82Ñ\80оке %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Ð\9dеизвеÑ\81Ñ\82наÑ\8f опÑ\86иÑ\8f командной Ñ\81Ñ\82Ñ\80оки '%c' [из %s]."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Неправильная запись о переназначении (override) %s на строке %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Не распознанная опция командной строки %s"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Ð\9dепÑ\80авилÑ\8cнаÑ\8f запиÑ\81Ñ\8c о пеÑ\80еназнаÑ\87ении (override) %s на Ñ\81Ñ\82Ñ\80оке %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Ð\9eпÑ\86иÑ\8f командной Ñ\81Ñ\82Ñ\80оки %s - не логиÑ\87еÑ\81кий пеÑ\80еклÑ\8eÑ\87аÑ\82елÑ\8c \"да/неÑ\82\""
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c пÑ\80оÑ\87еÑ\81Ñ\82Ñ\8c Ñ\84айл пеÑ\80еназнаÑ\87ений (override)%s"
+msgid "Option %s requires an argument."
+msgstr "Ð\9eпÑ\86иÑ\8f %s Ñ\82Ñ\80ебÑ\83еÑ\82 аÑ\80гÑ\83менÑ\82а."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Ð\9dеизвеÑ\81Ñ\82нÑ\8bй алгоÑ\80иÑ\82м Ñ\81жаÑ\82иÑ\8f '%s'"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Ð\9eпÑ\86иÑ\8f %s: знаÑ\87ение должно имеÑ\82Ñ\8c вид =<val>."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr ""
-"Для получения сжатого вывода %s необходимо включить использования сжатия"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Опция %s требует аргумент в виде целого числа, а не '%s'"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Не удалось создать FILE*"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Слишком длинная опция '%s'"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Не удалось запустить порождённый процесс"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Смысл %s не ясен, используйте true или false."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Процесс-потомок, производящий сжатие"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Неверная операция %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, не Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Ð\9dевозможно пÑ\80оÑ\87иÑ\82аÑ\82Ñ\8c аÑ\82Ñ\80ибÑ\83Ñ\82Ñ\8b Ñ\82оÑ\87ки монÑ\82иÑ\80ованиÑ\8f %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Не удалось создать IPC с порождённым процессом"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Невозможно сменить текущий каталог на %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Не удалось выполнить компрессор "
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Невозможно получить атрибуты cdrom"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "декомпрессор"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Блокировка не используется, так как файл блокировки %s доступен только для "
+"чтения"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Ошибка ввода/вывода в подпроцесс/файл"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Не удалось открыть файл блокировки %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Ошибка чтения во время вычисления MD5"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Блокировка не используется, так как файл блокировки %s находится на файловой "
+"системе nfs"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Не удалось удалить %s"
+msgid "Could not get lock %s"
+msgstr "Не удалось получить доступ к файлу блокировки %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "д"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Ожидалось завершение процесса %s, но он не был запущен"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Ошибка компиляции регулярного выражения - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr ""
+"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Пакеты, имеющие неудовлетворённые зависимости:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Порождённый процесс %s вернул код ошибки (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "но %s Ñ\83же Ñ\83Ñ\81Ñ\82ановлен"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Ð\9fоÑ\80ождÑ\91ннÑ\8bй пÑ\80оÑ\86еÑ\81Ñ\81 %s неожиданно завеÑ\80Ñ\88илÑ\81Ñ\8f"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "но %s бÑ\83деÑ\82 Ñ\83Ñ\81Ñ\82ановлен"
+msgid "Could not open file %s"
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c оÑ\82кÑ\80Ñ\8bÑ\82Ñ\8c Ñ\84айл %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "но он не может быть установлен"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr ""
+"ошибка при чтении. собирались прочесть ещё %lu байт, но ничего больше нет"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "но это виртуальный пакет"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "ошибка при записи, собирались записать ещё %lu байт, но не смогли"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "но он не Ñ\83Ñ\81Ñ\82ановлен"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Ð\9fÑ\80облема закÑ\80Ñ\8bÑ\82иÑ\8f Ñ\84айла"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "но он не бÑ\83деÑ\82 Ñ\83Ñ\81Ñ\82ановлен"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Ð\9eÑ\88ибка пÑ\80и Ñ\83далении Ñ\84айла"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " или"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Проблема при синхронизации файловых буферов с диском"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Ð\9dÐ\9eÐ\92ЫÐ\95 пакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 Ñ\83Ñ\81Ñ\82ановленÑ\8b:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Ð\9aеÑ\88 пакеÑ\82ов пÑ\83Ñ\81Ñ\82"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Ð\9fакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 УÐ\94Ð\90Ð\9bÐ\95Ð\9dЫ:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Ð\9aеÑ\88 пакеÑ\82ов повÑ\80еждÑ\91н"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Ð\9fакеÑ\82Ñ\8b, коÑ\82оÑ\80Ñ\8bе бÑ\83дÑ\83Ñ\82 оÑ\81Ñ\82авленÑ\8b в неизменном виде:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Ð\9dе поддеÑ\80живаемаÑ\8f веÑ\80Ñ\81иÑ\8f кеÑ\88а пакеÑ\82ов"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Пакеты, которые будут обновлены:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Данный APT не поддерживает систему версий '%s'"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Ð\9fакеÑ\82Ñ\8b, бÑ\83дÑ\83Ñ\82 замененÑ\8b на более СТÐ\90РЫÐ\95 веÑ\80Ñ\81ии:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Ð\9aеÑ\88 пакеÑ\82ов бÑ\8bл Ñ\81обÑ\80ан длÑ\8f дÑ\80Ñ\83гой аÑ\80Ñ\85иÑ\82екÑ\82Ñ\83Ñ\80Ñ\8b"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr ""
-"Пакеты, которые должны были бы остаться без изменений, но будут заменены:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Зависит"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (вследствие %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "ПредЗависит"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n"
-"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Предлагает"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "обновлено %lu, установлено %lu новых пакетов, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Рекомендует"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "переустановлено %lu переустановлено, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Конфликтует"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu пакетов заменены на старые версии, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Заменяет"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Замещает"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "не установлено до конца или удалено %lu пакетов.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Ð\98Ñ\81пÑ\80авление завиÑ\81имоÑ\81Ñ\82ей..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "важнÑ\8bй"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " не удалось."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "необходимый"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Невозможно скорректировать зависимости"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "стандартный"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ð\9dевозможно минимизиÑ\80оваÑ\82Ñ\8c набоÑ\80 обновлений"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "необÑ\8fзаÑ\82елÑ\8cнÑ\8bй"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Готово"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "дополнительный"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
-"f install'."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Построение дерева зависимостей"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Ð\9dеÑ\83довлеÑ\82воÑ\80Ñ\91ннÑ\8bе завиÑ\81имоÑ\81Ñ\82и. Ð\9fопÑ\8bÑ\82айÑ\82еÑ\81Ñ\8c иÑ\81полÑ\8cзоваÑ\82Ñ\8c -f."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Ð\92еÑ\80Ñ\81ии-кандидаÑ\82Ñ\8b"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "Ð\92Ð\9dÐ\98Ð\9cÐ\90Ð\9dÐ\98Ð\95: СледÑ\83Ñ\8eÑ\89ие пакеÑ\82Ñ\8b невозможно аÑ\83Ñ\82енÑ\82иÑ\84иÑ\86иÑ\80оваÑ\82Ñ\8c!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Ð\93енеÑ\80иÑ\80ование завиÑ\81имоÑ\81Ñ\82ей"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Аутентификационное предупреждение не принято в внимание.\n"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Объединение информации о доступных пакетах"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Установить эти пакеты без проверки [y/N]? "
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Не удалось открыть %s"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Некоторые пакеты невозможно аутентифицировать"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Не удалось записать в файл %s"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Существуют проблемы, а опция -y использована без --force-yes"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Невозможно прочесть содержимое пакета %s (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
-"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными "
-"пакетами!"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Невозможно прочесть содержимое пакета %s (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Пакеты необходимо удалить, но удаление запрещено."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Внутренняя ошибка, Ordering не завершилась"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr ""
+"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Невозможно заблокировать каталог для загрузки"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Искажённая строка %lu в списке источников %s (анализ URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Странно.. Несовпадение размеров, напишите на apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Искажённая строка %lu в списке источников %s (absolute dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ð\9dеобÑ\85одимо Ñ\81каÑ\87аÑ\82Ñ\8c %sB/%sB аÑ\80Ñ\85ивов.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %lu в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (dist parse)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ð\9dеобÑ\85одимо Ñ\81каÑ\87аÑ\82Ñ\8c %sÐ\91 аÑ\80Ñ\85ивов.\n"
+msgid "Opening %s"
+msgstr "Ð\9eÑ\82кÑ\80Ñ\8bÑ\82ие %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr ""
-"После распаковки объем занятого дискового пространства возрастёт на %sB.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Строка %u в списке источников %s слишком длинна."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr ""
-"После распаковки объем занятого дискового пространства уменьшится на %sB.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Искажённая строка %u в списке источников %s (тип)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Не удалось определить количество свободного места в %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Неизвестный тип '%s' в строке %u в списке источников %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82оÑ\87но Ñ\81вободного меÑ\81Ñ\82а в %s."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Ð\98Ñ\81кажÑ\91ннаÑ\8f Ñ\81Ñ\82Ñ\80ока %u в Ñ\81пиÑ\81ке иÑ\81Ñ\82оÑ\87ников %s (vendor id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Запрошено выполнение только тривиальных операций, но это не тривиальная "
-"операция."
+"Вследствие возникновения циклических зависимостей типа Конфликтует/"
+"ПредЗависит, для продолжения установки необходимо временно удалить "
+"существенно важный пакет %s. Это может привести к фатальным последствиям. "
+"Если вы действительно хотите продолжить, включите опцию APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Да, делать, как я скажу!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Не поддерживается индексный файл типа '%s'"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"То, что вы хотите сделать, может иметь нежелательные последствия.\n"
-"Чтобы продолжить, введите фразу: '%s'\n"
-" ?] "
+"Пакет %s нуждается в переустановке, но найти архив для него не удалось."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Аварийное завершение."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это "
+"может быть вызвано отложенными (held) пакетами."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "ХоÑ\82иÑ\82е пÑ\80одолжиÑ\82Ñ\8c [Ð\94/н]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Ð\9dевозможно иÑ\81пÑ\80авиÑ\82Ñ\8c оÑ\88ибки, Ñ\83 ваÑ\81 оÑ\82ложенÑ\8b (held) биÑ\82Ñ\8bе пакеÑ\82Ñ\8b."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Не удалось загрузить %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Некоторые файлы не удалось загрузить"
-
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Указан режим \"только загрузка\", и загрузка завершена"
+msgid "Lists directory %spartial is missing."
+msgstr "Каталог %spartial отсутствует."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Невозможно загрузить некоторые архивы, вероятно надо запустить apt-get "
-"update или попытаться повторить запуск с ключом --fix-missing"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Архивный каталог %spartial отсутствует."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing и смена носителя в данный момент не поддерживаются"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Загружается файл %li из %li (%s осталось)"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Невозможно исправить ситуацию с пропущенными пакетами."
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Загружается файл %li из %li"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Аварийное завершение установки."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Драйвер для метода %s не найден."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Ð\97амеÑ\82Ñ\8cÑ\82е, вмеÑ\81Ñ\82о %2$s вÑ\8bбиÑ\80аеÑ\82Ñ\81Ñ\8f %1$s\n"
+msgid "Method %s did not start correctly"
+msgstr "Ð\9cеÑ\82од %s запÑ\83Ñ\81Ñ\82илÑ\81Ñ\8f не коÑ\80Ñ\80екÑ\82но"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr ""
-"Пропускается %s - пакет уже установлен, и опция upgrade не установлена.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Вставьте диск с меткой '%s' в устройство '%s' и нажмите ввод."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Пакет %s не установлен, поэтому не может быть удалён\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Менеджер пакетов '%s' не поддерживается"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Невозможно определить подходящий тип менеджера пакетов"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Ð\9fакеÑ\82 %s - виÑ\80Ñ\82Ñ\83алÑ\8cнÑ\8bй, его Ñ\84Ñ\83нкÑ\86ии пÑ\80едоÑ\81Ñ\82авлÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f пакеÑ\82ами:\n"
+msgid "Unable to stat %s."
+msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c аÑ\82Ñ\80ибÑ\83Ñ\82Ñ\8b %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Установлен]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Вы должны заполнить sources.list, поместив туда URI источников пактов"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Ð\92Ñ\8b должнÑ\8b Ñ\8fвно Ñ\83казаÑ\82Ñ\8c, какой именно вÑ\8b Ñ\85оÑ\82иÑ\82е Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "СпиÑ\81ки пакеÑ\82ов или status-Ñ\84айл не могÑ\83Ñ\82 бÑ\8bÑ\82Ñ\8c оÑ\82кÑ\80Ñ\8bÑ\82Ñ\8b или пÑ\80оÑ\87иÑ\82анÑ\8b."
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Вы можете запустить 'apt-get update' для исправления этих ошибок"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Неверная запись в файле preferences: отсутствует заголовок Package"
+
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "Неизвестный тип фиксации %s"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Ð\9eднако Ñ\81ледÑ\83Ñ\8eÑ\89ие пакеÑ\82Ñ\8b могÑ\83Ñ\82 его замениÑ\82Ñ\8c:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Ð\94лÑ\8f Ñ\84икÑ\81аÑ\86ии не Ñ\83казан пÑ\80иоÑ\80иÑ\82еÑ\82 (или Ñ\83казан нÑ\83левой)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Кеш имеет несовместимую систему версий"
+
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Ð\94лÑ\8f пакеÑ\82а %s не найденÑ\8b кандидаÑ\82Ñ\8b на Ñ\83Ñ\81Ñ\82ановкÑ\83"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Переустановка %s невозможна, он не загружается.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Произошла ошибка во время обработки %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
+#, c-format
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Произошла ошибка во время обработки %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Уже Ñ\83Ñ\81Ñ\82ановлена Ñ\81амаÑ\8f новаÑ\8f веÑ\80Ñ\81иÑ\8f %s.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Релиз '%s' длÑ\8f '%s' не найден"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Ð\92еÑ\80Ñ\81иÑ\8f '%s' длÑ\8f '%s' не найдена"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Ð\9fÑ\80оизоÑ\88ла оÑ\88ибка во вÑ\80емÑ\8f обÑ\80абоÑ\82ки %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Выбрана версия %s (%s) для %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Команде update не нужны аргументы"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Произошла ошибка во время обработки %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Невозможно заблокировать каталог со списками пакетов"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Некоторые индексные файлы не загрузились, они были проигнорированы или "
-"вместо них были использованы старые версии"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Превышено допустимое количество имён пакетов."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Превышено допустимое количество версий."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "НОВЫЕ пакеты, которые будут установлены:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Превышено допустимое количество версий."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Превышено допустимое количество зависимостей."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Произошла ошибка во время обработки %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Следующая информация, возможно, поможет вам:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Произошла ошибка во время обработки %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80еннÑ\8fÑ\8f оÑ\88ибка, Ñ\80еÑ\88аÑ\82елÑ\8c пÑ\80облем вÑ\81Ñ\91 поломал"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Ð\92о вÑ\80емÑ\8f обÑ\80абоÑ\82ки Ñ\84айла завиÑ\81имоÑ\81Ñ\82ей не найден пакеÑ\82 %s %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Внутренняя ошибка, AllUpgrade все поломал"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Не удалось получить атрибуты списка пакетов с исходными текстами %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Не удалось найти пакет %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Сбор информации о Provides"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Не удалось найти пакет %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Ошибка ввода/вывода при попытке сохранить кеш исходных текстов"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Ð\97амеÑ\82Ñ\8cÑ\82е, Ñ\80егÑ\83лÑ\8fÑ\80ное вÑ\8bÑ\80ажение %2$s пÑ\80иводиÑ\82 к вÑ\8bбоÑ\80Ñ\83 %1$s\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "пеÑ\80еименоваÑ\82Ñ\8c не Ñ\83далоÑ\81Ñ\8c, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "но %s будет установлен"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum не совпадает"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -"
-"f install':"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5Sum не совпадает"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Неудовлетворённые зависимости. Попытайтесь выполнить 'apt-get -f install', "
-"не указывая имени пакета, (или найдите другое решение)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Недоступен общий ключ для следующих ID ключей:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n"
-"или же используете нестабильную версию дистрибутива, где запрошенные вами\n"
-"пакеты ещё не созданы или были удалены из Incoming."
+"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся "
+"вручную исправить этот пакет (возможно, пропущен arch)"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Так как вы просили выполнить только одну операцию, то вероятнее всего, что\n"
-"пакет просто не может быть установлен из-за ошибок в самом пакете.\n"
-"Необходимо послать отчёт об этой ошибке."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Сломанные пакеты"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Будут установлены следующие дополнительные пакеты:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Предлагаемые пакеты:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Рекомендуемые пакеты:"
+"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся "
+"вручную исправить этот пакет."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Расчёт обновлений... "
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s."
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Ð\93оÑ\82ово"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Ð\9dе Ñ\81овпадаеÑ\82 Ñ\80азмеÑ\80"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Внутренняя ошибка, решатель проблем всё поломал"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"УкажиÑ\82е как минимÑ\83м один пакеÑ\82, длÑ\8f коÑ\82оÑ\80ого необÑ\85одимо загÑ\80Ñ\83зиÑ\82Ñ\8c иÑ\81Ñ\85однÑ\8bе "
-"тексты"
+"Ð\92 каÑ\87еÑ\81Ñ\82ве Ñ\82оÑ\87ки монÑ\82иÑ\80ованиÑ\8f CD-ROM иÑ\81полÑ\8cзÑ\83еÑ\82Ñ\81Ñ\8f %s\n"
+"Монтируется CD-ROM\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Невозможно найти пакет с исходными текстами для %s"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Идентификация.. "
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Ð\9fÑ\80опÑ\83Ñ\81каем Ñ\83же загÑ\80Ñ\83женнÑ\8bй Ñ\84айл '%s'\n"
+msgid "Stored label: %s\n"
+msgstr "Ð\9dайдена меÑ\82ка: %s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82оÑ\87но меÑ\81Ñ\82а в %s"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "РазмонÑ\82иÑ\80ование CD-ROM..."
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Ð\9dеобÑ\85одимо загÑ\80Ñ\83зиÑ\82Ñ\8c %sB/%sB из аÑ\80Ñ\85ивов иÑ\81Ñ\85однÑ\8bÑ\85 Ñ\82екÑ\81Ñ\82ов.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Ð\98Ñ\81полÑ\8cзование %s в каÑ\87еÑ\81Ñ\82ве Ñ\82оÑ\87ки монÑ\82иÑ\80ованиÑ\8f CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Нужно загрузить %sB архивов с исходными текстами.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Размонтирование CD-ROM\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Загрузка исходных текстов %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Ожидание операции работы с диском...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Некоторые архивы не удалось загрузить."
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Монтирование CD-ROM...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Поиск на диске индексных файлов..\n"
+
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
msgstr ""
-"РаÑ\81паковка иÑ\81Ñ\85однÑ\8bÑ\85 Ñ\82екÑ\81Ñ\82ов пÑ\80опÑ\83Ñ\89ена, Ñ\82ак как в %s Ñ\83же наÑ\85одÑ\8fÑ\82Ñ\81Ñ\8f "
-"распакованные исходные тексты\n"
+"Ð\9dайдено индекÑ\81ов: %i длÑ\8f пакеÑ\82ов, %i длÑ\8f пакеÑ\82ов c иÑ\81Ñ\85однÑ\8bми Ñ\82екÑ\81Ñ\82ами\n"
+"и %i для сигнатур\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Ð\9aоманда Ñ\80аÑ\81паковки '%s' завеÑ\80Ñ\88илаÑ\81Ñ\8c неÑ\83даÑ\87но.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Ð\9dайдена меÑ\82ка: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Проверьте, установлен ли пакет 'dpkg-dev'.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Это неправильное имя, попробуйте ещё раз.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Команда сборки '%s' завершилась неудачно.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Название диска: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Копирование списков пакетов..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Ð\9fоÑ\80ождÑ\91ннÑ\8bй пÑ\80оÑ\86еÑ\81Ñ\81 завеÑ\80Ñ\88илÑ\81Ñ\8f неÑ\83даÑ\87но"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Ð\97апиÑ\81Ñ\8c нового Ñ\81пиÑ\81ка иÑ\81Ñ\82оÑ\87ников\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Для проверки зависимостей для сборки необходимо указать как минимум один "
-"пакет"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Записи в списке источников для этого диска:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Ð\9dевозможно полÑ\83Ñ\87иÑ\82Ñ\8c инÑ\84оÑ\80маÑ\86иÑ\8e о завиÑ\81имоÑ\81Ñ\82Ñ\8fÑ\85 длÑ\8f Ñ\81боÑ\80ки %s"
+msgid "Wrote %i records.\n"
+msgstr "СоÑ\85Ñ\80анено %i запиÑ\81ей.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s не имеет зависимостей для сборки.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Сохранено %i записей с %i отсутствующими файлами.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не "
-"найден"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Сохранено %i записей с %i несовпадающими файлами\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Ð\97авиÑ\81имоÑ\81Ñ\82Ñ\8c Ñ\82ипа %s длÑ\8f %s не можеÑ\82 бÑ\8bÑ\82Ñ\8c Ñ\83довлеÑ\82воÑ\80ена, поÑ\81колÑ\8cкÑ\83 ни одна из "
-"версий пакета %s не удовлетворяет требованиям"
+"СоÑ\85Ñ\80анено %i запиÑ\81ей Ñ\81 %i оÑ\82Ñ\81Ñ\83Ñ\82Ñ\81Ñ\82вÑ\83Ñ\8eÑ\89ими Ñ\84айлами и Ñ\81 %i неÑ\81овпадаÑ\8eÑ\89ими "
+"файлами\n"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный "
-"пакет %s новее, чем надо"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Каталог %spartial отсутствует."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Ð\9dевозможно Ñ\83довлеÑ\82воÑ\80иÑ\82Ñ\8c завиÑ\81имоÑ\81Ñ\82Ñ\8c Ñ\82ипа %s длÑ\8f пакеÑ\82а %s: %s"
+msgid "Preparing %s"
+msgstr "Ð\9fодгоÑ\82авливаеÑ\82Ñ\81Ñ\8f %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Зависимости для сборки %s не могут быть удовлетворены."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Обработка зависимостей для сборки завершилась неудачно"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Поддерживаемые модули:"
+msgid "Unpacking %s"
+msgstr "Распаковывается %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Использование: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get - простой интерфейс командной строки для загрузки и\n"
-"установки пакетов. Наиболее часто используемые команды - update \n"
-"и install.\n"
-"\n"
-"Команды:\n"
-" update - загрузить новые списки пакетов\n"
-" upgrade - выполнить обновление пакетов\n"
-" install - установить новые пакеты (имя пакета указывается\n"
-" как libc6, а не libc6.deb)\n"
-" remove - удалить пакеты\n"
-" source - загрузить архивы с исходными текстами\n"
-" build-dep - загрузить все необходимое для сборки указанного\n"
-" пакета из исходных текстов\n"
-" dist-upgrade - обновить всю систему, подробнее - в apt-get(8)\n"
-" dselect-upgrade - руководствоваться выбором, сделанным в dselect'е\n"
-" clean - удалить загруженные архивы\n"
-" autoclean - удалить старые загруженные архивы\n"
-" check - проверить наличие нарушенных зависимостей\n"
-"\n"
-"Опции:\n"
-" -h Этот текст.\n"
-" -q Выводить сообщения, пригодные для записи в файл журнала.\n"
-" Не выводить индикатор прогресса\n"
-" -qq Выводить только сообщения об ошибках\n"
-" -d только загрузить - не устанавливать и не распаковывать архивы\n"
-" -s Не выполнять действия на самом деле. Имитация работы\n"
-" -y Отвечать \"Да\" на все вопросы. Сами вопросы при этом не выводятся\n"
-" -f продолжать, даже если проверка целостности не прошла\n"
-" -m продолжать, даже если местоположение архивов неизвестно\n"
-" -u показывать список обновляемых пакетов\n"
-" -b компилировать пакет из исходных текстов после их загрузки\n"
-" -c=? читать указанный файл конфигурации\n"
-" -o=? установить произвольную опцию, например, -o dir::cache=/tmp\n"
-"Страницы руководства apt-get(8), sources.list(5) и apt.conf(5)\n"
-"содержат больше информации.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Подготавливается для конфигурации %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "В кеше "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Настройка %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Получено:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Ошибка обработки каталога %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Установлен %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Подготавливается для удаления %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Ð\9fолÑ\83Ñ\87ено %sB за %s (%sB/c)\n"
+msgid "Removing %s"
+msgstr "Удаление %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Ожидание]"
+msgid "Removed %s"
+msgstr "Удалён %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Смена носителя: вставьте диск с меткой '%s' в устройство '%s' и нажмите "
-"ввод\n"
+msgid "Preparing to completely remove %s"
+msgstr "Подготовка к полному удалению %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Запись о неизвестном пакете!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "%s полностью удалён"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Использование: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs - простой инструмент для сортировки списков пакетов. Опция -s\n"
-"используется, чтобы указать тип списка.\n"
-"\n"
-"Опции:\n"
-" -h этот текст\n"
-" -s сортировать список файлов с исходными текстами\n"
-" -c=? читать указанный файл конфигурации\n"
-" -o=? установить произвольную опцию, например, -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Неправильное значение по умолчанию!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Не удалось пропатчить файл"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Для продолжения нажмите ввод."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Соединение закрыто преждевременно"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Во время распаковки возникли ошибки. Будет продолжен процесс настройки"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Строка %d слишком длинна (максимум %d)."
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "установленных пакетов. Это может привести к повторению ошибок или"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"возникновению новых из-за неудовлетворённых зависимостей. Это нормально,"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Произошла ошибка во время обработки %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"важны только ошибки, указанные выше. Исправьте их и выполните установку ещё "
-"раз"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Найдена метка: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Объединение информации о доступных пакетах"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Найдено индексов: %i для пакетов, %i для пакетов c исходными текстами\n"
+#~ "и %i для сигнатур\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-09-10 18:50+0200\n"
"Last-Translator: Peter Mann <Peter.Mann@tuke.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Nedá sa čítať databáza na cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Pre pridanie CD do APT použijte apt-cdrom. apt-get update sa nedá využiť na "
-"pridávanie nových CD."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Chybné CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Balík %s verzie %s má nesplnené závislosti:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Disk sa nenašiel."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Súbor sa nenašiel"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Vyhodnotenie zlyhalo"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Zlyhalo nastavenie času zmeny"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Neplatné URI, lokálne URI nesmie začínať s //"
+msgid "Unable to locate package %s"
+msgstr "Balík %s sa nedá nájsť"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Prihlasovanie"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Celkom názvov balíkov: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Nedá sa zistiť názov druhej strany"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normálnych balíkov: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Nedá sa zistiť lokálny názov"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Čisto virtuálnych balíkov: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Server zamietol naše spojenie s chybou: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Jednoduchých virtuálnych balíkov: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER zlyhal, server odpovedal: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Zmiešaných virtuálnych balíkov: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS zlyhal, server odpovedal: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Chýbajúcich: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::"
-"ProxyLogin je prázdny."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Celkom rôznych verzií: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Príkaz '%s' prihlasovacieho skriptu zlyhal, server odpovedal: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Celkom rôznych verzií: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE zlyhal, server odpovedal: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Celkom závislostí: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Uplynul čas spojenia"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Celkom vzťahov ver/súbor: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Server ukončil spojenie"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Celkom vzťahov ver/súbor: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Chyba pri čítaní"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Celkom poskytnutých mapovaní: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Odpoveď preplnila zásobník."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Celkom globovaných reťazcov: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Narušenie protokolu"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Celkom miesta závislých verzií: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Chyba pri zápise"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Celkom jalového miesta: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Nedá sa vytvoriť socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Celkom priradeného miesta: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Súbor balíkov %s je neaktuálny."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Chyba"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Musíte zadať práve jeden vzor"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Nedá sa pripojiť pasívny socket."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Neboli nájdené žiadne balíky"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo nezískal počúvajúci socket"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Súbory balíka:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Nedá sa nadviazať socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cache je neaktuálna, nedá sa odvolať na súbor balíka"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Na sockete sa nedá počúvať"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Názov socketu sa nedá zistiť"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pripevnené balíky:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Príkaz PORT sa nedá odoslať"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(nenájdené)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Neznáma rodina adries %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Nainštalovaná verzia: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT zlyhal, server odpovedal: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(žiadna)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Uplynulo spojenie dátového socketu"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidát: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Spojenie sa nedá prijať"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Pripevnený balík:"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problém s hashovaním súboru"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabuľka verzií:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Súbor sa nedá stiahnuť, server odpovedal '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Uplynula doba dátového socketu"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Prenos dát zlyhal, server odpovedal '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s pre %s %s skompilovaný na %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Dotaz"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Nedá sa vyvolať "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Pripája sa k %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Použitie: apt-cache [voľby] príkaz\n"
+" apt-cache [voľby] add súbor1 [súbor2 ...]\n"
+" apt-cache [voľby] showpkg balík1 [balík2 ...]\n"
+" apt-cache [voľby] showsrc balík1 [balík2 ...]\n"
+"\n"
+"apt-cache je nízkoúrovňový nástroj na spravovanie binárnych\n"
+"súborov vo vyrovnávacej pamäti APT a na ich prehľadávanie\n"
+"\n"
+"Príkazy:\n"
+" add - Pridá súbor Packages do zdrojovej vyrovnávacej pamäti\n"
+" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n"
+" showpkg - Zobrazí všeobecné údaje o balíku\n"
+" showsrc - Zobrazí zdrojové záznamy\n"
+" stats - Zobrazí základné štatistiky\n"
+" dump - Zobrazí celý súbor v zhustenej podobe\n"
+" dumpavail - Vypíše súbor dostupných balíkov na štandartný výstup\n"
+" unmet - Zobrazí nesplnené závislosti\n"
+" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n"
+" show - Zobrazí prehľadné informácie o balíku\n"
+" depends - Zobrazí základné údaje o závislostiach balíka\n"
+" rdepends - Zobrazí údaje o spätných závislostiach balíka\n"
+" pkgnames - Vypíše zoznam názvov všetkých balíkov\n"
+" dotty - Vytvorí diagramy balíka pre GraphVis\n"
+" xvcg - Vytvorí diagramy balíka pre xvcg\n"
+" policy - Zobrazí nastavenia zásad\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda.\n"
+" -p=? Vyrovnávacia pamäť balíkov.\n"
+" -s=? Vyrovnávacia pamäť zdrojov.\n"
+" -q Nezobrazí indikátor priebehu.\n"
+" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
+"Viac informácií nájdete v manuálových stránkach apt-cache(8) a apt.conf(5).\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Zadajte názov tohto disku, napríklad 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Vložte disk do mechaniky a stlačte Enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Zopakujte tento proces pre všetky CD v sade diskov."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenty nie sú vo dvojiciach"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Nedá sa pripojiť k %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použitie: apt-config [voľby] príkaz\n"
+"\n"
+"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n"
+"\n"
+"Príkazy:\n"
+" shell - Shellový režim\n"
+" dump - Zobrazí nastavenie\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda.\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Pripája sa k %s"
+msgid "%s not a valid DEB package."
+msgstr "%s nie je platný DEB balík."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Nedá sa zistiť '%s'"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použitie: apt-extracttemplates súbor1 [súbor2 ...]\n"
+"\n"
+"apt-extracttemplates je nástroj na vyňatie konfiguračných skriptov\n"
+"a šablón z debian balíkov\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda.\n"
+" -t Nastaví dočasný adresár\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Dočasné zlyhanie pri zisťovaní '%s'"
+msgid "Unable to write to %s"
+msgstr "Do %s sa nedá zapisovať"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Niečo veľmi zlé sa prihodilo pri zisťovaní '%s:%s' (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Nedá sa určiť verzia programu debconf. Je debconf nainštalovaný?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Nedá sa pripojiť k %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Zoznam rozšírení balíka je príliš dlhý"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Zväzok kľúčov '%s' je nedostupný."
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"CHYBA: zoznam argumentov z Acquire::gpgv::Options je príliš dlhý. Ukončuje "
-"sa."
+msgid "Error processing directory %s"
+msgstr "Chyba pri spracovávaní adresára %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Zoznam zdrojových rozšírení je príliš dlhý"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Bola zistená aspoň jedna nesprávna signatúra."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Chyba pri zapisovaní hlavičky do súboru"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "Nedá sa spustiť '%s' na kontrolu signatúry (je nainštalované gnupg?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Neznáma chyba pri spustení gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Nasledovné signatúry sú neplatné:\n"
+msgid "Error processing contents %s"
+msgstr "Chyba pri spracovávaní obsahu %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný "
-"kľúč:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "%s sa nedá vyhodnotiť"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Nedá sa otvoriť rúra pre %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Chyba pri čítaní z procesu %s"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Čaká sa na hlavičky"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Získal sa jeden riadok hlavičky cez %u znakov"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Chybná hlavička"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Použitie: apt-ftparchive [voľby] príkaz\n"
+"Príkazy: packages binárna_cesta [súbor_override [prefix_cesty]]\n"
+" sources zdrojová_cesta [súbor_override [prefix_cesty]]\n"
+" contents cesta\n"
+" release cesta\n"
+" generate konfiguračný_súbor [skupiny]\n"
+" clean konfiguračný_súbor\n"
+"\n"
+"apt-ftparchive generuje indexové súbory archívov Debianu. Podporuje\n"
+"niekoľko režimov vytvárania - od plne automatického až po funkčnú\n"
+"náhradu príkazov dpkg-scanpackages a dpkg-scansources.\n"
+"\n"
+"apt-ftparchive zo stromu .deb súborov vygeneruje súbory Packages. Súbor\n"
+"Packages okrem všetkých riadiacich polí každého balíka obsahuje tiež jeho\n"
+"veľkosť a MD5 súčet. Podporovaný je tiež súbor 'override', pomocou ktorého\n"
+"môžete vynútiť hodnoty polí Priority a Section.\n"
+"\n"
+"Podobne vie apt-ftparchive vygenerovať zo stromu súborov .dsc súbory\n"
+"Sources. Voľbou --source-override môžete určiť zdrojový súbor 'override'.\n"
+"\n"
+"Príkazy 'packages' a 'sources' by sa mali spúšťať v koreni stromu.\n"
+"Binárna_cesta by mala ukazovať na začiatok rekurzívneho hľadania\n"
+"a súbor 'override' by mal obsahovať príznaky pre nahradenie. Ak je udaný\n"
+"prefix_cesty, pridá sa do polí 'filename'.\n"
+"Skutočný príklad z archívu Debianu:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda\n"
+" --md5 Vygeneruje kontrolný MD5 súčet\n"
+" -s=? Zdrojový súbor 'override'\n"
+" -q Tichý režim\n"
+" -d=? Zvolí voliteľnú databázu pre vyrovnávaciu pamäť\n"
+" --no-delink Povolí ladiaci režim\n"
+" --contents Vygeneruje súbor Contents\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP server poslal neplatnú hlavičku odpovede"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nevyhovel žiaden výber"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP server poslal neplatnú hlavičku Content-Length"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "V balíkovom súbore skupiny `%s' chýbajú niektoré súbory"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP server poslal neplatnú hlavičku Content-Range"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB je narušená, súbor je premenovaný na %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Tento HTTP server má poškodenú podporu rozsahov"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB je neaktuálna, prebieha pokus o aktualizáciu %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Neznámy formát dátumu"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Formát DB je neplatný. Ak ste aktualizovali staršiu verziu apt, musíte "
+"odstrániť a znovu vytvoriť databázu."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Výber zlyhal"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Nedá sa otvoriť DB súbor %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Uplynul čas spojenia"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "%s sa nedá vyhodnotiť"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Chyba zápisu do výstupného súboru"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Archív nemá riadiaci záznam"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Chyba zápisu do súboru"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Nedá sa získať kurzor"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Chyba zápisu do súboru"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Adresár %s sa nedá čítať\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: %s sa nedá vyhodnotiť\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Chyba pri čítaní zo servera"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Zlé dátové záhlavie"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Spojenie zlyhalo"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Chyby sa týkajú súboru "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Vnútorná chyba"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Chyba pri zisťovaní %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Nedá sa vykonať mmap prázdneho súboru"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Priechod stromom zlyhal"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Nedá sa urobiť mmap %lu bajtov"
+msgid "Failed to open %s"
+msgstr "%s sa nedá otvoriť"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Voľba %s nenájdená"
+msgid " DeLink %s [%s]\n"
+msgstr "Odlinkovanie %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Nerozpoznaná skratka typu: '%c'"
+msgid "Failed to readlink %s"
+msgstr "Linka %s sa nedá čítať"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Otvára sa konfiguračný súbor %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Riadok %d je príliš dlhý (nanajvýš %d)"
+msgid "Failed to unlink %s"
+msgstr "%s sa nedá odlinkovať"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu."
+msgid "*** Failed to link %s to %s"
+msgstr "*** Nepodarilo sa zlinkovať %s s %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaktická chyba %s:%u: Skomolená značka"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Bol dosiahnutý odlinkovací limit %sB.\n"
+
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Archív neobsahuje pole package"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje"
+msgid " %s has no override entry\n"
+msgstr " %s nemá žiadnu položku pre override\n"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni"
+msgid " %s maintainer is %s not %s\n"
+msgstr " správcom %s je %s, nie %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)"
+msgid " %s has no source override entry\n"
+msgstr " %s nemá žiadnu source položku pre override\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ"
+msgid " %s has no binary override entry either\n"
+msgstr " %s nemá žiadnu binary položku pre override\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva '%s'"
+msgid "Internal error, could not locate member %s"
+msgstr "Vnútorná chyba, nedá sa nájsť časť %s"
-#: apt-pkg/contrib/configuration.cc:736
-#, 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"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Zlyhal pokus o pridelenie pamäti"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Unable to read %s"
-msgstr "%s sa nedá čítať"
+msgid "Unable to open %s"
+msgstr "%s sa nedá otvoriť"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Chyba!"
+msgid "Malformed override %s line %lu #1"
+msgstr "Skomolený súbor %s, riadok %lu #1"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Hotovo"
+msgid "Malformed override %s line %lu #2"
+msgstr "Skomolený súbor %s, riadok %lu #2"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Parameter príkazového riadku '%c' [z %s] je neznámy"
+msgid "Malformed override %s line %lu #3"
+msgstr "Skomolený súbor %s, riadok %lu #3"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Nezrozumiteľný parameter %s v príkazovom riadku"
+msgid "Failed to read the override file %s"
+msgstr "Nepodarilo sa prečítať override súbor %s"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Neznámy kompresný algoritmus '%s'"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Voľba %s vyžaduje argument."
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimovaný výstup %s potrebuje kompresnú sadu"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Zlyhalo vytvorenie medziprocesovej rúry k podprocesu"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie '%s'"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Zlyhalo vytvorenie FILE*"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Voľba '%s' je príliš dlhá"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Volanie fork() zlyhalo"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Nezrozumiteľný význam %s, skúste true alebo false. "
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Komprimovať potomka"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Invalid operation %s"
-msgstr "Neplatná operácia %s"
+msgid "Internal error, failed to create %s"
+msgstr "Interná chyba, nepodarilo sa vytvoriť %s"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Prípojný bod %s sa nedá vyhodnotiť"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Nedá sa vytvoriť podproces IPC"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Nedá sa prejsť do %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Nepodarilo sa spustiť kompresor "
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Nedá sa vyhodnotiť cdrom"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "dekompresor"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Zamykanie pre zámkový súbor %s, ktorý je iba na čítanie, sa nepoužíva"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "V/V operácia s podprocesom/súborom zlyhala"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Zámkový súbor %s sa nedá otvoriť"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Chyba čítania pri výpočte MD5"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Zamykanie pre zámkový súbor %s pripojený cez nfs sa nepoužíva"
+msgid "Problem unlinking %s"
+msgstr "Problém s odlinkovaním %s"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not get lock %s"
-msgstr "Zámok %s sa nedá získať"
+msgid "Failed to rename %s to %s"
+msgstr "Premenovanie %s na %s zlyhalo"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Čakalo sa na %s, ale nebolo to tam"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Podproces %s obdržal chybu segmentácie."
+msgid "Regex compilation error - %s"
+msgstr "Chyba pri preklade regulárneho výrazu - %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Podproces %s vrátil chybový kód (%u)"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Nasledovné balíky majú nesplnené závislosti:"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Podproces %s neočakávane skončil"
+msgid "but %s is installed"
+msgstr "ale nainštalovaný je %s"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Could not open file %s"
-msgstr "Súbor %s sa nedá otvoriť súbor"
+msgid "but %s is to be installed"
+msgstr "ale inštalovať sa bude %s"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "čítanie, stále treba prečítať %lu, ale už nič neostáva"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ale sa nedá nainštalovať"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "zápis, stále treba zapísať %lu, no nedá sa to"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ale je to virtuálny balík"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problém pri zatváraní súboru"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ale nie je nainštalovaný"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problém pri odstraňovaní súboru"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ale sa nebude inštalovať"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problém pri synchronizovaní súboru"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " alebo"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Vyrovnávacia pamäť balíkov je prázdna"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Nasledovné balíky sa ODSTRÁNIA:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Tento APT nepodporuje systém pre správu verzií '%s'"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Nasledovné balíky sa aktualizujú:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Nasledovné balíky sa DEGRADUJÚ:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Závisí na"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Nasledovné pridržané balíky sa zmenia:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Predzávisí na"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (kvôli %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Navrhuje"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Odporúča"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu aktualizovaných, %lu nových inštalovaných, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Koliduje s"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu reinštalovaných, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Nahrádza"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu degradovaných, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Zneplatňuje"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu na odstránenie a %lu neaktualizovaných.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "dôležitý"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Opravujú sa závislosti..."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "požadovaný"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " zlyhalo."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "štandartný"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Závislosti sa nedajú opraviť"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "voliteľný"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Sada pre aktualizáciu sa nedá minimalizovať"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Hotovo"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Vytvára sa strom závislostí"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Na opravu môžete spustiť `apt-get -f install'."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandidátske verzie"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nesplnené závislosti. Skúste použiť -f."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Generovanie závislostí"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Zlučujú sa dostupné informácie"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Upozornenie o vierohodnosti bolo potlačené.\n"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "%s sa nedá otvoriť"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Nainštalovať tieto nekontrolované balíky [y/N]? "
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Zápis súboru %s zlyhal"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Súbor %s sa nedá spracovať (1)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Nastali problémy a -y bolo použité bez --force-yes"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Súbor %s sa nedá spracovať (2)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Vnútorná chyba, Triedenie sa neukončilo"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Adresár pre sťahovanie sa nedá zamknúť"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Skomolený riadok %lu v zozname zdrojov %s (Absolútny dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Nedá sa načítať zoznam zdrojov."
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages."
+"debian.org"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Opening %s"
-msgstr "Otvára sa %s"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý."
+msgid "Need to get %sB of archives.\n"
+msgstr "Je potrebné stiahnuť %sB archívov.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po rozbalení sa na disku použije ďalších %sB.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po rozbalení sa na disku uvoľní %sB.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typ '%s' je neznámy na riadku %u v zozname zdrojov %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Na %s sa nedá zistiť veľkosť voľného miesta"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Skomolený riadok %u v zozname zdrojov %s (id výrobcu)"
+msgid "You don't have enough free space in %s."
+msgstr "Na %s nemáte dostatok voľného miesta."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Zadané 'iba triviálne', ale toto nie je triviálna operácia."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Áno, urob to, čo vravím!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s "
-"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete "
-"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak."
+"Možno sa chystáte vykonať niečo škodlivé.\n"
+"Pre pokračovanie opíšte frázu '%s'\n"
+" ?]"
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indexový typ súboru '%s' nie je podporovaný"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Prerušené."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Chcete pokračovať [Y/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "Je nutné preinštalovať balík %s, ale nemôžem pre neho nájsť archív."
+msgid "Failed to fetch %s %s\n"
+msgstr "Zlyhalo stiahnutie %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Niektoré súbory sa nedajú stiahnuť"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Sťahovanie ukončené v režime \"iba stiahnuť\""
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené "
-"pridržanými balíkmi."
+"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --"
+"fix-missing"
-#: apt-pkg/algorithms.cc:1107
-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."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing a výmena média nie sú momentálne podporované"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Chýbajúce balíky sa nedajú opraviť."
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Inštalácia sa prerušuje."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Adresár zoznamov %spartial chýba."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Poznámka: %s sa vyberá namiesto %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Archívny adresár %spartial chýba."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Balík %s nie je nainštalovaný, nedá sa teda odstrániť\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Sťahuje sa %li. súbor z %li"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Balík %s je virtuálny balík poskytovaný:\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr "[Inštalovaný]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Mali by ste explicitne vybrať jeden na inštaláciu."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Nedá sa nájsť ovládač spôsobu %s."
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Avšak nahrádzajú ho nasledovné balíky:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Spôsob %s nebol správne spustený"
+msgid "Package %s has no installation candidate"
+msgstr "Balík %s nemá kandidáta na inštaláciu"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Vložte disk nazvaný '%s' do mechaniky '%s' a stlačte Enter."
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Balíčkovací systém '%s' nie je podporovaný"
+msgid "%s is already the newest version.\n"
+msgstr "%s je už najnovšej verzie.\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Nedá sa určiť vhodný typ balíčkovacieho systému"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Nebolo nájdené vydanie '%s' pre '%s'"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "Nedá sa vyhodnotiť %s."
+msgid "Version '%s' for '%s' was not found"
+msgstr "Nebola nájdená verzia '%s' pre '%s'"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Do sources.list musíte zadať nejaké 'zdrojové' URI"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Zvolená verzia %s (%s) pre %s\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Nedá sa načítať zoznam zdrojov."
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Príkaz update neprijíma žiadne argumenty"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Adresár zoznamov sa nedá zamknúť"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Neplatný záznam v súbore preferencií, žiadne záhlavie balíka"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Nezrozumiteľné pripevnenie typu %s"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Pre pripevnenie nebola zadaná žiadna (alebo nulová) priorita"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Chyba pri spracovávaní %s (NewPackage)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+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-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Chyba pri spracovávaní %s (UsePackage1)"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Vnútorná chyba, problem resolver pokazil veci"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Vnútorná chyba, AllUpgrade pokazil veci"
+
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
+msgid "Couldn't find task %s"
+msgstr "Balík %s sa nedá nájsť"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Chyba pri spracovávaní %s (UsePackage2)"
+msgid "Couldn't find package %s"
+msgstr "Balík %s sa nedá nájsť"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Poznámka: vyberá sa %s pre regulárny výraz '%s'\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Chyba pri spracovávaní %s (NewVersion1)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ale inštalovať sa bude %s"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Chyba pri spracovávaní %s (UsePackage3)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Na opravu nasledovných môžete spustiť `apt-get -f install':"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Chyba pri spracovávaní %s (NewVersion2)"
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"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-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať."
+"Pretože ste požiadali iba o jednoduchú operáciu, je takmer isté, že\n"
+"balík nie je inštalovateľný a mali by ste zaslať hlásenie o chybe\n"
+"(bug report) pre daný balík."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Poškodené balíky"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať."
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Nainštalujú sa nasledovné extra balíky:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr ""
-"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať."
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Navrhované balíky:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Odporúčané balíky:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Prepočítava sa aktualizácia... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Chyba"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Hotovo"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Vnútorná chyba, problem resolver pokazil veci"
+
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Chyba pri spracovávaní %s (FindPkg)"
+msgid "Unable to find a source package for %s"
+msgstr "Nedá sa nájsť zdrojový balík pre %s"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Chyba pri spracovávaní %s (CollectFileProvides)"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Preskakuje sa už stiahnutý súbor '%s'\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s"
+msgid "You don't have enough free space in %s"
+msgstr "Na %s nemáte dostatok voľného miesta"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Načítavajú sa zoznamy balíkov"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Collecting File poskytuje"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Stiahnuť zdroj %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Zlyhalo stiahnutie niektorých archívov."
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "Do %s sa nedá zapisovať"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäte"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Príkaz pre rozbalenie '%s' zlyhal.\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "premenovanie zlyhalo, %s (%s -> %s)."
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Skontrolujte, či je nainštalovaný balík 'dpkg-dev'.\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Nezhoda MD5 súčtov"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Príkaz pre zostavenie '%s' zlyhal.\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Nezhoda MD5 súčtov"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Proces potomka zlyhal"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na "
+"zostavenie"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je "
-"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)."
+msgid "Unable to get build-dependency information for %s"
+msgstr "Nedajú sa získať závislosti pre zostavenie %s"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Nedá sa nájsť súbor s balíkom %s. Asi budete musieť opraviť tento balík "
-"manuálne."
+msgid "%s has no build depends.\n"
+msgstr "%s nemá žiadne závislosti pre zostavenie.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, 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:1391
-msgid "Size mismatch"
-msgstr "Veľkosti sa nezhodujú"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "%s závislosť pre %s sa nemôže splniť, pretože sa nedá nájsť balík %s"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Použije sa CD-ROM prípojný bod %s\n"
-"Pripája sa CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identifikuje sa.."
+"%s závislosť pre %s sa nedá splniť, protože sa nedá nájsť verzia balíku %s, "
+"ktorá zodpovedá požiadavke na verziu"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Uložená menovka: %s \n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Použije sa CD-ROM prípojný bod %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "CD-ROM sa odpája\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Čaká sa na disk...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Pripája sa CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Na disku sa hľadajú indexové súbory..\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Zlyhalo splnenie %s závislosti pre %s: %s"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Nájdených %i indexov balíkov, %i indexov zdrojových balíkov a %i signatúr\n"
+#: cmdline/apt-get.cc:2570
+#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Závislosti pre zostavenie %s sa nedajú splniť."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Uložená menovka: %s \n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Spracovanie závislostí pre zostavenie zlyhalo"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Neplatný názov, skúste znova.\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Podporované moduly:"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"Názov tohto disku je: \n"
-"'%s'\n"
+"Použitie: apt-get [voľby] príkaz\n"
+" apt-get [voľby] install|remove balík1 [balík2 ...]\n"
+" apt-get [voľby] source balík1 [balík2 ...]\n"
+"\n"
+"apt-get je jednoduché rozhranie v príkazovom riadku pre sťahovanie\n"
+"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n"
+"\n"
+"Príkazy:\n"
+" update - Získa zoznam nových balíkov\n"
+" upgrade - Vykoná aktualizáciu\n"
+" install - Nainštaluje nové balíky (balík je libc6, nie libc6."
+"deb)\n"
+" remove - Odstráni balíky\n"
+" source - Stiahne zdrojové archívy\n"
+" build-dep - Nastaví závislosti pre zostavenie pre zdrojové balíky\n"
+" dist-upgrade - Aktualizácia distribúcie, viď apt-get(8)\n"
+" dselect-upgrade - Riadi sa podľa výberu v dselect-e\n"
+" clean - Zmaže stiahnuté archívy\n"
+" autoclean - Zmaže staré stiahnuté archívy\n"
+" check - Overí, či nejestvujú poškodené závislosti\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda\n"
+" -q Nezobrazí indikátor priebehu - pre záznam\n"
+" -qq Zobrazí iba chyby\n"
+" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n"
+" -s Iba napodobňuje prevádzané akcie\n"
+" -y Na všetky otázky odpovedá Áno\n"
+" -f Skúsi pokračovať, aj keď zlyhá kontrola integrity\n"
+" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n"
+" -u Zobrazí tiež zoznam aktualizovaných balíkov\n"
+" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n"
+" -V Zobrazí čísla verzií\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
+"Viac volieb nájdete v manuálových stránkách apt-get(8), sources.list(5)\n"
+"a apt.conf(5).\n"
+" Toto APT má schopnosti posvätnej kravy.\n"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopírujú sa zoznamy balíkov..."
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Už existuje "
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Zapisuje sa nový zoznam zdrojov\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Získava sa:"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Položky zoznamu zdrojov pre tento disk sú:\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "CD-ROM sa odpája..."
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Chyba "
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Zapísaných %i záznamov.\n"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "%sB sa stiahlo za %s (%sB/s)\n"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n"
+msgid " [Working]"
+msgstr " [Spracúva sa]"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Výmena média: Vložte disk nazvaný\n"
+" '%s'\n"
+"do mechaniky '%s' a stlačte Enter\n"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Neznámy záznam o balíku!"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Adresár zoznamov %spartial chýba."
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Použitie: apt-sortpkgs [voľby] súbor1 [súbor2 ...]\n"
+"\n"
+"apt-sortpkgs je jednoduchý nástroj na zotriedenie súborov Packages.\n"
+"Voľbou -s si zvolíte typ súboru.\n"
+"\n"
+"Voľby:\n"
+" -h Táto nápoveda\n"
+" -s Zotriedi zdrojový súbor\n"
+" -c=? Načíta tento konfiguračný súbor\n"
+" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Pripravuje sa %s"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Chybné predvolené nastavenie!"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Rozbaľuje sa %s"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Stlačte Enter, ak chcete pokračovať."
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Pripravuje sa nastavenie %s"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Pri rozbaľovaní došlo k nejakým chybám. Teraz sa nastavia"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Nastavuje sa %s"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "balíky, ktoré sa nainštalovali. Môže to spôsobiť chybové správy"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Chyba pri spracovávaní adresára %s"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Nainštalovaný balík %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Pripravuje sa odstránenie %s"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Odstraňuje sa %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "Odstránený balík %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Pripravuje sa úplné odstránenie %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Balík '%s' je úplne odstránený"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
+"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Súbor %s sa nedá otvoriť súbor"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Zlyhalo vytvorenie medziprocesovej rúry k podprocesu"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Spojenie bolo predčasne ukončené"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Zlučujú sa dostupné informácie"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Diverzná cesta je príliš dlhá"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Premenovanie %s na %s zlyhalo"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Súbor %s/%s prepisuje ten z balíka %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "%s sa nedá čítať"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Adresáre info a temp musia byť na tom istom súborovom systéme"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Načítavajú sa zoznamy balíkov"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "Nespracovateľný riadiaci súbor"
-#: cmdline/apt-cache.cc:143
-#, 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:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Balík %s sa nedá nájsť"
+msgid "Unable to read the cdrom database %s"
+msgstr "Nedá sa čítať databáza na cdrom %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Celkom názvov balíkov: "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Pre pridanie CD do APT použijte apt-cdrom. apt-get update sa nedá využiť na "
+"pridávanie nových CD."
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normálnych balíkov: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Chybné CD"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Čisto virtuálnych balíkov: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Jednoduchých virtuálnych balíkov: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Disk sa nenašiel."
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Zmiešaných virtuálnych balíkov: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Súbor sa nenašiel"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Chýbajúcich: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Vyhodnotenie zlyhalo"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Celkom rôznych verzií: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Zlyhalo nastavenie času zmeny"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Celkom rôznych verzií: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Neplatné URI, lokálne URI nesmie začínať s //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Celkom závislostí: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Prihlasovanie"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Celkom vzťahov ver/súbor: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Nedá sa zistiť názov druhej strany"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Celkom vzťahov ver/súbor: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Nedá sa zistiť lokálny názov"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Celkom poskytnutých mapovaní: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Server zamietol naše spojenie s chybou: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Celkom globovaných reťazcov: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER zlyhal, server odpovedal: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Celkom miesta závislých verzií: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS zlyhal, server odpovedal: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Celkom jalového miesta: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::"
+"ProxyLogin je prázdny."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Celkom priradeného miesta: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Príkaz '%s' prihlasovacieho skriptu zlyhal, server odpovedal: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Súbor balíkov %s je neaktuálny."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE zlyhal, server odpovedal: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Musíte zadať práve jeden vzor"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Uplynul čas spojenia"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Neboli nájdené žiadne balíky"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Server ukončil spojenie"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Súbory balíka:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Chyba pri čítaní"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cache je neaktuálna, nedá sa odvolať na súbor balíka"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Odpoveď preplnila zásobník."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Narušenie protokolu"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pripevnené balíky:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Chyba pri zápise"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(nenájdené)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Nedá sa vytvoriť socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Nainštalovaná verzia: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(žiadna)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Nedá sa pripojiť pasívny socket."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidát: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo nezískal počúvajúci socket"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Pripevnený balík:"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Nedá sa nadviazať socket"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabuľka verzií:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Na sockete sa nedá počúvať"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s pre %s %s skompilovaný na %s %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Názov socketu sa nedá zistiť"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Použitie: apt-cache [voľby] príkaz\n"
-" apt-cache [voľby] add súbor1 [súbor2 ...]\n"
-" apt-cache [voľby] showpkg balík1 [balík2 ...]\n"
-" apt-cache [voľby] showsrc balík1 [balík2 ...]\n"
-"\n"
-"apt-cache je nízkoúrovňový nástroj na spravovanie binárnych\n"
-"súborov vo vyrovnávacej pamäti APT a na ich prehľadávanie\n"
-"\n"
-"Príkazy:\n"
-" add - Pridá súbor Packages do zdrojovej vyrovnávacej pamäti\n"
-" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n"
-" showpkg - Zobrazí všeobecné údaje o balíku\n"
-" showsrc - Zobrazí zdrojové záznamy\n"
-" stats - Zobrazí základné štatistiky\n"
-" dump - Zobrazí celý súbor v zhustenej podobe\n"
-" dumpavail - Vypíše súbor dostupných balíkov na štandartný výstup\n"
-" unmet - Zobrazí nesplnené závislosti\n"
-" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n"
-" show - Zobrazí prehľadné informácie o balíku\n"
-" depends - Zobrazí základné údaje o závislostiach balíka\n"
-" rdepends - Zobrazí údaje o spätných závislostiach balíka\n"
-" pkgnames - Vypíše zoznam názvov všetkých balíkov\n"
-" dotty - Vytvorí diagramy balíka pre GraphVis\n"
-" xvcg - Vytvorí diagramy balíka pre xvcg\n"
-" policy - Zobrazí nastavenia zásad\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda.\n"
-" -p=? Vyrovnávacia pamäť balíkov.\n"
-" -s=? Vyrovnávacia pamäť zdrojov.\n"
-" -q Nezobrazí indikátor priebehu.\n"
-" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-"Viac informácií nájdete v manuálových stránkach apt-cache(8) a apt.conf(5).\n"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Príkaz PORT sa nedá odoslať"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Zadajte názov tohto disku, napríklad 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "Neznáma rodina adries %u (AF_*)"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Vložte disk do mechaniky a stlačte Enter"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT zlyhal, server odpovedal: %s"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Zopakujte tento proces pre všetky CD v sade diskov."
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Uplynulo spojenie dátového socketu"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenty nie sú vo dvojiciach"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Spojenie sa nedá prijať"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Použitie: apt-config [voľby] príkaz\n"
-"\n"
-"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n"
-"\n"
-"Príkazy:\n"
-" shell - Shellový režim\n"
-" dump - Zobrazí nastavenie\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda.\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problém s hashovaním súboru"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:877
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s nie je platný DEB balík."
-
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Použitie: apt-extracttemplates súbor1 [súbor2 ...]\n"
-"\n"
-"apt-extracttemplates je nástroj na vyňatie konfiguračných skriptov\n"
-"a šablón z debian balíkov\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda.\n"
-" -t Nastaví dočasný adresár\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Nedá sa určiť verzia programu debconf. Je debconf nainštalovaný?"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Súbor sa nedá stiahnuť, server odpovedal '%s'"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Zoznam rozšírení balíka je príliš dlhý"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Uplynula doba dátového socketu"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing directory %s"
-msgstr "Chyba pri spracovávaní adresára %s"
+msgid "Data transfer failed, server said '%s'"
+msgstr "Prenos dát zlyhal, server odpovedal '%s'"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Zoznam zdrojových rozšírení je príliš dlhý"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Dotaz"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Chyba pri zapisovaní hlavičky do súboru"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Nedá sa vyvolať "
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:64
#, c-format
-msgid "Error processing contents %s"
-msgstr "Chyba pri spracovávaní obsahu %s"
+msgid "Connecting to %s (%s)"
+msgstr "Pripája sa k %s (%s)"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Použitie: apt-ftparchive [voľby] príkaz\n"
-"Príkazy: packages binárna_cesta [súbor_override [prefix_cesty]]\n"
-" sources zdrojová_cesta [súbor_override [prefix_cesty]]\n"
-" contents cesta\n"
-" release cesta\n"
-" generate konfiguračný_súbor [skupiny]\n"
-" clean konfiguračný_súbor\n"
-"\n"
-"apt-ftparchive generuje indexové súbory archívov Debianu. Podporuje\n"
-"niekoľko režimov vytvárania - od plne automatického až po funkčnú\n"
-"náhradu príkazov dpkg-scanpackages a dpkg-scansources.\n"
-"\n"
-"apt-ftparchive zo stromu .deb súborov vygeneruje súbory Packages. Súbor\n"
-"Packages okrem všetkých riadiacich polí každého balíka obsahuje tiež jeho\n"
-"veľkosť a MD5 súčet. Podporovaný je tiež súbor 'override', pomocou ktorého\n"
-"môžete vynútiť hodnoty polí Priority a Section.\n"
-"\n"
-"Podobne vie apt-ftparchive vygenerovať zo stromu súborov .dsc súbory\n"
-"Sources. Voľbou --source-override môžete určiť zdrojový súbor 'override'.\n"
-"\n"
-"Príkazy 'packages' a 'sources' by sa mali spúšťať v koreni stromu.\n"
-"Binárna_cesta by mala ukazovať na začiatok rekurzívneho hľadania\n"
-"a súbor 'override' by mal obsahovať príznaky pre nahradenie. Ak je udaný\n"
-"prefix_cesty, pridá sa do polí 'filename'.\n"
-"Skutočný príklad z archívu Debianu:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda\n"
-" --md5 Vygeneruje kontrolný MD5 súčet\n"
-" -s=? Zdrojový súbor 'override'\n"
-" -q Tichý režim\n"
-" -d=? Zvolí voliteľnú databázu pre vyrovnávaciu pamäť\n"
-" --no-delink Povolí ladiaci režim\n"
-" --contents Vygeneruje súbor Contents\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nevyhovel žiaden výber"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:86
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "V balíkovom súbore skupiny `%s' chýbajú niektoré súbory"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)."
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:93
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB je narušená, súbor je premenovaný na %s.old"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:108
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB je neaktuálna, prebieha pokus o aktualizáciu %s"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Nedá sa pripojiť k %s:%s (%s)."
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"Formát DB je neplatný. Ak ste aktualizovali staršiu verziu apt, musíte "
-"odstrániť a znovu vytvoriť databázu."
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Pripája sa k %s"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:167
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Nedá sa otvoriť DB súbor %s: %s"
+msgid "Could not resolve '%s'"
+msgstr "Nedá sa zistiť '%s'"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Archív nemá riadiaci záznam"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Dočasné zlyhanie pri zisťovaní '%s'"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Nedá sa získať kurzor"
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Niečo veľmi zlé sa prihodilo pri zisťovaní '%s:%s' (%i)"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:223
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Adresár %s sa nedá čítať\n"
+msgid "Unable to connect to %s %s:"
+msgstr "Nedá sa pripojiť k %s %s:"
-#: ftparchive/writer.cc:81
+#: methods/gpgv.cc:65
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: %s sa nedá vyhodnotiť\n"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Zväzok kľúčov '%s' je nedostupný."
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"CHYBA: zoznam argumentov z Acquire::gpgv::Options je príliš dlhý. Ukončuje "
+"sa."
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Chyby sa týkajú súboru "
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Bola zistená aspoň jedna nesprávna signatúra."
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Chyba pri zisťovaní %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "Nedá sa spustiť '%s' na kontrolu signatúry (je nainštalované gnupg?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Priechod stromom zlyhal"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Neznáma chyba pri spustení gpgv"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Nasledovné signatúry sú neplatné:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný "
+"kľúč:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "%s sa nedá otvoriť"
+msgid "Couldn't open pipe for %s"
+msgstr "Nedá sa otvoriť rúra pre %s"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "Odlinkovanie %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "Chyba pri čítaní z procesu %s"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Čaká sa na hlavičky"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Linka %s sa nedá čítať"
+msgid "Got a single header line over %u chars"
+msgstr "Získal sa jeden riadok hlavičky cez %u znakov"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Chybná hlavička"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP server poslal neplatnú hlavičku odpovede"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP server poslal neplatnú hlavičku Content-Length"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP server poslal neplatnú hlavičku Content-Range"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Tento HTTP server má poškodenú podporu rozsahov"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Neznámy formát dátumu"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Výber zlyhal"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Uplynul čas spojenia"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Chyba zápisu do výstupného súboru"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Chyba zápisu do súboru"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Chyba zápisu do súboru"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Chyba pri čítaní zo servera"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Zlé dátové záhlavie"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Spojenie zlyhalo"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Vnútorná chyba"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Nedá sa vykonať mmap prázdneho súboru"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "%s sa nedá odlinkovať"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Nedá sa urobiť mmap %lu bajtov"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Nepodarilo sa zlinkovať %s s %s"
+msgid "Selection %s not found"
+msgstr "Voľba %s nenájdená"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Bol dosiahnutý odlinkovací limit %sB.\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Nerozpoznaná skratka typu: '%c'"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Archív neobsahuje pole package"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "Otvára sa konfiguračný súbor %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Riadok %d je príliš dlhý (nanajvýš %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nemá žiadnu položku pre override\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " správcom %s je %s, nie %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaktická chyba %s:%u: Skomolená značka"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nemá žiadnu source položku pre override\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s nemá žiadnu binary položku pre override\n"
+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"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Vnútorná chyba, nedá sa nájsť časť %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Zlyhal pokus o pridelenie pamäti"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "%s sa nedá otvoriť"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Skomolený súbor %s, riadok %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Skomolený súbor %s, riadok %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... Chyba!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Skomolený súbor %s, riadok %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... Hotovo"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Nepodarilo sa prečítať override súbor %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Parameter príkazového riadku '%c' [z %s] je neznámy"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Neznámy kompresný algoritmus '%s'"
+msgid "Command line option %s is not understood"
+msgstr "Nezrozumiteľný parameter %s v príkazovom riadku"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimovaný výstup %s potrebuje kompresnú sadu"
+msgid "Command line option %s is not boolean"
+msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Zlyhalo vytvorenie FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Voľba %s vyžaduje argument."
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Volanie fork() zlyhalo"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Komprimovať potomka"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Interná chyba, nepodarilo sa vytvoriť %s"
+msgid "Option '%s' is too long"
+msgstr "Voľba '%s' je príliš dlhá"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Nedá sa vytvoriť podproces IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Nezrozumiteľný význam %s, skúste true alebo false. "
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Nepodarilo sa spustiť kompresor "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Neplatná operácia %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "dekompresor"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Prípojný bod %s sa nedá vyhodnotiť"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "V/V operácia s podprocesom/súborom zlyhala"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Nedá sa prejsť do %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Chyba čítania pri výpočte MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Nedá sa vyhodnotiť cdrom"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problém s odlinkovaním %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Zamykanie pre zámkový súbor %s, ktorý je iba na čítanie, sa nepoužíva"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Zámkový súbor %s sa nedá otvoriť"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Chyba pri preklade regulárneho výrazu - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Zamykanie pre zámkový súbor %s pripojený cez nfs sa nepoužíva"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Nasledovné balíky majú nesplnené závislosti:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Zámok %s sa nedá získať"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "ale nainštalovaný je %s"
+msgid "Waited for %s but it wasn't there"
+msgstr "Čakalo sa na %s, ale nebolo to tam"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "ale inštalovať sa bude %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Podproces %s obdržal chybu segmentácie."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ale sa nedá nainštalovať"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Podproces %s vrátil chybový kód (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ale je to virtuálny balík"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Podproces %s neočakávane skončil"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ale nie je nainštalovaný"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Súbor %s sa nedá otvoriť súbor"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ale sa nebude inštalovať"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "čítanie, stále treba prečítať %lu, ale už nič neostáva"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " alebo"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "zápis, stále treba zapísať %lu, no nedá sa to"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problém pri zatváraní súboru"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Nasledovné balíky sa ODSTRÁNIA:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problém pri odstraňovaní súboru"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problém pri synchronizovaní súboru"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Nasledovné balíky sa aktualizujú:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Vyrovnávacia pamäť balíkov je prázdna"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Nasledovné balíky sa DEGRADUJÚ:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Nasledovné pridržané balíky sa zmenia:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (kvôli %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Tento APT nepodporuje systém pre správu verzií '%s'"
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu aktualizovaných, %lu nových inštalovaných, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Závisí na"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu reinštalovaných, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Predzávisí na"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu degradovaných, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Navrhuje"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu na odstránenie a %lu neaktualizovaných.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Odporúča"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Koliduje s"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Opravujú sa závislosti..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Nahrádza"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " zlyhalo."
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Zneplatňuje"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Závislosti sa nedajú opraviť"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Sada pre aktualizáciu sa nedá minimalizovať"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "dôležitý"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Hotovo"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "požadovaný"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Na opravu môžete spustiť `apt-get -f install'."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "štandartný"
+
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "voliteľný"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nesplnené závislosti. Skúste použiť -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Vytvára sa strom závislostí"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Upozornenie o vierohodnosti bolo potlačené.\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandidátske verzie"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Nainštalovať tieto nekontrolované balíky [y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Generovanie závislostí"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Zlučujú sa dostupné informácie"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Nastali problémy a -y bolo použité bez --force-yes"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "%s sa nedá otvoriť"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Zápis súboru %s zlyhal"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Súbor %s sa nedá spracovať (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Vnútorná chyba, Triedenie sa neukončilo"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Súbor %s sa nedá spracovať (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Adresár pre sťahovanie sa nedá zamknúť"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages."
-"debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Je potrebné stiahnuť %sB archívov.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Skomolený riadok %lu v zozname zdrojov %s (Absolútny dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Po rozbalení sa na disku použije ďalších %sB.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Po rozbalení sa na disku uvoľní %sB.\n"
+msgid "Opening %s"
+msgstr "Otvára sa %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Na %s sa nedá zistiť veľkosť voľného miesta"
+msgid "Line %u too long in source list %s."
+msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Na %s nemáte dostatok voľného miesta."
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Zadané 'iba triviálne', ale toto nie je triviálna operácia."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typ '%s' je neznámy na riadku %u v zozname zdrojov %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Áno, urob to, čo vravím!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Skomolený riadok %u v zozname zdrojov %s (id výrobcu)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Možno sa chystáte vykonať niečo škodlivé.\n"
-"Pre pokračovanie opíšte frázu '%s'\n"
-" ?]"
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Prerušené."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Chcete pokračovať [Y/n]? "
+"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s "
+"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete "
+"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Zlyhalo stiahnutie %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Niektoré súbory sa nedajú stiahnuť"
+msgid "Index file type '%s' is not supported"
+msgstr "Indexový typ súboru '%s' nie je podporovaný"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Sťahovanie ukončené v režime \"iba stiahnuť\""
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "Je nutné preinštalovať balík %s, ale nemôžem pre neho nájsť archív."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --"
-"fix-missing"
+"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené "
+"pridržanými balíkmi."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing a výmena média nie sú momentálne podporované"
+#: apt-pkg/algorithms.cc:1107
+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."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Chýbajúce balíky sa nedajú opraviť."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Adresár zoznamov %spartial chýba."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Inštalácia sa prerušuje."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Archívny adresár %spartial chýba."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Poznámka: %s sa vyberá namiesto %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, 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"
+msgid "Retrieving file %li of %li"
+msgstr "Sťahuje sa %li. súbor z %li"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Balík %s nie je nainštalovaný, nedá sa teda odstrániť\n"
+msgid "The method driver %s could not be found."
+msgstr "Nedá sa nájsť ovládač spôsobu %s."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Balík %s je virtuálny balík poskytovaný:\n"
+msgid "Method %s did not start correctly"
+msgstr "Spôsob %s nebol správne spustený"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr "[Inštalovaný]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Vložte disk nazvaný '%s' do mechaniky '%s' a stlačte Enter."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Mali by ste explicitne vybrať jeden na inštaláciu."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Balíčkovací systém '%s' nie je podporovaný"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Nedá sa určiť vhodný typ balíčkovacieho systému"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "Nedá sa vyhodnotiť %s."
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Avšak nahrádzajú ho nasledovné balíky:"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Do sources.list musíte zadať nejaké 'zdrojové' URI"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Neplatný záznam v súbore preferencií, žiadne záhlavie balíka"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "Nezrozumiteľné pripevnenie typu %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Pre pripevnenie nebola zadaná žiadna (alebo nulová) priorita"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Chyba pri spracovávaní %s (NewPackage)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Chyba pri spracovávaní %s (UsePackage1)"
-#: cmdline/apt-get.cc:1128
-#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Balík %s nemá kandidáta na inštaláciu"
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, 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"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Chyba pri spracovávaní %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s je už najnovšej verzie.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Nebolo nájdené vydanie '%s' pre '%s'"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Chyba pri spracovávaní %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Nebola nájdená verzia '%s' pre '%s'"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Chyba pri spracovávaní %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Zvolená verzia %s (%s) pre %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Príkaz update neprijíma žiadne argumenty"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Chyba pri spracovávaní %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Adresár zoznamov sa nedá zamknúť"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"Niektoré indexové súbory sa nepodarilo stiahnuť, boli ignorované, alebo sa "
-"použili staršie verzie."
+"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Nainštalujú sa nasledovné NOVÉ balíky:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
msgstr ""
+"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Chyba pri spracovávaní %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Chyba pri spracovávaní %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Vnútorná chyba, problem resolver pokazil veci"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Vnútorná chyba, AllUpgrade pokazil veci"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Balík %s sa nedá nájsť"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Collecting File poskytuje"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Balík %s sa nedá nájsť"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäte"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Poznámka: vyberá sa %s pre regulárny výraz '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "premenovanie zlyhalo, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ale inštalovať sa bude %s"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Nezhoda MD5 súčtov"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Na opravu nasledovných môžete spustiť `apt-get -f install':"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Nezhoda MD5 súčtov"
-#: cmdline/apt-get.cc:1730
-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-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"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."
+"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je "
+"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Pretože ste požiadali iba o jednoduchú operáciu, je takmer isté, že\n"
-"balík nie je inštalovateľný a mali by ste zaslať hlásenie o chybe\n"
-"(bug report) pre daný balík."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Poškodené balíky"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Nainštalujú sa nasledovné extra balíky:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Navrhované balíky:"
+"Nedá sa nájsť súbor s balíkom %s. Asi budete musieť opraviť tento balík "
+"manuálne."
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Odporúčané balíky:"
+#: apt-pkg/acquire-item.cc:1313
+#, 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."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Prepočítava sa aktualizácia... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Veľkosti sa nezhodujú"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Hotovo"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Vnútorná chyba, problem resolver pokazil veci"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Použije sa CD-ROM prípojný bod %s\n"
+"Pripája sa CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identifikuje sa.."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Nedá sa nájsť zdrojový balík pre %s"
+msgid "Stored label: %s\n"
+msgstr "Uložená menovka: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Preskakuje sa už stiahnutý súbor '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "CD-ROM sa odpája..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Na %s nemáte dostatok voľného miesta"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Použije sa CD-ROM prípojný bod %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "CD-ROM sa odpája\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Čaká sa na disk...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Stiahnuť zdroj %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Pripája sa CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Zlyhalo stiahnutie niektorých archívov."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Na disku sa hľadajú indexové súbory..\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Nájdených %i indexov balíkov, %i indexov zdrojových balíkov a %i signatúr\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Príkaz pre rozbalenie '%s' zlyhal.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Uložená menovka: %s \n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Neplatný názov, skúste znova.\n"
+
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Skontrolujte, či je nainštalovaný balík 'dpkg-dev'.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Názov tohto disku je: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Príkaz pre zostavenie '%s' zlyhal.\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopírujú sa zoznamy balíkov..."
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Proces potomka zlyhal"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Zapisuje sa nový zoznam zdrojov\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na "
-"zostavenie"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Položky zoznamu zdrojov pre tento disk sú:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Nedajú sa získať závislosti pre zostavenie %s"
+msgid "Wrote %i records.\n"
+msgstr "Zapísaných %i záznamov.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s nemá žiadne závislosti pre zostavenie.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "%s závislosť pre %s sa nemôže splniť, pretože sa nedá nájsť balík %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s závislosť pre %s sa nedá splniť, protože sa nedá nájsť verzia balíku %s, "
-"ktorá zodpovedá požiadavke na verziu"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n"
-#: cmdline/apt-get.cc:2518
-#, 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ý"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Adresár zoznamov %spartial chýba."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Zlyhalo splnenie %s závislosti pre %s: %s"
+msgid "Preparing %s"
+msgstr "Pripravuje sa %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Závislosti pre zostavenie %s sa nedajú splniť."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Spracovanie závislostí pre zostavenie zlyhalo"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Podporované moduly:"
+msgid "Unpacking %s"
+msgstr "Rozbaľuje sa %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Použitie: apt-get [voľby] príkaz\n"
-" apt-get [voľby] install|remove balík1 [balík2 ...]\n"
-" apt-get [voľby] source balík1 [balík2 ...]\n"
-"\n"
-"apt-get je jednoduché rozhranie v príkazovom riadku pre sťahovanie\n"
-"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n"
-"\n"
-"Príkazy:\n"
-" update - Získa zoznam nových balíkov\n"
-" upgrade - Vykoná aktualizáciu\n"
-" install - Nainštaluje nové balíky (balík je libc6, nie libc6."
-"deb)\n"
-" remove - Odstráni balíky\n"
-" source - Stiahne zdrojové archívy\n"
-" build-dep - Nastaví závislosti pre zostavenie pre zdrojové balíky\n"
-" dist-upgrade - Aktualizácia distribúcie, viď apt-get(8)\n"
-" dselect-upgrade - Riadi sa podľa výberu v dselect-e\n"
-" clean - Zmaže stiahnuté archívy\n"
-" autoclean - Zmaže staré stiahnuté archívy\n"
-" check - Overí, či nejestvujú poškodené závislosti\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda\n"
-" -q Nezobrazí indikátor priebehu - pre záznam\n"
-" -qq Zobrazí iba chyby\n"
-" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n"
-" -s Iba napodobňuje prevádzané akcie\n"
-" -y Na všetky otázky odpovedá Áno\n"
-" -f Skúsi pokračovať, aj keď zlyhá kontrola integrity\n"
-" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n"
-" -u Zobrazí tiež zoznam aktualizovaných balíkov\n"
-" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n"
-" -V Zobrazí čísla verzií\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-"Viac volieb nájdete v manuálových stránkách apt-get(8), sources.list(5)\n"
-"a apt.conf(5).\n"
-" Toto APT má schopnosti posvätnej kravy.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Pripravuje sa nastavenie %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Už existuje "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Nastavuje sa %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Získava sa:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Chyba pri spracovávaní adresára %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Nainštalovaný balík %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Chyba "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Pripravuje sa odstránenie %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "%sB sa stiahlo za %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Odstraňuje sa %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Spracúva sa]"
+msgid "Removed %s"
+msgstr "Odstránený balík %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Výmena média: Vložte disk nazvaný\n"
-" '%s'\n"
-"do mechaniky '%s' a stlačte Enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "Pripravuje sa úplné odstránenie %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Neznámy záznam o balíku!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Balík '%s' je úplne odstránený"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Použitie: apt-sortpkgs [voľby] súbor1 [súbor2 ...]\n"
-"\n"
-"apt-sortpkgs je jednoduchý nástroj na zotriedenie súborov Packages.\n"
-"Voľbou -s si zvolíte typ súboru.\n"
-"\n"
-"Voľby:\n"
-" -h Táto nápoveda\n"
-" -s Zotriedi zdrojový súbor\n"
-" -c=? Načíta tento konfiguračný súbor\n"
-" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Chybné predvolené nastavenie!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Súbor %s sa nedá otvoriť súbor"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Stlačte Enter, ak chcete pokračovať."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Spojenie bolo predčasne ukončené"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Pri rozbaľovaní došlo k nejakým chybám. Teraz sa nastavia"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Riadok %d je príliš dlhý (nanajvýš %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "balíky, ktoré sa nainštalovali. Môže to spôsobiť chybové správy"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Chyba pri spracovávaní %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Uložená menovka: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Zlučujú sa dostupné informácie"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Nájdených %i indexov balíkov, %i indexov zdrojových balíkov a %i "
+#~ "signatúr\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2005-02-16 22:18+0100\n"
"Last-Translator: Jure Cuhalev <gandalf@owca.info>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Ni mogoèe brati zbirke %s na CD-ROM-u"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Uporabite apt-cdrom, èe ¾elite, da APT prepozna CD. apt-get update ne more "
-"sam dodati novih CD-jev"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Napaèen C"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Paket %s razlièica %s ima nere¹ene odvisnosti:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Ni mogoèe odklopiti CD-ROM-a v %s, ker je morda ¹e v uporabi."
-
-#: methods/cdrom.cc:171
-#, fuzzy
-msgid "Disk not found."
-msgstr "Datoteke ni mogoèe najti"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Datoteke ni mogoèe najti"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Doloèitev ni uspela"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Nastavitev èasa spremembe ni uspela"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Napaèen URI. Lokalni URI-ji se morajo zaèeti z /"
+msgid "Unable to locate package %s"
+msgstr "Ne najdem paketa %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Prijavljam se"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Vseh imen paketov:"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Ni mogoèe ugotoviti imena gostitelja"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Navadni paketi:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Ni mogoèe ugotoviti lokalnega imena"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Èisti navidezni paketi:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Stre¾nik je zavrnil na¹o povezavo in sporoèil: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Posamezni navidezni paketi:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER ni uspel, stre¾nik je odgovoril: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Me¹ani navidezni paketi:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS ni uspel, stre¾nik je odgovoril: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Manjka: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Naveden je bil proxy-stre¾nik, ne pa tudi prijavna skripta. Acquire::ftp::"
-"ProxyLogin je prazen."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Vseh razlièic:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Ukaz prijavne skripte '%s' ni uspel, stre¾nik je odgovoril: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Vseh razlièic:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE ni uspel, stre¾nik je odgovoril: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Vseh odvisnosti:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Povezava potekla"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Vseh povezava Raz/Dat:"
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Stre¾nik je zaprl povezavo"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Vseh povezava Raz/Dat:"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Napaka pri branju"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Vseh dobljenih preslikav: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Odgovor je prekoraèil vmesnik."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Vseh raz¹irjenih nizov: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Okvara protokola"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Celotna velikost z odvisnostmi: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Napaka pri pisanju"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Celotna ohlapna velikost: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Ni mogoèe ustvariti vtiènice"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Celotna velikost, izraèunana za: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Ni mogoèe priklopiti podatkovne vtiènice. Povezava potekla."
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Paketna datoteka %s ni usklajena."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Spodletelo"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Podati morate natanèno en vzorec"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Ni mogoèe priklopiti pasivne vtiènice."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Nobena datoteka ni bila najdena"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo ni mogel dobiti poslu¹ajoèe vtiènice"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Paketne datoteke:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Ni mogoèe povezati vtiènice"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Predpomnilnik ni usklajen, x-ref paketne datotek ni mogoè"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Ni mogoèe poslu¹ati na vtiènici"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Ni mogoèe ugotoviti imena vtiènice"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Pripeti paketi:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Ni mogoèe poslati ukaza PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ni najden)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Neznan naslov dru¾ine %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Name¹èen: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT ni uspel, stre¾nik je odgovoril: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(brez)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Povezava podatkovne vtiènice potekla"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidat:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Ni mogoèe sprejeti povezave"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Zaponka paketa:"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Te¾ava pri razpr¹evanju datoteke"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Tabela razlièic:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Ni mogoèe dobiti datoteke, stre¾nik je odgovoril '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Podatkovna vtiènica je potekla"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s za %s %s preveden na %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Prenos podatkov ni uspel, stre¾nik je odgovoril '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Poizvedba"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Ni mogoèe zagnati "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Povezovanje z %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Ni mogoèe ustvariti vtiènice za %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Ni mogoèe zaèeti povezave z %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Ni se mogoèe povezati z %s:%s (%s). Povezava potekla."
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Ni se mogoèe povezati z %s:%s (%s)."
-
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Povezujem se z %s"
-
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Ni mogoèe razre¹iti '%s'"
-
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Zaèasna napaka pri razre¹evanju '%s'"
-
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Pri¹lo je do napake pri razre¹evanju '%s:%s' (%i)"
-
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Ni se mogoèe povezati z %s %s:"
-
-#: methods/gpgv.cc:65
-#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Ni mogoèe razre¹iti '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-
-#: methods/gpgv.cc:204
+#: cmdline/apt-cache.cc:1721
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
+"Uporaba: apt-cache [mo¾nosti] ukaz\n"
+" apt-cache [mo¾nosti] add dat1 [dat2 ...]\n"
+" apt-cache [mo¾nosti] showpkg pak1 [pak2 ...]\n"
+" apt-cache [mo¾nosti] showsrc pak1 [pak2 ...]\n"
+"\n"
+"apt-cache je orodje za upravljanje binarnih datotek v APT-jevem\n"
+"pomnilniku in za pridobivanje informacij o njih\n"
+"\n"
+"Ukazi:\n"
+" add - Doda paketno datoteko v izvorni pomnilnik\n"
+" gencaches - Zgradi paket in izvorni pomnilnik\n"
+" showpkg - Prika¾e osnovne informacije o paketu\n"
+" showsrc - Prika¾e izvorne zapise\n"
+" stats - Prika¾e osnovno statistiko\n"
+" dump - Prika¾e celotno datoteko v jedrnati obliki\n"
+" dumpavail - Razpolo¾ljivo datoteko izpi¹e v stdout\n"
+" unmet - Prika¾e nere¹ene odvisnosti\n"
+" search - Poi¹èe vzorec v seznamu paketov\n"
+" show - Prika¾e berljiv zapis o paketu\n"
+" depends - Prika¾e grobe informacije o odvisnostih paketa\n"
+" rdepends - Prika¾e informacije o odvisnostih paketa za nazaj\n"
+" pkgnames - Prika¾e seznam vsem paketov\n"
+" dotty - Ustvari grafe paketov za GraphVis\n"
+" xvcg - Ustvari grafe paketov za xvcg\n"
+" policy - Prika¾e politiko nastavitev\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo.\n"
+" -p=? Pomnilnik paketov.\n"
+" -s=? Pomnilnik virov.\n"
+" -q Onemogoèi kazalec napredka.\n"
+" -i Prika¾e samo pomembne odvisnosti za nere¹en ukaz.\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
+"Za veè informacij si oglejte strani man apt-cache(8) in apt.conf(5).\n"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
msgstr ""
-#: methods/gpgv.cc:213
-#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+#: cmdline/apt-cdrom.cc:93
+#, fuzzy
+msgid "Please insert a Disc in the drive and press enter"
msgstr ""
+"Sprememba medija: vstavite disk z oznako\n"
+" '%s'\n"
+"v enoto '%s' in pritisnite enter\n"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
msgstr ""
-#: methods/gpgv.cc:249
-#, fuzzy
-msgid "The following signatures were invalid:\n"
-msgstr "Naslednji dodatni paketi bodo name¹èeni:"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenti niso v parih"
-#: methods/gpgv.cc:256
+#: cmdline/apt-config.cc:76
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Uporaba: apt-config [mo¾nosti] ukaz\n"
+"\n"
+"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n"
+"\n"
+"Ukazi:\n"
+" shell - Lupinski naèin\n"
+" dump - Prika¾e nastavitve\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo.\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:272
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Failed to stat %s"
-msgstr "Napaka pri postavitvi %s"
+msgid "%s not a valid DEB package."
+msgstr "%s ni veljaven paket DEB."
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Ni mogoèe odprti %s"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uporaba: apt-extracttemplates dat1 [dat2 ...]\n"
+"\n"
+"apt-extracttemplates je orodje za pridobivanje informacij o\n"
+"nastavitvah in predlogah debianovih paketov\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo\n"
+" -t Nastavi zaèasni imenik\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-#: methods/gzip.cc:109
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Read error from %s process"
-msgstr "Napaka pri branju iz procesa %s"
+msgid "Unable to write to %s"
+msgstr "Ni mogoèe pisati na %s"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Èakanje na glave"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Ni mogoèe ugotoviti razlièice debconfa. Je sploh name¹èen?"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Seznam raz¹iritev paketov je predolg"
+
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Dobljena je ena vrstica glave preko %u znakov"
+msgid "Error processing directory %s"
+msgstr "Napaka pri obdelavi imenika %s"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Napaèna vrstica glave"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Seznam raz¹iritev virov je predolg"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Stre¾nik HTTP je poslal napaèno glavo odgovora"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Stre¾nik HTTP je poslal glavo z napaèno dol¾ino vsebine"
-
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Stre¾nik HTTP je poslal glavo z napaènim obsegom vsebine"
-
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Ta stre¾nik HTTP ima pokvarjen obseg podpore"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Neznana oblika datuma"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Napaka pri pisanju glave v vsebinsko datoteko"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Izbira ni uspela"
+#: ftparchive/apt-ftparchive.cc:398
+#, c-format
+msgid "Error processing contents %s"
+msgstr "Napaka pri obdelavi vsebine %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Èas za povezavo se je iztekel"
+#: ftparchive/apt-ftparchive.cc:553
+#, fuzzy
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Uporaba: apt-ftparchive [mo¾nosti] ukaz\n"
+"Ukazi: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive ustvari kazalo Debianovih arhivov. Podpira ¹tevilne\n"
+"sloge ustvarjanja, od popolnoma samodejnih do enakovrednih zamenjav\n"
+"za dpkg-scanpackages in dpkg-scansources\n"
+"\n"
+"apt-ftparchive ustvari paketne datoteke z drevesa .deb-ov. Paketna\n"
+"datoteka hrani vsebino vseh nadzornih polj vsakega paketa in tudi\n"
+"razpr¹eno kodo MD5 ter velikost datoteke. Prekrivna datoteka\n"
+"lahko vsili vrednost Prioriteta in Odsek.\n"
+"\n"
+"Podobno apt-ftparchive ustvari tudi izvorne datoteke iz .dsc-jev.\n"
+"Mo¾nost --source-override lahko nastavi prekrivno datoteko.\n"
+"\n"
+"Ukaz 'paketi' in 'izvorne datoteke' se uporablja v korenu drevesa.\n"
+"BinarnaPot mora kazati na osnovo rekurzivnega iskanja, prekrivna\n"
+"datoteka pa naj vsebuje prekrivne zastavice. Predponapoti se\n"
+"doda poljem z imeni datotek, èe je podana. Primer uporabe iz\n"
+"Debianovega arhiva:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo\n"
+" --md5 Nadzoruje ustvarjanje MD5\n"
+" -s=? Prekrivna datoteka izvorne datoteke\n"
+" -q Tiho\n"
+" -d=? Izbere poljubno pomnilni¹ko zbirko\n"
+" --no-delink Omogoèi razhro¹èevalni naèin z razvezovanjem\n"
+" --contents Nadzoruje ustvarjanje vsebinskih datotek\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Napaka pri pisanju v izhodno datoteko"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Nobena izbira se ne ujema"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Napaka pri pisanju v datoteko"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Nekatere datoteke manjkajo v skupini paketnih datotek '%s'"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Napaka pri pisanju v datoteko"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "ZP je pokvarjena, datoteka je preimenovana v %s.old"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika "
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "ZP je stara, posku¹am nadgraditi %s"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Napaka pri branju s stre¾nika"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Napaèni podatki glave"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Ni mogoèe odprti datoteke ZP %s: %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Povezava ni uspela"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Napaka pri postavitvi %s"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Notranja napaka"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arhiv nima nadzornega zapisa"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "mmap prazne datoteke ni mogoè"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Ni mogoèe najti kazalca"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:76
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Ni mogoèe narediti mmap %lu bajtov"
+msgid "W: Unable to read directory %s\n"
+msgstr "O: ni mogoèe brati imenika %s\n"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:81
#, c-format
-msgid "Selection %s not found"
-msgstr "Izbira %s ni mogoèe najti"
+msgid "W: Unable to stat %s\n"
+msgstr "O: Ni mogoèe nastaviti %s\n"
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Ne-prepoznan tip okraj¹ave: '%c'"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: apt-pkg/contrib/configuration.cc:492
-#, c-format
-msgid "Opening configuration file %s"
-msgstr "Odpiranje nastavitvene datoteke %s"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "O: "
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Vrstica %d je predolga (najveè %d)"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "N: Napake se sklicujejo na datoteko"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Skladenjska napaka %s:%u: Blok se zaène brez imena."
+msgid "Failed to resolve %s"
+msgstr "Ni mogoèe razre¹iti %s"
-#: apt-pkg/contrib/configuration.cc:625
-#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Skladenjska napaka %s:%u: Nepravilna znaèka."
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Hoja drevesa ni uspela"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Skladenjska napaka %s:%u: Dodatno smetje za vrednostjo."
+msgid "Failed to open %s"
+msgstr "Ni mogoèe odprti %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnjem nivoju."
+msgid " DeLink %s [%s]\n"
+msgstr " RazVe¾i %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Skladenjska napaka %s:%u: Preveè ugnezdenih vkljuèitev."
+msgid "Failed to readlink %s"
+msgstr "Napaka pri branju povezave %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Skladenjska napaka %s:%u: Vkljuèen od tu."
+msgid "Failed to unlink %s"
+msgstr "Napaka pri odvezovanju %s"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Napaka pri povezovanju %s z %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Skladenjska napaka %s:%u: Dodatno smetje na koncu datoteke"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Dose¾ena meja RazVezovanja %sB.\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Ni mogoèe brati %s"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arhiv ni imel polja s paketom"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s ... Napaka!"
+msgid " %s has no override entry\n"
+msgstr " %s nima prekrivnega vnosa\n"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Narejeno"
+msgid " %s maintainer is %s not %s\n"
+msgstr " Vzdr¾evalec %s je %s in ne %s\n"
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Mo¾nost ukazne vrstice '%c' [iz %s] ni poznana."
+#: ftparchive/writer.cc:620
+#, fuzzy, c-format
+msgid " %s has no source override entry\n"
+msgstr " %s nima prekrivnega vnosa\n"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Ne razumem mo¾nosti ukazne vrstice %s"
+#: ftparchive/writer.cc:624
+#, fuzzy, c-format
+msgid " %s has no binary override entry either\n"
+msgstr " %s nima prekrivnega vnosa\n"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Mo¾nost ukazne vrstice %s ni boolean"
+msgid "Internal error, could not locate member %s"
+msgstr "Notranja napaka. Ni mogoèe najti èlana %s."
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Mo¾nost %s zahteva argument."
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Napaka pri dodeljevanju prostora"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "Mo¾nost %s: Podrobnosti predmeta za nastavitve potrebujejo =<val>."
+msgid "Unable to open %s"
+msgstr "Ne morem odpreti %s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Mo¾nost %s zahteva celo¹tevilski argument, ne '%s'"
+msgid "Malformed override %s line %lu #1"
+msgstr "Napaèno prekrivanje %s vrstica %lu #1"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Mo¾nost '%s' je predolga"
+msgid "Malformed override %s line %lu #2"
+msgstr "Napaèno prekrivanje %s vrstica %lu #2"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Pomena %s ni mogoèe razumeti, poskusite pravilno ali napaèno."
+msgid "Malformed override %s line %lu #3"
+msgstr "Napaèno prekrivanje %s vrstica %lu #3"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Invalid operation %s"
-msgstr "Napaèna operacija %s"
+msgid "Failed to read the override file %s"
+msgstr "Napaka pri branju prekrite datoteke %s"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Ni mogoèe doloèiti priklopne toèke %s"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Neznan algoritem stiskanja '%s'"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Unable to change to %s"
-msgstr "Ni mogoèe spremeniti v %s"
+msgid "Compressed output %s needs a compression set"
+msgstr "Stisnjen izhod %s potrebuje niz stiskanja"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Ni mogoèe doloèiti CD-ROM-a"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Ustvarjanje pipe IPC podprocesa ni uspelo"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko samo za branje %s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Ustvarjanje DATOTEKE* ni uspelo"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Ni mogoèe odprti zaklenjene datoteke %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Vejitev ni uspela"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Otrok stiskanja"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Could not get lock %s"
-msgstr "Ni mogoèe dobiti zaklenjene datoteke %s"
+msgid "Internal error, failed to create %s"
+msgstr "Notranja napaka. Ni mogoèe ustvariti %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Èakal, a %s ni bil tam"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Ni mogoèe ustvariti podprocesa IPD"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Napaka pri razèlenjenosti podprocesa %s."
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Ni mogoèe izvesti stiskanja"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Podproces %s je vrnil kodo napake (%u)"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "program za dekompresijo"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Podproces %s se je neprièakovano zakljuèil"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO podprocesa/datoteke je spodletel"
-#: apt-pkg/contrib/fileutl.cc:436
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Med raèunanjem MD5 ni mogoèe brati"
+
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not open file %s"
-msgstr "Ne morem odpreti datoteke %s"
+msgid "Problem unlinking %s"
+msgstr "Napaka pri odvezovanju %s"
-#: apt-pkg/contrib/fileutl.cc:492
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "berem, ¹e vedno %lu za branje, a nobeden ostal"
+msgid "Failed to rename %s to %s"
+msgstr "Ni mogoèe preimenovati %s v %s"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "pi¹em, ¹e vedno %lu za pisanje, a ni mogoèe"
+msgid "Regex compilation error - %s"
+msgstr "Napaka pri prevajanju regex - %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Te¾ava pri zapiranju datoteke"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Naslednji paketi imajo nere¹ene odvisnosti:"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Te¾ava pri odvezovanju datoteke"
+#: cmdline/apt-get.cc:331
+#, c-format
+msgid "but %s is installed"
+msgstr "vendar je paket %s name¹èen"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Te¾ava pri usklajevanju datoteke"
+#: cmdline/apt-get.cc:333
+#, c-format
+msgid "but %s is to be installed"
+msgstr "vendar bo paket %s name¹èen"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Prazen predpomnilnik paketov"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "vendar se ga ne da namestiti"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Datoteka s predpomnilnikom paketov je pokvarjena"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "vendar je navidezen paket"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Razlièica datoteke s predpomnilnikom paketov ni ustrezna"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "vendar ni name¹èen"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Ta APT ne podpira sistema razlièic '%s'"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "vendar ne bo name¹èen"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Predpomnilnik paketov je bil zgrajen za drugaèno arhitekturo"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " ali"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Odvisen od"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Naslednji NOVI paketi bodo name¹èeni:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Predodvisnost"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Naslednji novi paketi bodo ODSTRANJENI:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Priporoèa"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Naslednji paketi so bili zadr¾ani:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Priporoèa"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Naslednji paketi bodo nadgrajeni:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "V sporu z"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Naslednji paketi bodo POSTARANI:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Zamenja"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Naslednji zadr¾ani paketi bodo spremenjeni:"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Zastarani"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (zaradi %s) "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:550
+#, 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 ""
+"OPOZORILO: Naslednji kljuèni paketi bodo odstranjeni.\n"
+"To NI priporoèljivo, razen èe natanèno veste, kaj poènete."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "pomembno"
-
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "obvezno"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu nadgrajenih, %lu na novo name¹èenih, "
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standardno"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu posodobljenih, "
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "izbirno"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu postaranih, "
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "dodatno"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Gradnja drevesa odvisnosti"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ne popolnoma name¹èenih ali odstranjenih.\n"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Razlièice kandidatov"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Popravljanje odvisnosti ..."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Ustvarjanje odvisnosti"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " spodletelo."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Spajanje informacij na voljo"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Ni mogoèe popraviti odvisnosti"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Ni mogoèe odprti %s"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ni mogoèe pomanj¹ati zbirke za nadgradnjo"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Napaka pri pisanju datoteke %s"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Opravljeno"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Ni mogoèe razèleniti paketne datoteke %s (1)"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Èe ¾elite popraviti napake, poskusite pognati 'apt-get -f install'."
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Ni mogoèe razèleniti paketne datoteke %s (2)"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Nere¹ene odvisnosti. Poskusite uporabiti -f."
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Napaèna vrstica %lu v seznamu virov %s (URI)"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "POZORO: Naslednjih paketov ni bilo mogoèe avtenticirati!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Napaèna vrstica %lu v seznamu virov %s (distribucija)"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr ""
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev URI)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Namestim te pakete brez prevejanje [y/N]? "
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Napaèna vrstica %lu v seznamu virov %s (absolutna distribucija)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Nisem uspel avtenticirati nekaterih paketkov"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev distribucije)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+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-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "Odpiram %s"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Vrstica %u v seznamu virov %s je predolga."
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogoèeno."
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Napaèna vrstica %u v seznamu virov %s (vrsta)"
+#: cmdline/apt-get.cc:793
+#, fuzzy
+msgid "Internal error, Ordering didn't finish"
+msgstr "Notranja napaka pri dodajanju odklona"
-#: apt-pkg/sourcelist.cc:240
-#, fuzzy, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Ni mogoèe zakleniti imenika za prenose"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
-#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Napaèna vrstica %u v seznamu virov %s (ID ponudnika)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Seznama virov ni mogoèe brati."
-#: apt-pkg/packagemanager.cc:399
-#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Ta krog namestitve zahteva zaèasno odstranitev kljuènega paketa %s zaradi "
-"zanke spora/predodvisnosti. To je ponavadi slabo, toda èe zares ¾elite "
-"odstranitev, vkljuèite mo¾nost APT::Force-LoopBreak."
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Vrsta datoteke s kazalom '%s' ni podprta"
-
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:839
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Paket %s mora biti ponovno name¹èen, vendar ne morem najti arhiva zanj."
-
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Napaka. pkgProblemResolver::Napake pri razre¹itvi, ki so jih morda "
-"povzroèili zadr¾ani paketi."
-
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Ni mogoèe popraviti te¾av. Imate zadr¾ane pakete."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Manjka imenik s seznami %spartial."
+msgid "Need to get %sB of archives.\n"
+msgstr "Potrebno je dobiti %sB arhivov.\n"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Manjka imenik z arhivi %spartial."
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Po odpakiranju bo uporabljenega %sB dodatnega prostora na disku.\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr ""
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Po odpakiranju bo spro¹èenega %sB prostora na disku.\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Branje seznama datotek"
+msgid "Couldn't determine free space in %s"
+msgstr "Nimate dovolj prostora na %s"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ni mogoèe najti gonilnika metod %s."
+msgid "You don't have enough free space in %s."
+msgstr "V %s je premalo prostora."
-#: apt-pkg/acquire-worker.cc:159
-#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoda %s se ni zaèela pravilno"
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Izbrana je mo¾nost Samo preprosto, a to opravilo ni preprosto."
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Da, naredi tako kot pravim!"
+
+#: cmdline/apt-get.cc:891
#, fuzzy, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Sprememba medija: vstavite disk z oznako\n"
-" '%s'\n"
-"v enoto '%s' in pritisnite enter\n"
+"Obstaja mo¾nost, da po¹kodujete va¹ sistem.\n"
+"Za nadaljevanje vnesite frazo '%s'\n"
+" ?] "
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Paketni sistem '%s' ni podprt"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Prekini."
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Ni mogoèe ugotoviti ustrezne vrste paketnega sistema"
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Ali ¾elite nadaljevati [Y/n]? "
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Unable to stat %s."
-msgstr "Ni mogoèe doloèiti %s."
+msgid "Failed to fetch %s %s\n"
+msgstr "Ni mogoèe dobiti %s %s\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "V sources.list morate vstaviti URI-je z viri"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Prenos nekaterih datotek ni uspel"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Seznama virov ni mogoèe brati."
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Prenos dokonèan in uporabljen naèin samo prenos"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Ni mogoèe odprti ali razèleniti seznama paketov ali datoteke stanja."
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Nekaterih arhivov ni mogoèe dobiti. Poskusite uporabiti apt-get update ali --"
+"fix-missing."
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Èe ¾elite odpraviti te¾ave, poskusite zagnati apt-get update."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Napaèen zapis v datoteki z nastavitvami. Ni glave paketa"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Ni mogoèe popraviti manjkajoèih paketov."
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Ni mogoèe razumeti vrste zaponke %s"
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Prekinjanje namestitve."
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Prioriteta zaponke ni doloèena ali pa je niè."
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Predpomnilnik ima neustrezen sistem razlièic"
-
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nov paket)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Opomba: izbran %s namesto %s \n"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "%s preskoèen, ker je ¾e name¹èen in ne potrebuje nadgradnje.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 2)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Paket %s ni name¹èen, zato ni odstranjen\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Paket %s je navidezen in ga je priskrbel:\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 1)"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Name¹èeno]"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 3)"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Sami izberite paket, ki ga ¾elite namestiti."
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 2)"
-
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
-
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Uau, presegli ste ¹tevilo imen paketov, ki jih zmore APT."
-
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
-
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
+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 nek drug paket nana¹a nanj.\n"
+"To ponavadi pomeni, da paket manjka, je zastaran ali\n"
+"pa je na voljo samo iz drugega vira.\n"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Uau, presegli ste ¹tevilo odvisnosti, ki jih zmore APT."
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Kakorkoli, naslednji paketi ga nadomestijo:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Najdi paket)"
+msgid "Package %s has no installation candidate"
+msgstr "Paket %s nima kandidata za namestitev"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Pri¹lo je do napake pri obdelavi %s (Zberi dobavitelje datotek)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Ponovna namestitev %s ni mo¾na, ker ni mo¾en prenos.\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Paketa %s %s ni bilo mogoèe najti med obdelavo odvisnosti"
+msgid "%s is already the newest version.\n"
+msgstr "Najnovej¹a razlièica %s je ¾e name¹èena.\n"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Ni mogoèe doloèiti seznama izvornih paketov %s"
-
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Branje seznama paketov"
-
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Zbiranje dobaviteljev datotek"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Izdaje '%s' za '%s' ni mogoèe najti"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to write to %s"
-msgstr "Ni mogoèe pisati na %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Napaka IO pri shranjevanju predpomnilnika virov"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Razlièice '%s' za '%s' ni mogoèe najti"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "preimenovanje spodletelo, %s (%s -> %s)."
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Izbrana razlièica %s (%s) za %s\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Neujemanje vsote MD5"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Ukaz update ne potrebuje argumentov"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Neujemanje vsote MD5"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Imenika seznamov ni mogoèe zakleniti"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
+"Nekaterih kazal ni mogoèe prenesti, zato so preklicana, ali pa so "
+"uporabljena starej¹a."
-#: apt-pkg/acquire-item.cc:1204
-#, 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)"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
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:1263
-#, c-format
+#: cmdline/apt-get.cc:1473
+#, fuzzy
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Naslednji NOVI paketi bodo name¹èeni:"
+
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
msgstr ""
-"Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno "
-"popraviti ta paket."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1480
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje alu paket "
-"%s."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Neujemanje velikosti"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Naslednji podatki vam bodo morda pomagali re¹iti te¾avo:"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Ponudnikov blok %s ne vsebuje podpisa"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Notranja napaka zaradi AllUpgrade."
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Uporabljam CD-ROM priklopno toèko %s\n"
-"Priklapljam CD-ROM\n"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Notranja napaka zaradi AllUpgrade."
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identificiram.."
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Ni mogoèe najti paketa %s"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Shranjena oznaka: %s \n"
+msgid "Couldn't find package %s"
+msgstr "Ni mogoèe najti paketa %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Uporabljam CD-ROM priklopno toèko %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Odklapljam CD-ROM\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Èakam na medij...\n"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Opomba: izbran %s namesto regex '%s'\n"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Priklapljam CD-ROM...\n"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "vendar bo paket %s name¹èen"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Preverjam medij za datoteke s kazalom..\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Poskusite zagnati 'apt-get -f install', èe ¾elite popraviti:"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
+#: cmdline/apt-get.cc:1738
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Na¹el sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Shranjena oznaka: %s \n"
+"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 "
+"podajte re¹itev)."
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "To ni veljavno ime, poskusite ¹e enkrat.\n"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"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, da nekateri zahtevani "
+"paketi ¹e niso ustvarjeni ali prene¹eni iz Prihajajoèe."
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Ta medij se imenuje: \n"
-"'%s'\n"
+"Ker ste zahtevali samo eno opravilo, je zelo verjetno, da se paketa\n"
+"preprosto ne da namestiti in je potrebno vlo¾iti poroèilo o hro¹èu\n"
+"o tem paketu."
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopiranje seznama paketov..."
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Pokvarjeni paketi"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Pi¹em nov seznam virov\n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Naslednji dodatni paketi bodo name¹èeni:"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Izvorni vnosi za ta medij so:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Odklapljam CD-ROM..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Zapisal %i zapisov.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Zapisal %i zapisov z %i manjkajoèimi datotekami.\n"
-
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Zapisal %i zapisov z %i neujemajoèimi datotekami.\n"
-
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Zapisal %i zapisov z %i manjkajoèimi datotekami in %i neujemajoèimi "
-"datotekami.\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Manjka imenik s seznami %spartial."
-
-#: apt-pkg/deb/dpkgpm.cc:572
-#, fuzzy, c-format
-msgid "Preparing %s"
-msgstr "Odpiram %s"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Predlagani paketi:"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, fuzzy, c-format
-msgid "Unpacking %s"
-msgstr "Odpiram %s"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Priporoèeni paketi:"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, fuzzy, c-format
-msgid "Preparing to configure %s"
-msgstr "Odpiranje nastavitvene datoteke %s"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Preraèunavanje nadgradnje ... "
-#: apt-pkg/deb/dpkgpm.cc:579
-#, fuzzy, c-format
-msgid "Configuring %s"
-msgstr "Povezujem se z %s"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Spodletelo"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Napaka pri obdelavi imenika %s"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Opravljeno"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, fuzzy, c-format
-msgid "Installed %s"
-msgstr " Name¹èen: "
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+#, fuzzy
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Notranja napaka zaradi AllUpgrade."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
+"Potrebno je navesti vsaj en paket, za katerega ¾elite dobiti izorno kodo"
-#: apt-pkg/deb/dpkgpm.cc:594
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Odpiram %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, fuzzy, c-format
-msgid "Removed %s"
-msgstr "Priporoèa"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, fuzzy, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Odpiranje nastavitvene datoteke %s"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Izvornega paketa za %s ni mogoèe najti"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/apt-get.cc:2175
#, fuzzy, c-format
-msgid "Completely removed %s"
-msgstr "Odstranitev %s ni uspela"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-#, fuzzy
-msgid "Could not patch file"
-msgstr "Ne morem odpreti datoteke %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Ustvarjanje pipe IPC podprocesa ni uspelo"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Povezava se je prezgodaj zaprla"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Ni mogoèe ustvariti pip"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Ni mogoèe izvesti gzip"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Pokvarjen arhiv"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Kontrolna vsota tar ni uspela, arhiv je pokvarjen"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Neznan tip glave TAR %u, èlan %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Napaèen podpis arhiva"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Napaka pri branju glave èlana arhiva"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Napaèna glava èlana arhiva"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Arhiv je prekratek"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Glav arhiva ni mogoèe brati"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "DropNode je poklical stabilno povezano vozli¹èe"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Ni mogoèe najti razpr¹enega elementa!"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Ni mogoèe dodeliti odklona"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Notranja napaka v AddDiversion"
+msgid "You don't have enough free space in %s"
+msgstr "Nimate dovolj prostora na %s"
-#: apt-inst/filelist.cc:477
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Posku¹am prepisati odklon, %s -> %s in %s/%s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n"
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Dvojni se¹tevek odklona %s -> %s"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Potrebno je dobiti %sB izvornih arhivov.\n"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Dvojnik datoteke z nastavitvami %s/%s"
+msgid "Fetch source %s\n"
+msgstr "Dobi vir %s\n"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
-#, fuzzy, c-format
-msgid "Failed to write file %s"
-msgstr "Napaka pri pisanju datoteke %s"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Nekaterih arhivov ni mogoèe dobiti."
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Failed to close file %s"
-msgstr "Napaka pri zapiranju datoteke %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "The path %s is too long"
-msgstr "Pot %s je predolga"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Ukaz odpakiranja '%s' ni uspel.\n"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "Odpakiranje %s veè kot enkrat"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr ""
-#: apt-inst/extract.cc:134
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "The directory %s is diverted"
-msgstr "Imenik %s je odklonjen"
+msgid "Build command '%s' failed.\n"
+msgstr "Ukaz gradnje '%s' ni uspel.\n"
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Paket posku¹a pisati v tarèo odklona %s/%s"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Otro¹ki proces ni uspel"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Pot odklona je predloga"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr ""
+"Potrebno je navesti vsaj en paket, za katerega ¾elite preveriti odvisnosti "
+"za gradnjo"
-#: apt-inst/extract.cc:185
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Ni mogoèe preimenovati %s v %s"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Ni mogoèe dobiti informacij o odvisnostih za gradnjo za %s"
-#: apt-inst/extract.cc:240
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Imenik %s je bil zamenjan z ne-imenikom"
-
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Iskanje vozli¹èa v njegovem razpr¹enem vedru ni uspelo"
+msgid "%s has no build depends.\n"
+msgstr "%s nima odvisnosti za gradnjo.\n"
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Pot je predolga"
+#: cmdline/apt-get.cc:2442
+#, 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"
-#: apt-inst/extract.cc:414
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Prepi¹i zadetek paketa brez vnosa razlièice za %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s odvisnosti za %s ni mogoèe zadostiti, ker nobena razlièica paketa %s ne "
+"more zadostiti zahtevi po razlièici"
-#: apt-inst/extract.cc:431
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Ni mogoèe zadostiti %s odvisnosti za %s. Name¹èen paket %s je preveè nov"
-#: apt-inst/extract.cc:491
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Unable to stat %s"
-msgstr "Ni mogoèe doloèiti %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Ni mogoèe zadostiti %s odvisnosti za %s. %s"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Failed to remove %s"
-msgstr "Odstranitev %s ni uspela"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Odvisnostim za gradnjo %s ni mogoèe zadostiti."
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Ni mogoèe ustvariti %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Obdelava odvisnosti za gradnjo ni uspela"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Doloèitev %sinfo ni uspela"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Podprti moduli:"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr "Podatki in zaèasni imeniki morajo biti v istem datoteènem sistemu"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Uporaba: apt-get [mo¾nosti] ukaz\n"
+" apt-get [mo¾nosti] install|remove pak1 [pak2 ...]\n"
+" apt-get [mo¾nosti] source pak1 [pak2 ...]\n"
+"\n"
+"apt-get je preprost vmesnik ukazne vrstice za prena¹anje in\n"
+"name¹èanje paketov. Najpogosteje uporabljena ukaza sta update\n"
+"in install.\n"
+"\n"
+"Ukazi:\n"
+" update - Posodobi seznam paketov\n"
+" upgrade - Izvedi nadgradnjo\n"
+" install - Namesti nove pakete (pak je libc6 in ne libc6.deb)\n"
+" remove - Odstrani pakete\n"
+" source - Prenesi izvorne arhive\n"
+" build-dep - Nastavi odvisnosti za gradnjo za izvorne pakete\n"
+" dist-upgrade - Nadgradnja distribucije, glejte apt-get(8)\n"
+" dselect-upgrade - Sledi izbiram dselecta\n"
+" clean - Odstrani prene¹ene datoteke z arhivi\n"
+" autoclean - Odstrani stare prene¹ene datoteke z arhivi\n"
+" check - Preveri, da ni nobene pokvarjene odvisnosti\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo.\n"
+" -q Dnevni¹ki izpis - brez kazalca napredka\n"
+" -qq Brez izpisa, razen napak\n"
+" -d Samo prenos - NE namesti in odpakira arhivov\n"
+" -s Brez dejanj. Izvede simulacijo urejanja\n"
+" -y Privzame Da za vse poizvedbe in ne spra¹uje\n"
+" -f Poskusi nadaljevati, èe preskus celovitosti spodleti\n"
+" -m Poskusi nadaljevati, èe ni mogoèe najti arhivov\n"
+" -u Prika¾e tudi seznam nadgrajenih paketov\n"
+" -b Ko dobi izvoren paket, ga zgradi\n"
+" -V Prika¾e podrobne ¹tevilke razlièic\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
+"Za veè informacij in mo¾nosti si oglejte strani man apt-get(8),\n"
+"sources.list(5) in apt.conf(5).\n"
+" APT ima moè Super Krave.\n"
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Premik v skrbnikov imenik %sinfo ni uspel"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Zadetek "
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Notranja napaka pri sprejemanju imena paketa"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Dobi:"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Branje seznama datotek"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Prz "
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
-msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
-msgstr ""
-"Odpiranje datoteke s seznamom '%sinfo/%s' ni uspelo. Èe ne morete povrniti "
-"datoteke, jo izpraznite in takoj ponovno namestite enako razlièico paketa!"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Nap "
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Branje datoteke s seznamom %sinfo/%s ni uspelo"
-
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Notranja napaka pri sprejemanju vozli¹èa"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Dobljenih %sB v %s (%sB/s)\n"
-#: apt-inst/deb/dpkgdb.cc:305
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Odpiranje datoteke z odklonom %sdiversions ni uspelo"
-
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Datoteka z odklonom je pokvarjena"
+msgid " [Working]"
+msgstr " [Delam]"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Napaèna vrstica v datoteki z odklonom: %s"
+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 enter\n"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Notranja napaka pri dodajanju odklona"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Neznan zapis paketa!"
-#: apt-inst/deb/dpkgdb.cc:379
-msgid "The pkg cache must be initialized first"
-msgstr "Najprej se mora izvesti predpomnilnik paketov"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Uporaba: apt-sortpkgs [mo¾nosti] dat1 [dat2 ...]\n"
+"\n"
+"apt-sortpkgs je preprosto orodje za razvr¹èanje paketnih datotek. Mo¾nost -"
+"s\n"
+"doloèa vrsto datoteke.\n"
+"\n"
+"Mo¾nosti:\n"
+" -h To besedilo\n"
+" -s Uporabi razvr¹èanje izvornih datotek\n"
+" -c=? Prebere podano datoteko z nastavitvami\n"
+" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:439
-#, c-format
-msgid "Failed to find a Package: header, offset %lu"
-msgstr "Napaka pri iskanju paketa: glava, odmik %lu"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Napaèna privzeta nastavitev!"
-#: apt-inst/deb/dpkgdb.cc:461
-#, c-format
-msgid "Bad ConfFile section in the status file. Offset %lu"
-msgstr "Napaèna izbira ConfFile v datoteki stanja. Odmik %lu"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Za nadaljevanje pritisnite enter."
-#: apt-inst/deb/dpkgdb.cc:466
-#, c-format
-msgid "Error parsing MD5. Offset %lu"
-msgstr "Napaka pri razèlenjevanju MD5. Odmik %lu"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Med odpakiranjem je pri¹lo do napak. Nastavil bom"
-#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
-#, c-format
-msgid "This is not a valid DEB archive, missing '%s' member"
-msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s'."
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "pakete, ki so bili name¹èeni. To lahko privede do dvojnih napak"
-#: apt-inst/deb/debfile.cc:50
-#, fuzzy, c-format
-msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
-msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s' ali '%s'."
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"ali do napak zaradi manjkajoèih odvisnosti. To je v redu, pomembne so samo "
+"napake"
-#: apt-inst/deb/debfile.cc:110
-#, c-format
-msgid "Couldn't change to %s"
-msgstr "Ni mogoèe spremeniti v %s"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "nad tem sporoèilom. Popravite jih in po¾enite Namest[I]tev ¹e enkrat"
-#: apt-inst/deb/debfile.cc:140
-msgid "Internal error, could not locate member"
-msgstr "Notranja napaka. Ni mogoèe najti èlana."
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Spajanje informacij na voljo"
-#: apt-inst/deb/debfile.cc:173
-msgid "Failed to locate a valid control file"
-msgstr "Ni mogoèe najti veljavne nadzorne datoteka"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Ni mogoèe ustvariti pip"
-#: apt-inst/deb/debfile.cc:258
-msgid "Unparsable control file"
-msgstr "Nadzorne datoteke ni mogoèe razèleniti"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Ni mogoèe izvesti gzip"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Paket %s razlièica %s ima nere¹ene odvisnosti:\n"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Pokvarjen arhiv"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Kontrolna vsota tar ni uspela, arhiv je pokvarjen"
+
+#: apt-inst/contrib/extracttar.cc:296
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Ne najdem paketa %s"
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Neznan tip glave TAR %u, èlan %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Vseh imen paketov:"
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Napaèen podpis arhiva"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Navadni paketi:"
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Napaka pri branju glave èlana arhiva"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Èisti navidezni paketi:"
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Napaèna glava èlana arhiva"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Posamezni navidezni paketi:"
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Arhiv je prekratek"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Me¹ani navidezni paketi:"
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Glav arhiva ni mogoèe brati"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Manjka: "
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "DropNode je poklical stabilno povezano vozli¹èe"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Vseh razlièic:"
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Ni mogoèe najti razpr¹enega elementa!"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Vseh razlièic:"
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Ni mogoèe dodeliti odklona"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Vseh odvisnosti:"
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Notranja napaka v AddDiversion"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Vseh povezava Raz/Dat:"
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Posku¹am prepisati odklon, %s -> %s in %s/%s"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Vseh povezava Raz/Dat:"
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Dvojni se¹tevek odklona %s -> %s"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Vseh dobljenih preslikav: "
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Dvojnik datoteke z nastavitvami %s/%s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Vseh raz¹irjenih nizov: "
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, fuzzy, c-format
+msgid "Failed to write file %s"
+msgstr "Napaka pri pisanju datoteke %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Celotna velikost z odvisnostmi: "
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Napaka pri zapiranju datoteke %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Celotna ohlapna velikost: "
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Pot %s je predolga"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Celotna velikost, izraèunana za: "
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Odpakiranje %s veè kot enkrat"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: apt-inst/extract.cc:134
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Paketna datoteka %s ni usklajena."
+msgid "The directory %s is diverted"
+msgstr "Imenik %s je odklonjen"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Podati morate natanèno en vzorec"
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Paket posku¹a pisati v tarèo odklona %s/%s"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Nobena datoteka ni bila najdena"
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Pot odklona je predloga"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Paketne datoteke:"
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Imenik %s je bil zamenjan z ne-imenikom"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Predpomnilnik ni usklajen, x-ref paketne datotek ni mogoè"
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Iskanje vozli¹èa v njegovem razpr¹enem vedru ni uspelo"
-#: cmdline/apt-cache.cc:1532
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Pot je predolga"
+
+#: apt-inst/extract.cc:414
#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+msgid "Overwrite package match with no version for %s"
+msgstr "Prepi¹i zadetek paketa brez vnosa razlièice za %s"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Pripeti paketi:"
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ni najden)"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Ni mogoèe brati %s"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Name¹èen: "
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Ni mogoèe doloèiti %s"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(brez)"
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Odstranitev %s ni uspela"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidat:"
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Ni mogoèe ustvariti %s"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Zaponka paketa:"
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Doloèitev %sinfo ni uspela"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Tabela razlièic:"
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr "Podatki in zaèasni imeniki morajo biti v istem datoteènem sistemu"
-#: cmdline/apt-cache.cc:1618
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Branje seznama paketov"
+
+#: apt-inst/deb/dpkgdb.cc:176
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Premik v skrbnikov imenik %sinfo ni uspel"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s za %s %s preveden na %s %s\n"
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Notranja napaka pri sprejemanju imena paketa"
-#: cmdline/apt-cache.cc:1721
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Branje seznama datotek"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
msgstr ""
-"Uporaba: apt-cache [mo¾nosti] ukaz\n"
-" apt-cache [mo¾nosti] add dat1 [dat2 ...]\n"
-" apt-cache [mo¾nosti] showpkg pak1 [pak2 ...]\n"
-" apt-cache [mo¾nosti] showsrc pak1 [pak2 ...]\n"
-"\n"
-"apt-cache je orodje za upravljanje binarnih datotek v APT-jevem\n"
-"pomnilniku in za pridobivanje informacij o njih\n"
-"\n"
-"Ukazi:\n"
-" add - Doda paketno datoteko v izvorni pomnilnik\n"
-" gencaches - Zgradi paket in izvorni pomnilnik\n"
-" showpkg - Prika¾e osnovne informacije o paketu\n"
-" showsrc - Prika¾e izvorne zapise\n"
-" stats - Prika¾e osnovno statistiko\n"
-" dump - Prika¾e celotno datoteko v jedrnati obliki\n"
-" dumpavail - Razpolo¾ljivo datoteko izpi¹e v stdout\n"
-" unmet - Prika¾e nere¹ene odvisnosti\n"
-" search - Poi¹èe vzorec v seznamu paketov\n"
-" show - Prika¾e berljiv zapis o paketu\n"
-" depends - Prika¾e grobe informacije o odvisnostih paketa\n"
-" rdepends - Prika¾e informacije o odvisnostih paketa za nazaj\n"
-" pkgnames - Prika¾e seznam vsem paketov\n"
-" dotty - Ustvari grafe paketov za GraphVis\n"
-" xvcg - Ustvari grafe paketov za xvcg\n"
-" policy - Prika¾e politiko nastavitev\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo.\n"
-" -p=? Pomnilnik paketov.\n"
-" -s=? Pomnilnik virov.\n"
-" -q Onemogoèi kazalec napredka.\n"
-" -i Prika¾e samo pomembne odvisnosti za nere¹en ukaz.\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-"Za veè informacij si oglejte strani man apt-cache(8) in apt.conf(5).\n"
+"Odpiranje datoteke s seznamom '%sinfo/%s' ni uspelo. Èe ne morete povrniti "
+"datoteke, jo izpraznite in takoj ponovno namestite enako razlièico paketa!"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr ""
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Branje datoteke s seznamom %sinfo/%s ni uspelo"
-#: cmdline/apt-cdrom.cc:93
-#, fuzzy
-msgid "Please insert a Disc in the drive and press enter"
-msgstr ""
-"Sprememba medija: vstavite disk z oznako\n"
-" '%s'\n"
-"v enoto '%s' in pritisnite enter\n"
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Notranja napaka pri sprejemanju vozli¹èa"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr ""
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Odpiranje datoteke z odklonom %sdiversions ni uspelo"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenti niso v parih"
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Datoteka z odklonom je pokvarjena"
-#: cmdline/apt-config.cc:76
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Napaèna vrstica v datoteki z odklonom: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Notranja napaka pri dodajanju odklona"
+
+#: apt-inst/deb/dpkgdb.cc:379
+msgid "The pkg cache must be initialized first"
+msgstr "Najprej se mora izvesti predpomnilnik paketov"
+
+#: apt-inst/deb/dpkgdb.cc:439
+#, c-format
+msgid "Failed to find a Package: header, offset %lu"
+msgstr "Napaka pri iskanju paketa: glava, odmik %lu"
+
+#: apt-inst/deb/dpkgdb.cc:461
+#, c-format
+msgid "Bad ConfFile section in the status file. Offset %lu"
+msgstr "Napaèna izbira ConfFile v datoteki stanja. Odmik %lu"
+
+#: apt-inst/deb/dpkgdb.cc:466
+#, c-format
+msgid "Error parsing MD5. Offset %lu"
+msgstr "Napaka pri razèlenjevanju MD5. Odmik %lu"
+
+#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
+#, c-format
+msgid "This is not a valid DEB archive, missing '%s' member"
+msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s'."
+
+#: apt-inst/deb/debfile.cc:50
+#, fuzzy, c-format
+msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
+msgstr "To ni veljaven arhiv DEB. Manjka èlan '%s' ali '%s'."
+
+#: apt-inst/deb/debfile.cc:110
+#, c-format
+msgid "Couldn't change to %s"
+msgstr "Ni mogoèe spremeniti v %s"
+
+#: apt-inst/deb/debfile.cc:140
+msgid "Internal error, could not locate member"
+msgstr "Notranja napaka. Ni mogoèe najti èlana."
+
+#: apt-inst/deb/debfile.cc:173
+msgid "Failed to locate a valid control file"
+msgstr "Ni mogoèe najti veljavne nadzorne datoteka"
+
+#: apt-inst/deb/debfile.cc:258
+msgid "Unparsable control file"
+msgstr "Nadzorne datoteke ni mogoèe razèleniti"
+
+#: methods/cdrom.cc:114
+#, c-format
+msgid "Unable to read the cdrom database %s"
+msgstr "Ni mogoèe brati zbirke %s na CD-ROM-u"
+
+#: methods/cdrom.cc:123
msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
msgstr ""
-"Uporaba: apt-config [mo¾nosti] ukaz\n"
-"\n"
-"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n"
-"\n"
-"Ukazi:\n"
-" shell - Lupinski naèin\n"
-" dump - Prika¾e nastavitve\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo.\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
+"Uporabite apt-cdrom, èe ¾elite, da APT prepozna CD. apt-get update ne more "
+"sam dodati novih CD-jev"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Napaèen C"
+
+#: methods/cdrom.cc:166
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ni veljaven paket DEB."
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Ni mogoèe odklopiti CD-ROM-a v %s, ker je morda ¹e v uporabi."
-#: cmdline/apt-extracttemplates.cc:232
+#: methods/cdrom.cc:171
+#, fuzzy
+msgid "Disk not found."
+msgstr "Datoteke ni mogoèe najti"
+
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Datoteke ni mogoèe najti"
+
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Doloèitev ni uspela"
+
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Nastavitev èasa spremembe ni uspela"
+
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Napaèen URI. Lokalni URI-ji se morajo zaèeti z /"
+
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Prijavljam se"
+
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Ni mogoèe ugotoviti imena gostitelja"
+
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Ni mogoèe ugotoviti lokalnega imena"
+
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Stre¾nik je zavrnil na¹o povezavo in sporoèil: %s"
+
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER ni uspel, stre¾nik je odgovoril: %s"
+
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS ni uspel, stre¾nik je odgovoril: %s"
+
+#: methods/ftp.cc:237
msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
msgstr ""
-"Uporaba: apt-extracttemplates dat1 [dat2 ...]\n"
-"\n"
-"apt-extracttemplates je orodje za pridobivanje informacij o\n"
-"nastavitvah in predlogah debianovih paketov\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo\n"
-" -t Nastavi zaèasni imenik\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
+"Naveden je bil proxy-stre¾nik, ne pa tudi prijavna skripta. Acquire::ftp::"
+"ProxyLogin je prazen."
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Ni mogoèe ugotoviti razlièice debconfa. Je sploh name¹èen?"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Ukaz prijavne skripte '%s' ni uspel, stre¾nik je odgovoril: %s"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Seznam raz¹iritev paketov je predolg"
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE ni uspel, stre¾nik je odgovoril: %s"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Povezava potekla"
+
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Stre¾nik je zaprl povezavo"
+
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Napaka pri branju"
+
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Odgovor je prekoraèil vmesnik."
+
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Okvara protokola"
+
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Napaka pri pisanju"
+
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Ni mogoèe ustvariti vtiènice"
+
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Ni mogoèe priklopiti podatkovne vtiènice. Povezava potekla."
+
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Ni mogoèe priklopiti pasivne vtiènice."
+
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo ni mogel dobiti poslu¹ajoèe vtiènice"
+
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Ni mogoèe povezati vtiènice"
+
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Ni mogoèe poslu¹ati na vtiènici"
+
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Ni mogoèe ugotoviti imena vtiènice"
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Ni mogoèe poslati ukaza PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid "Error processing directory %s"
-msgstr "Napaka pri obdelavi imenika %s"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Neznan naslov dru¾ine %u (AF_*)"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Seznam raz¹iritev virov je predolg"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT ni uspel, stre¾nik je odgovoril: %s"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Napaka pri pisanju glave v vsebinsko datoteko"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Povezava podatkovne vtiènice potekla"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Ni mogoèe sprejeti povezave"
+
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Te¾ava pri razpr¹evanju datoteke"
+
+#: methods/ftp.cc:877
#, c-format
-msgid "Error processing contents %s"
-msgstr "Napaka pri obdelavi vsebine %s"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Ni mogoèe dobiti datoteke, stre¾nik je odgovoril '%s'"
-#: ftparchive/apt-ftparchive.cc:553
-#, fuzzy
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Uporaba: apt-ftparchive [mo¾nosti] ukaz\n"
-"Ukazi: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive ustvari kazalo Debianovih arhivov. Podpira ¹tevilne\n"
-"sloge ustvarjanja, od popolnoma samodejnih do enakovrednih zamenjav\n"
-"za dpkg-scanpackages in dpkg-scansources\n"
-"\n"
-"apt-ftparchive ustvari paketne datoteke z drevesa .deb-ov. Paketna\n"
-"datoteka hrani vsebino vseh nadzornih polj vsakega paketa in tudi\n"
-"razpr¹eno kodo MD5 ter velikost datoteke. Prekrivna datoteka\n"
-"lahko vsili vrednost Prioriteta in Odsek.\n"
-"\n"
-"Podobno apt-ftparchive ustvari tudi izvorne datoteke iz .dsc-jev.\n"
-"Mo¾nost --source-override lahko nastavi prekrivno datoteko.\n"
-"\n"
-"Ukaz 'paketi' in 'izvorne datoteke' se uporablja v korenu drevesa.\n"
-"BinarnaPot mora kazati na osnovo rekurzivnega iskanja, prekrivna\n"
-"datoteka pa naj vsebuje prekrivne zastavice. Predponapoti se\n"
-"doda poljem z imeni datotek, èe je podana. Primer uporabe iz\n"
-"Debianovega arhiva:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo\n"
-" --md5 Nadzoruje ustvarjanje MD5\n"
-" -s=? Prekrivna datoteka izvorne datoteke\n"
-" -q Tiho\n"
-" -d=? Izbere poljubno pomnilni¹ko zbirko\n"
-" --no-delink Omogoèi razhro¹èevalni naèin z razvezovanjem\n"
-" --contents Nadzoruje ustvarjanje vsebinskih datotek\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Podatkovna vtiènica je potekla"
+
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Prenos podatkov ni uspel, stre¾nik je odgovoril '%s'"
+
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Poizvedba"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Ni mogoèe zagnati "
+
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Povezovanje z %s (%s)"
+
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
+
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Ni mogoèe ustvariti vtiènice za %s (f=%u t=%u p=%u)"
+
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Ni mogoèe zaèeti povezave z %s:%s (%s)."
+
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Ni se mogoèe povezati z %s:%s (%s). Povezava potekla."
+
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Ni se mogoèe povezati z %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Povezujem se z %s"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Nobena izbira se ne ujema"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Ni mogoèe razre¹iti '%s'"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Nekatere datoteke manjkajo v skupini paketnih datotek '%s'"
+msgid "Temporary failure resolving '%s'"
+msgstr "Zaèasna napaka pri razre¹evanju '%s'"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "ZP je pokvarjena, datoteka je preimenovana v %s.old"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Pri¹lo je do napake pri razre¹evanju '%s:%s' (%i)"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "ZP je stara, posku¹am nadgraditi %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Ni se mogoèe povezati z %s %s:"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, fuzzy, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Ni mogoèe razre¹iti '%s'"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr ""
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Ni mogoèe odprti datoteke ZP %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arhiv nima nadzornega zapisa"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr ""
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Ni mogoèe najti kazalca"
+#: methods/gpgv.cc:250
+#, fuzzy
+msgid "The following signatures were invalid:\n"
+msgstr "Naslednji dodatni paketi bodo name¹èeni:"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "O: ni mogoèe brati imenika %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Ni mogoèe odprti %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "O: Ni mogoèe nastaviti %s\n"
+msgid "Read error from %s process"
+msgstr "Napaka pri branju iz procesa %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Èakanje na glave"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "O: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Dobljena je ena vrstica glave preko %u znakov"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "N: Napake se sklicujejo na datoteko"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Napaèna vrstica glave"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Ni mogoèe razre¹iti %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Stre¾nik HTTP je poslal napaèno glavo odgovora"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Hoja drevesa ni uspela"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Stre¾nik HTTP je poslal glavo z napaèno dol¾ino vsebine"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Stre¾nik HTTP je poslal glavo z napaènim obsegom vsebine"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Ta stre¾nik HTTP ima pokvarjen obseg podpore"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Neznana oblika datuma"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Izbira ni uspela"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Èas za povezavo se je iztekel"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Napaka pri pisanju v izhodno datoteko"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Napaka pri pisanju v datoteko"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Napaka pri pisanju v datoteko"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika "
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Napaka pri branju s stre¾nika"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Napaèni podatki glave"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Povezava ni uspela"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Notranja napaka"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "mmap prazne datoteke ni mogoè"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Ni mogoèe odprti %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Ni mogoèe narediti mmap %lu bajtov"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " RazVe¾i %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Izbira %s ni mogoèe najti"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Napaka pri branju povezave %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Ne-prepoznan tip okraj¹ave: '%c'"
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Napaka pri odvezovanju %s"
+msgid "Opening configuration file %s"
+msgstr "Odpiranje nastavitvene datoteke %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Vrstica %d je predolga (najveè %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Napaka pri povezovanju %s z %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Skladenjska napaka %s:%u: Blok se zaène brez imena."
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Dose¾ena meja RazVezovanja %sB.\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Skladenjska napaka %s:%u: Nepravilna znaèka."
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arhiv ni imel polja s paketom"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Skladenjska napaka %s:%u: Dodatno smetje za vrednostjo."
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s nima prekrivnega vnosa\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnjem nivoju."
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " Vzdr¾evalec %s je %s in ne %s\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Skladenjska napaka %s:%u: Preveè ugnezdenih vkljuèitev."
-#: ftparchive/writer.cc:620
-#, fuzzy, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s nima prekrivnega vnosa\n"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Skladenjska napaka %s:%u: Vkljuèen od tu."
-#: ftparchive/writer.cc:624
-#, fuzzy, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s nima prekrivnega vnosa\n"
+#: apt-pkg/contrib/configuration.cc:707
+#, c-format
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Notranja napaka. Ni mogoèe najti èlana %s."
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Skladenjska napaka %s:%u: Dodatno smetje na koncu datoteke"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Napaka pri dodeljevanju prostora"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s ... Napaka!"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unable to open %s"
-msgstr "Ne morem odpreti %s"
+msgid "%c%s... Done"
+msgstr "%c%s... Narejeno"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Napaèno prekrivanje %s vrstica %lu #1"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Mo¾nost ukazne vrstice '%c' [iz %s] ni poznana."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Napaèno prekrivanje %s vrstica %lu #2"
+msgid "Command line option %s is not understood"
+msgstr "Ne razumem mo¾nosti ukazne vrstice %s"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Napaèno prekrivanje %s vrstica %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Mo¾nost ukazne vrstice %s ni boolean"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Napaka pri branju prekrite datoteke %s"
+msgid "Option %s requires an argument."
+msgstr "Mo¾nost %s zahteva argument."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Neznan algoritem stiskanja '%s'"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "Mo¾nost %s: Podrobnosti predmeta za nastavitve potrebujejo =<val>."
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Stisnjen izhod %s potrebuje niz stiskanja"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Mo¾nost %s zahteva celo¹tevilski argument, ne '%s'"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Ustvarjanje DATOTEKE* ni uspelo"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Mo¾nost '%s' je predolga"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Vejitev ni uspela"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Pomena %s ni mogoèe razumeti, poskusite pravilno ali napaèno."
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Otrok stiskanja"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Napaèna operacija %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Notranja napaka. Ni mogoèe ustvariti %s"
+msgid "Unable to stat the mount point %s"
+msgstr "Ni mogoèe doloèiti priklopne toèke %s"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Ni mogoèe ustvariti podprocesa IPD"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Ni mogoèe spremeniti v %s"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Ni mogoèe izvesti stiskanja"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Ni mogoèe doloèiti CD-ROM-a"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "program za dekompresijo"
+#: apt-pkg/contrib/fileutl.cc:82
+#, c-format
+msgid "Not using locking for read only lock file %s"
+msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko samo za branje %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO podprocesa/datoteke je spodletel"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Ni mogoèe odprti zaklenjene datoteke %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Med raèunanjem MD5 ni mogoèe brati"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Napaka pri odvezovanju %s"
+msgid "Could not get lock %s"
+msgstr "Ni mogoèe dobiti zaklenjene datoteke %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Èakal, a %s ni bil tam"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Napaka pri prevajanju regex - %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Napaka pri razèlenjenosti podprocesa %s."
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Naslednji paketi imajo nere¹ene odvisnosti:"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Podproces %s je vrnil kodo napake (%u)"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "but %s is installed"
-msgstr "vendar je paket %s name¹èen"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Podproces %s se je neprièakovano zakljuèil"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "but %s is to be installed"
-msgstr "vendar bo paket %s name¹èen"
+msgid "Could not open file %s"
+msgstr "Ne morem odpreti datoteke %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "vendar se ga ne da namestiti"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "berem, ¹e vedno %lu za branje, a nobeden ostal"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "vendar je navidezen paket"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "pi¹em, ¹e vedno %lu za pisanje, a ni mogoèe"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "vendar ni name¹èen"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Te¾ava pri zapiranju datoteke"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "vendar ne bo name¹èen"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Te¾ava pri odvezovanju datoteke"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " ali"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Te¾ava pri usklajevanju datoteke"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Naslednji NOVI paketi bodo name¹èeni:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Prazen predpomnilnik paketov"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Naslednji novi paketi bodo ODSTRANJENI:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Datoteka s predpomnilnikom paketov je pokvarjena"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Naslednji paketi so bili zadr¾ani:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Razlièica datoteke s predpomnilnikom paketov ni ustrezna"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Naslednji paketi bodo nadgrajeni:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Ta APT ne podpira sistema razlièic '%s'"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Naslednji paketi bodo POSTARANI:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Predpomnilnik paketov je bil zgrajen za drugaèno arhitekturo"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Naslednji zadr¾ani paketi bodo spremenjeni:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Odvisen od"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (zaradi %s) "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Predodvisnost"
-#: cmdline/apt-get.cc:547
-#, 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 ""
-"OPOZORILO: Naslednji kljuèni paketi bodo odstranjeni.\n"
-"To NI priporoèljivo, razen èe natanèno veste, kaj poènete."
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Priporoèa"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu nadgrajenih, %lu na novo name¹èenih, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Priporoèa"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu posodobljenih, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "V sporu z"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu postaranih, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Zamenja"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Zastarani"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ne popolnoma name¹èenih ali odstranjenih.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Popravljanje odvisnosti ..."
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "pomembno"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " spodletelo."
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "obvezno"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Ni mogoèe popraviti odvisnosti"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standardno"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ni mogoèe pomanj¹ati zbirke za nadgradnjo"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "izbirno"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Opravljeno"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "dodatno"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Èe ¾elite popraviti napake, poskusite pognati 'apt-get -f install'."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Gradnja drevesa odvisnosti"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Nere¹ene odvisnosti. Poskusite uporabiti -f."
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Razlièice kandidatov"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "POZORO: Naslednjih paketov ni bilo mogoèe avtenticirati!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Ustvarjanje odvisnosti"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr ""
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Spajanje informacij na voljo"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Namestim te pakete brez prevejanje [y/N]? "
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Ni mogoèe odprti %s"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Nisem uspel avtenticirati nekaterih paketkov"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Napaka pri pisanju datoteke %s"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-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-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Ni mogoèe razèleniti paketne datoteke %s (1)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr ""
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Ni mogoèe razèleniti paketne datoteke %s (2)"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogoèeno."
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Napaèna vrstica %lu v seznamu virov %s (URI)"
-#: cmdline/apt-get.cc:790
-#, fuzzy
-msgid "Internal error, Ordering didn't finish"
-msgstr "Notranja napaka pri dodajanju odklona"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Napaèna vrstica %lu v seznamu virov %s (distribucija)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Ni mogoèe zakleniti imenika za prenose"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Napaèna vrstica %lu v seznamu virov %s (absolutna distribucija)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Potrebno je dobiti %sB/%sB arhivov.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Napaèna vrstica %lu v seznamu virov %s (razèlenitev distribucije)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Potrebno je dobiti %sB arhivov.\n"
+msgid "Opening %s"
+msgstr "Odpiram %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Po odpakiranju bo uporabljenega %sB dodatnega prostora na disku.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Vrstica %u v seznamu virov %s je predolga."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Po odpakiranju bo spro¹èenega %sB prostora na disku.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Napaèna vrstica %u v seznamu virov %s (vrsta)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, fuzzy, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Nimate dovolj prostora na %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "V %s je premalo prostora."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Napaèna vrstica %u v seznamu virov %s (ID ponudnika)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Izbrana je mo¾nost Samo preprosto, a to opravilo ni preprosto."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"Ta krog namestitve zahteva zaèasno odstranitev kljuènega paketa %s zaradi "
+"zanke spora/predodvisnosti. To je ponavadi slabo, toda èe zares ¾elite "
+"odstranitev, vkljuèite mo¾nost APT::Force-LoopBreak."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Da, naredi tako kot pravim!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Vrsta datoteke s kazalom '%s' ni podprta"
-#: cmdline/apt-get.cc:883
-#, fuzzy, c-format
+#: apt-pkg/algorithms.cc:247
+#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Obstaja mo¾nost, da po¹kodujete va¹ sistem.\n"
-"Za nadaljevanje vnesite frazo '%s'\n"
-" ?] "
+"Paket %s mora biti ponovno name¹èen, vendar ne morem najti arhiva zanj."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Prekini."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Napaka. pkgProblemResolver::Napake pri razre¹itvi, ki so jih morda "
+"povzroèili zadr¾ani paketi."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Ali ¾elite nadaljevati [Y/n]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Ni mogoèe popraviti te¾av. Imate zadr¾ane pakete."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Ni mogoèe dobiti %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Prenos nekaterih datotek ni uspel"
+msgid "Lists directory %spartial is missing."
+msgstr "Manjka imenik s seznami %spartial."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Prenos dokonèan in uporabljen naèin samo prenos"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Manjka imenik z arhivi %spartial."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
msgstr ""
-"Nekaterih arhivov ni mogoèe dobiti. Poskusite uporabiti apt-get update ali --"
-"fix-missing."
-
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing in izmenjava medija trenutno nista podprta"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Ni mogoèe popraviti manjkajoèih paketov."
-
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Prekinjanje namestitve."
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Branje seznama datotek"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Opomba: izbran %s namesto %s \n"
+msgid "The method driver %s could not be found."
+msgstr "Ni mogoèe najti gonilnika metod %s."
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "%s preskoèen, ker je ¾e name¹èen in ne potrebuje nadgradnje.\n"
+msgid "Method %s did not start correctly"
+msgstr "Metoda %s se ni zaèela pravilno"
+
+#: apt-pkg/acquire-worker.cc:398
+#, fuzzy, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr ""
+"Sprememba medija: vstavite disk z oznako\n"
+" '%s'\n"
+"v enoto '%s' in pritisnite enter\n"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Paket %s ni name¹èen, zato ni odstranjen\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Paketni sistem '%s' ni podprt"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Ni mogoèe ugotoviti ustrezne vrste paketnega sistema"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Paket %s je navidezen in ga je priskrbel:\n"
+msgid "Unable to stat %s."
+msgstr "Ni mogoèe doloèiti %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Name¹èeno]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "V sources.list morate vstaviti URI-je z viri"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Sami izberite paket, ki ga ¾elite namestiti."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Ni mogoèe odprti ali razèleniti seznama paketov ali datoteke stanja."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Èe ¾elite odpraviti te¾ave, poskusite zagnati apt-get update."
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Napaèen zapis v datoteki z nastavitvami. Ni glave paketa"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/policy.cc:289
#, 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 nek drug paket nana¹a nanj.\n"
-"To ponavadi pomeni, da paket manjka, je zastaran ali\n"
-"pa je na voljo samo iz drugega vira.\n"
+msgid "Did not understand pin type %s"
+msgstr "Ni mogoèe razumeti vrste zaponke %s"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Kakorkoli, naslednji paketi ga nadomestijo:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Prioriteta zaponke ni doloèena ali pa je niè."
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Predpomnilnik ima neustrezen sistem razlièic"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Paket %s nima kandidata za namestitev"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nov paket)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Ponovna namestitev %s ni mo¾na, ker ni mo¾en prenos.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Najnovej¹a razlièica %s je ¾e name¹èena.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Izdaje '%s' za '%s' ni mogoèe najti"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Razlièice '%s' za '%s' ni mogoèe najti"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Izbrana razlièica %s (%s) za %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Uporabi paket 3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Ukaz update ne potrebuje argumentov"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica 2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Imenika seznamov ni mogoèe zakleniti"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Nekaterih kazal ni mogoèe prenesti, zato so preklicana, ali pa so "
-"uporabljena starej¹a."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Uau, presegli ste ¹tevilo imen paketov, ki jih zmore APT."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Naslednji NOVI paketi bodo name¹èeni:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Uau, presegli ste ¹tevilo razlièic, ki jih zmore APT."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Uau, presegli ste ¹tevilo odvisnosti, ki jih zmore APT."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Najdi paket)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Naslednji podatki vam bodo morda pomagali re¹iti te¾avo:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Pri¹lo je do napake pri obdelavi %s (Zberi dobavitelje datotek)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Notranja napaka zaradi AllUpgrade."
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Paketa %s %s ni bilo mogoèe najti med obdelavo odvisnosti"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Notranja napaka zaradi AllUpgrade."
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Ni mogoèe doloèiti seznama izvornih paketov %s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Ni mogoèe najti paketa %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Zbiranje dobaviteljev datotek"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Ni mogoèe najti paketa %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Napaka IO pri shranjevanju predpomnilnika virov"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Opomba: izbran %s namesto regex '%s'\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "preimenovanje spodletelo, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "vendar bo paket %s name¹èen"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Neujemanje vsote MD5"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Poskusite zagnati 'apt-get -f install', èe ¾elite popraviti:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Neujemanje vsote MD5"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
msgstr ""
-"Nere¹ene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali "
-"podajte re¹itev)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"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 ""
-"Nekaterih paketov ni mogoèe namestiti. To lahko pomeni, da ste zahtevali\n"
-"nemogoè polo¾aj, èe uporabljate nestabilno izdajo pa, da nekateri zahtevani "
-"paketi ¹e niso ustvarjeni ali prene¹eni iz Prihajajoèe."
+"Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno "
+"popraviti ta paket (zaradi manjkajoèega arhiva)."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"Ker ste zahtevali samo eno opravilo, je zelo verjetno, da se paketa\n"
-"preprosto ne da namestiti in je potrebno vlo¾iti poroèilo o hro¹èu\n"
-"o tem paketu."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Pokvarjeni paketi"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Naslednji dodatni paketi bodo name¹èeni:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Predlagani paketi:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Priporoèeni paketi:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Preraèunavanje nadgradnje ... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Opravljeno"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-#, fuzzy
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Notranja napaka zaradi AllUpgrade."
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Potrebno je navesti vsaj en paket, za katerega ¾elite dobiti izorno kodo"
+"Ni bilo mogoèe najti datoteke za paket %s. Morda boste morali roèno "
+"popraviti ta paket."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Izvornega paketa za %s ni mogoèe najti"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje alu paket "
+"%s."
-#: cmdline/apt-get.cc:2167
-#, fuzzy, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Neujemanje velikosti"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Nimate dovolj prostora na %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Ponudnikov blok %s ne vsebuje podpisa"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Uporabljam CD-ROM priklopno toèko %s\n"
+"Priklapljam CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Potrebno je dobiti %sB izvornih arhivov.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identificiram.."
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Dobi vir %s\n"
-
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Nekaterih arhivov ni mogoèe dobiti."
+msgid "Stored label: %s\n"
+msgstr "Shranjena oznaka: %s \n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Odpakiranje ¾e odpakiranih izvornih paketov v %s preskoèeno\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Odklapljam CD-ROM..."
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Ukaz odpakiranja '%s' ni uspel.\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Uporabljam CD-ROM priklopno toèko %s\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr ""
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Odklapljam CD-ROM\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Ukaz gradnje '%s' ni uspel.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Èakam na medij...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Otro¹ki proces ni uspel"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Priklapljam CD-ROM...\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Potrebno je navesti vsaj en paket, za katerega ¾elite preveriti odvisnosti "
-"za gradnjo"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Preverjam medij za datoteke s kazalom..\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Ni mogoèe dobiti informacij o odvisnostih za gradnjo za %s"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Na¹el sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s nima odvisnosti za gradnjo.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Shranjena oznaka: %s \n"
-#: cmdline/apt-get.cc:2429
-#, 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"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "To ni veljavno ime, poskusite ¹e enkrat.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"%s odvisnosti za %s ni mogoèe zadostiti, ker nobena razlièica paketa %s ne "
-"more zadostiti zahtevi po razlièici"
+"Ta medij se imenuje: \n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2518
-#, 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"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopiranje seznama paketov..."
-#: cmdline/apt-get.cc:2543
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Ni mogoèe zadostiti %s odvisnosti za %s. %s"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Pi¹em nov seznam virov\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Izvorni vnosi za ta medij so:\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Odvisnostim za gradnjo %s ni mogoèe zadostiti."
+msgid "Wrote %i records.\n"
+msgstr "Zapisal %i zapisov.\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Obdelava odvisnosti za gradnjo ni uspela"
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#, c-format
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Zapisal %i zapisov z %i manjkajoèimi datotekami.\n"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Podprti moduli:"
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#, c-format
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Zapisal %i zapisov z %i neujemajoèimi datotekami.\n"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#, c-format
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Uporaba: apt-get [mo¾nosti] ukaz\n"
-" apt-get [mo¾nosti] install|remove pak1 [pak2 ...]\n"
-" apt-get [mo¾nosti] source pak1 [pak2 ...]\n"
-"\n"
-"apt-get je preprost vmesnik ukazne vrstice za prena¹anje in\n"
-"name¹èanje paketov. Najpogosteje uporabljena ukaza sta update\n"
-"in install.\n"
-"\n"
-"Ukazi:\n"
-" update - Posodobi seznam paketov\n"
-" upgrade - Izvedi nadgradnjo\n"
-" install - Namesti nove pakete (pak je libc6 in ne libc6.deb)\n"
-" remove - Odstrani pakete\n"
-" source - Prenesi izvorne arhive\n"
-" build-dep - Nastavi odvisnosti za gradnjo za izvorne pakete\n"
-" dist-upgrade - Nadgradnja distribucije, glejte apt-get(8)\n"
-" dselect-upgrade - Sledi izbiram dselecta\n"
-" clean - Odstrani prene¹ene datoteke z arhivi\n"
-" autoclean - Odstrani stare prene¹ene datoteke z arhivi\n"
-" check - Preveri, da ni nobene pokvarjene odvisnosti\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo.\n"
-" -q Dnevni¹ki izpis - brez kazalca napredka\n"
-" -qq Brez izpisa, razen napak\n"
-" -d Samo prenos - NE namesti in odpakira arhivov\n"
-" -s Brez dejanj. Izvede simulacijo urejanja\n"
-" -y Privzame Da za vse poizvedbe in ne spra¹uje\n"
-" -f Poskusi nadaljevati, èe preskus celovitosti spodleti\n"
-" -m Poskusi nadaljevati, èe ni mogoèe najti arhivov\n"
-" -u Prika¾e tudi seznam nadgrajenih paketov\n"
-" -b Ko dobi izvoren paket, ga zgradi\n"
-" -V Prika¾e podrobne ¹tevilke razlièic\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-"Za veè informacij in mo¾nosti si oglejte strani man apt-get(8),\n"
-"sources.list(5) in apt.conf(5).\n"
-" APT ima moè Super Krave.\n"
+"Zapisal %i zapisov z %i manjkajoèimi datotekami in %i neujemajoèimi "
+"datotekami.\n"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Zadetek "
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Manjka imenik s seznami %spartial."
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Dobi:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, fuzzy, c-format
+msgid "Preparing %s"
+msgstr "Odpiram %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Prz "
+#: apt-pkg/deb/dpkgpm.cc:597
+#, fuzzy, c-format
+msgid "Unpacking %s"
+msgstr "Odpiram %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Nap "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, fuzzy, c-format
+msgid "Preparing to configure %s"
+msgstr "Odpiranje nastavitvene datoteke %s"
-#: cmdline/acqprogress.cc:135
-#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Dobljenih %sB v %s (%sB/s)\n"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, fuzzy, c-format
+msgid "Configuring %s"
+msgstr "Povezujem se z %s"
-#: cmdline/acqprogress.cc:225
-#, c-format
-msgid " [Working]"
-msgstr " [Delam]"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Napaka pri obdelavi imenika %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:608
+#, fuzzy, c-format
+msgid "Installed %s"
+msgstr " Name¹èen: "
+
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
+msgid "Preparing for removal of %s"
msgstr ""
-"Sprememba medija: vstavite disk z oznako\n"
-" '%s'\n"
-"v enoto '%s' in pritisnite enter\n"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Neznan zapis paketa!"
+#: apt-pkg/deb/dpkgpm.cc:618
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Odpiram %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:619
+#, fuzzy, c-format
+msgid "Removed %s"
+msgstr "Priporoèa"
+
+#: apt-pkg/deb/dpkgpm.cc:624
+#, fuzzy, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Odpiranje nastavitvene datoteke %s"
+
+#: apt-pkg/deb/dpkgpm.cc:625
+#, fuzzy, c-format
+msgid "Completely removed %s"
+msgstr "Odstranitev %s ni uspela"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Uporaba: apt-sortpkgs [mo¾nosti] dat1 [dat2 ...]\n"
-"\n"
-"apt-sortpkgs je preprosto orodje za razvr¹èanje paketnih datotek. Mo¾nost -"
-"s\n"
-"doloèa vrsto datoteke.\n"
-"\n"
-"Mo¾nosti:\n"
-" -h To besedilo\n"
-" -s Uporabi razvr¹èanje izvornih datotek\n"
-" -c=? Prebere podano datoteko z nastavitvami\n"
-" -o=? Nastavi poljubno nastavitveno mo¾nost, npr. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Napaèna privzeta nastavitev!"
+#: methods/rred.cc:219
+#, fuzzy
+msgid "Could not patch file"
+msgstr "Ne morem odpreti datoteke %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Za nadaljevanje pritisnite enter."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Povezava se je prezgodaj zaprla"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Med odpakiranjem je pri¹lo do napak. Nastavil bom"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Vrstica %d je predolga (najveè %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "pakete, ki so bili name¹èeni. To lahko privede do dvojnih napak"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Pri¹lo je do napake pri obdelavi %s (Nova razlièica datoteke 1)"
-#: dselect/install:103
-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"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Shranjena oznaka: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Spajanje informacij na voljo"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Na¹el sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-10-30 10:31+0100\n"
"Last-Translator: Peter Karlsson <peterk@debian.org>\n"
"Language-Team: Swedish <debian-l10n-swedish@debian.org>\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Kunde inte läsa cd-rom-databasen %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
+msgid "Package %s version %s has an unmet dep:\n"
msgstr ""
-"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan "
-"inte användas för att lägga till skivor"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Fel cd-rom"
+"Paketet %s med versionen %s har ett beroende som inte kan tillfredsställas:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Skivan hittades inte."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Filen hittades inte"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Kunde inte ta status"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Misslyckades ställa in ändringstid"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Ogiltig URI, lokala URI:er får inte börja med //"
+msgid "Unable to locate package %s"
+msgstr "Kunde inte hitta paketet %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Loggar in"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Totalt antal paketnamn: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Kunde inte fastställa namnet på partnern"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normala paket: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Kunde inte fastställa det lokala namnet"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Rent virtuella paket: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Servern nekade anslutningen och sade: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Enstaka virtuella paket: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER misslyckades, servern sade: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Blandade virtuella paket: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS misslyckades, servern sade: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Saknade: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::"
-"ProxyLogin är tom."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Totalt antal olika versioner: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "Totalt antal olika beskrivningar: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE misslyckades, servern sade: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Totalt antal beroenden: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Tidsgränsen för anslutningen överskreds"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Totalt antal version/filrelationer: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Servern stängde anslutningen"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "Totalt antal beskrivning/filrelationer: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Läsfel"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Totalt antal tillhandahållningsmarkeringar: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Ett svar spillde bufferten."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Totalt antal sökmönstersträngar: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Protokollet skadat"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Totalt utrymme för versionsberoenden: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Skrivfel"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Totalt bortkastat utrymme: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Kunde inte skapa ett uttag (socket)"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Totalt utrymme som kan redogöras för: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Paketfilen %s är inte synkroniserad."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Misslyckades"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Du måste ange exakt ett mönster"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Kunde inte ansluta passivt uttag (socket)."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Inga paket hittades"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "\"Package\"-filer:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Kunde inte binda ett uttag (socket)"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Kunde inte lyssna på uttaget (socket)"
+# Prioritet följt av URI
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Kunde inte fastställa uttagets namn (socket)"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Fastnålade paket:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Kunde inte sända PORT-kommando"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(hittades inte)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Okänd adressfamilj %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Installerad: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT misslyckades, servern sade: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ingen)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidat: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Kunde inte ta emot anslutningen"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Paketnålning: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problem med att lägga filen till hashtabellen"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Versionstabell:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Kunde inte hämta filen, servern sade \"%s\""
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Datauttag (socket) fick inte svar inom tidsgränsen"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Dataöverföringen misslyckades, servern sade \"%s\""
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s för %s kompilerad den %s %s\n"
-# Statusmeddelande, byter från substantiv till verb
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Frågar"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Kunde inte starta "
-
-# Felmeddelande för misslyckad chdir
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Ansluter till %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-# [f]amilj, [t]yp, [p]rotokoll
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Kunde inte initiera anslutningen till %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Kunde inte ansluta till %s:%s (%s)."
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Användning: apt-cache [flaggor] kommando\n"
+" apt-cache [flaggor] add fil1 [fil2 ...]\n"
+" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n"
+" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n"
+"\n"
+"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n"
+"samt hämta upplysningar från dem.\n"
+"\n"
+"Kommandon:\n"
+" add - Lägg till en paketfil till källcachen\n"
+" gencaches - Bygg både paket- och källcache\n"
+" showpkg - Visa viss allmän information om ett enskilt paket\n"
+" showsrc - Visa källkodsposter\n"
+" stats - Visa viss grundläggande statistik\n"
+" dump - Visa hela filen i koncis form\n"
+" dumpavail - Skriv en \"available\"-fil på standard ut\n"
+" unmet - Visa otillfredsställbara beroenden\n"
+" search - Sök i paketlistan med ett reguljärt uttryck\n"
+" show - Visa en läsbar post för paketet\n"
+" depends - Visa rå information om beroenden för ett paket\n"
+" rdepends - Visa information om omvända beroenden för ett paket\n"
+" pkgnames - Visa namnen på alla paket\n"
+" dotty - Generera paketgrafer för GraphVis\n"
+" xvcg - Generera paketgrafer för xvcg\n"
+" policy - Visa policyinställningar\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext.\n"
+" -p=? Paketcachen.\n"
+" -s=? Källcachen.\n"
+" -q Inaktivera förloppsindikatorn.\n"
+" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n"
+" -c=? Läs denna konfigurationsfil.\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
+"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Ansluter till %s"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 2.1r1 Disk 1\""
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Kunde inte slå upp \"%s\""
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Mata in en skiva i enheten och tryck på Enter"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Temporärt fel vid uppslagning av \"%s\""
+#: cmdline/apt-cdrom.cc:117
+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."
-# Okänd felkod; %i = koden
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i)"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Argumenten gavs inte parvis"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Kunde inte ansluta till %s %s:"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Användning: apt-config [flaggor] kommando\n"
+"\n"
+"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n"
+"\n"
+"Kommandon:\n"
+" shell - Skalläge.\n"
+" dump - Visa konfigurationen.\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext.\n"
+" -c=? Läs denna konfigurationsfil.\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Kunde inte komma åt nyckelring: \"%s\""
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Argumentslistan från Acquire::gpgv::Options är för lång. Avslutar."
+msgid "%s not a valid DEB package."
+msgstr "%s är inte ett giltigt DEB-paket."
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns "
-"fingeravtryck?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Minst en ogiltig signatur träffades på."
+"Användning: apt-extracttemplates fil1 [fil2 ...]\n"
+"\n"
+"apt-extracttemplates är ett verktyg för att hämta ut konfigurations- \n"
+"och mallinformation från paket\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext.\n"
+" -t Ställ in temporärkatalogen.\n"
+" -c=? Läs denna konfigurationsfil.\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Kunde inte köra \"%s\" för att verifiera signatur (är gnupg installerad?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Okänt fel vid körning av gpgv"
+msgid "Unable to write to %s"
+msgstr "Kunde inte skriva till %s"
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Följande signaturer är ogiltiga:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Kan inte ta reda på debconf-version. Är debconf installerat?"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är "
-"tillgänglig:\n"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Listan över filtillägg för Packages är för lång"
-#: methods/gpgv.cc:272
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Failed to stat %s"
-msgstr "Misslyckades med att ta status på %s"
+msgid "Error processing directory %s"
+msgstr "Fel vid behandling av katalogen %s"
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Kunde inte öppna rör för %s"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Listan över filtillägg för Sources är för lång"
-# %s = programnamn
-#: methods/gzip.cc:109
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Fel vid skrivning av huvud till innehållsfil"
+
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Read error from %s process"
-msgstr "Läsfel från %s-processen"
+msgid "Error processing contents %s"
+msgstr "Fel vid behandling av innehållet %s"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Väntar på huvuden"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Fick en ensam huvudrad på %u tecken"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Felaktig huvudrad"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Användning: apt-ftparchive [flaggor] kommando\n"
+"Kommandon: packages binärsökväg [åsidosättningsfil [sökvägsprefix]]\n"
+" sources källsökväg [åsidosättningsfil [sökvägsprefix]]\n"
+" contents sökväg\n"
+" release sökväg\n"
+" generate konfiguration [grupper]\n"
+" clean konfiguration\n"
+"\n"
+"apt-ftparchive genererar indexfiler för Debianarkiv. Det stöder många\n"
+"former av generering, allt från helautomatiserat till funktionella\n"
+"ersättningar till dpkg-scanpackages och dpkg-scansources\n"
+"\n"
+"apt-ftparchive skapar Package-filer från ett träd med .deb-filer.\n"
+"Packagefilen innehåller alla styrfälten från paketen samt MD5-hashvärdet\n"
+"och filstorlek. En overrride-fil stöds för att tvinga värden på Priority\n"
+"och Section.\n"
+"\n"
+"På samma sätt skapar apt-ftparchive Sources-filer från ett träd med\n"
+".dsc-filer. Flaggan --source-override kan användas för att ange en\n"
+"override-fil för källkoden.\n"
+"\n"
+"Kommandona \"packages\" och \"sources\" bör köras från rotet på trädet.\n"
+"Binärsökvägen bör peka på basen på den rekursiva sökningen och\n"
+"override-filen bör innehålla override-flaggorna de framtvingade flaggorna.\n"
+"Sökvägsprefixet läggs till i filnamnsfälten om det anges. Ett exempel på\n"
+"hur programmet kan användas från Debianarkivet:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext\n"
+" --md5 Kontrollera generering av MD5\n"
+" -s=? Källkods-override-fil\n"
+" -q Tyst\n"
+" -d=? Väljer den valfria cachedatabasen\n"
+" --no-delink Aktivera \"delinkning\"-felsökningsläget\n"
+" --contents Styr skapande av contents-fil\n"
+" -c=? Läs denna konfigurationsfil\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Http-servern sände ett ogiltigt svarshuvud"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Inga val träffades"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "Http-servern sände ett ogiltigt Content-Length-huvud"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Några filer saknas i paketfilsgruppen \"%s\""
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "Http-servern sände ett ogiltigt Content-Range-huvud"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB var skadad, filen omdöpt till %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB är gammal, försöker uppgradera %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Okänt datumformat"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB-formatet är ogiltigt. Ta bort och återskapa databasen om du uppgraderar "
+"från en äldre version av apt."
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "\"Select\" misslyckades"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Kunde inte öppna DB-filen %s: %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Anslutningen överskred tidsgränsen"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Misslyckades med att ta status på %s"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Fel vid skrivning till utdatafil"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Arkivet har ingen styrpost"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Fel vid skrivning till fil"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Kunde inte få tag i någon markör"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Fel vid skrivning till filen"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "V: Kunde inte läsa katalogen %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "V: Kunde inte ta status på %s\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Fel vid läsning från server"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "F: "
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Felaktiga data i huvud"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "V: "
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Anslutningen misslyckades"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "F: Felen gäller filen "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Internt fel"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Misslyckades med att slå upp %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Kan inte utföra mmap på en tom fil"
+# ???
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Trädvandring misslyckades"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Kunde inte utföra mmap på %lu byte"
+msgid "Failed to open %s"
+msgstr "Misslyckades med att öppna %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "Valet %s hittades inte"
+msgid " DeLink %s [%s]\n"
+msgstr " Avlänka %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Okänd typförkortning: \"%c\""
+msgid "Failed to readlink %s"
+msgstr "Misslyckades med att läsa länken %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Öppnar konfigurationsfilen %s"
+msgid "Failed to unlink %s"
+msgstr "Misslyckades med att länka ut %s"
-#: apt-pkg/contrib/configuration.cc:510
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Rad %d är för lång (max %u)"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Misslyckades med att länka %s till %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntaxfel %s:%u: Block börjar utan namn."
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Avlänkningsgränsen på %sB nåddes.\n"
-#: apt-pkg/contrib/configuration.cc:625
-#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntaxfel %s:%u: Felformat märke"
+# Fält vid namn "Package"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Arkivet har inget package-fält"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde"
+msgid " %s has no override entry\n"
+msgstr " %s har ingen post i override-filen\n"
-#: apt-pkg/contrib/configuration.cc:682
+# parametrar: paket, ny, gammal
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån"
+msgid " %s maintainer is %s not %s\n"
+msgstr " ansvarig för paketet %s är %s ej %s\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar"
+msgid " %s has no source override entry\n"
+msgstr " %s har ingen källåsidosättningspost\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntaxfel %s:%u: Inkluderad härifrån"
+msgid " %s has no binary override entry either\n"
+msgstr " %s har heller ingen binär åsidosättningspost\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte"
+msgid "Internal error, could not locate member %s"
+msgstr "Internt fel, kunde inta hitta delen %s"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Misslyckades med att allokera minne"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Unable to read %s"
-msgstr "Kunde inte läsa %s"
+msgid "Unable to open %s"
+msgstr "Kunde inte öppna %s"
-#: apt-pkg/contrib/progress.cc:153
+# parametrar: filnamn, radnummer
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Fel!"
+msgid "Malformed override %s line %lu #1"
+msgstr "Felaktig override %s rad %lu #1"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Färdig"
+msgid "Malformed override %s line %lu #2"
+msgstr "Felaktig override %s rad %lu #2"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd."
+msgid "Malformed override %s line %lu #3"
+msgstr "Felaktig override %s rad %lu #3"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Förstår inte kommandoradsflaggan %s"
+msgid "Failed to read the override file %s"
+msgstr "Misslyckades med att läsa åsidosättningsfilen %s"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Kommandoradsflaggan %s är inte boolsk"
+msgid "Unknown compression algorithm '%s'"
+msgstr "Okänd komprimeringsalgoritm \"%s\""
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+# ???
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Flaggan %s kräver ett argument."
+msgid "Compressed output %s needs a compression set"
+msgstr "Komprimerade utdata %s behöver en komprimeringsuppsättning"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>."
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Misslyckades med att skapa IPC-rör till underprocess"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\""
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Misslyckades med att skapa FILE*"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Flaggan \"%s\" är för lång"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Misslyckades med att grena process"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Förstår inte %s, prova med \"true\" eller \"false\"."
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Barnprocess för komprimering"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Invalid operation %s"
-msgstr "Felaktig operation %s"
+msgid "Internal error, failed to create %s"
+msgstr "Internt fel, misslyckades med att skapa %s"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Kunde inte ta status på monteringspunkten %s."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Misslyckades med att skapa underprocess-IPC"
-# Felmeddelande för misslyckad chdir
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Kunde inte byta till %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Misslyckades med att starta komprimerare "
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Kunde inte ta status på cd-romen."
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "uppackare"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "Använder inte låsning för skrivskyddade låsfilen %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "In/ut för underprocess/fil misslyckades"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Kunde inte öppna låsfilen %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Misslyckades med att läsa vid beräkning av MD5"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/multicompress.cc:472
#, 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"
+msgid "Problem unlinking %s"
+msgstr "Problem med att länka ut %s"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not get lock %s"
-msgstr "Kunde inte erhålla låset %s"
+msgid "Failed to rename %s to %s"
+msgstr "Misslyckades med att byta namn på %s till %s"
-#: apt-pkg/contrib/fileutl.cc:377
-#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Väntade på %s men den fanns inte där"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "J"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Underprocessen %s råkade ut för ett segmenteringsfel."
+msgid "Regex compilation error - %s"
+msgstr "Fel vid kompilering av reguljärt uttryck - %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Underprocessen %s svarade med en felkod (%u)"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Följande paket har beroenden som inte kan tillfredsställas:"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Underprocessen %s avslutades oväntat"
+msgid "but %s is installed"
+msgstr "men %s är installerat"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Could not open file %s"
-msgstr "Kunde inte öppna filen %s"
+msgid "but %s is to be installed"
+msgstr "men %s kommer att installeras"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "men det kan inte installeras"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "skrivning, har fortfarande %lu att skriva men kunde inte"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "men det är ett virtuellt paket"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problem med att stänga filen"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "men det är inte installerat"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problem med att länka ut filen"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "men det kommer inte att installeras"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problem med att synkronisera filen"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " eller"
-# Felmeddelande
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Paketcachen är tom"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Följande NYA paket kommer att installeras:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Paketcachefilen är skadad"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Följande paket kommer att TAS BORT:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Paketcachefilens version är inkompatibel"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Följande paket har hållits tillbaka:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Denna APT saknar stöd för versionssystemet \"%s\""
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Följande paket kommer att uppgraderas:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Paketcachen byggdes för en annan arkitektur"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Följande paket kommer att NEDGRADERAS:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Beroende av"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Följande tillbakahållna paket kommer att ändras:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Förberoende av"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (på grund av %s) "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Föreslår"
+#: cmdline/apt-get.cc:550
+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-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Rekommenderar"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu uppgraderade, %lu nyinstallerade, "
-# "Konfliktar"?
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Står i konflikt med"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu ominstallerade, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Ersätter"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu nedgraderade, "
-# "Föråldrar"?
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Föråldrar"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu att ta bort och %lu ej uppgraderade.\n"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr "Trasar sönder"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu ej helt installerade eller borttagna.\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "viktigt"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Korrigerar beroenden...."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "nödvändigt"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " misslyckades."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "normalt"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Kunde inte korrigera beroenden"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "valfri"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Kunde inte minimera uppgraderingsuppsättningen"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Färdig"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Bygger beroendeträd"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"Du kan möjligen rätta till dessa genom att köra \"apt-get -f install\"."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Kandiderande versioner"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Otillfredsställda beroenden. Prova med -f."
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Beroendegenerering"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "VARNING: Följande paket kunde inte autentiseras!"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr "Läser tillståndsinformation"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Autentiseringsvarning åsidosatt.\n"
-#: apt-pkg/depcache.cc:219
-#, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Misslyckades med att öppna StateFile %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Installera dessa paket utan verifiering [j/N]? "
-#: apt-pkg/depcache.cc:225
-#, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Misslyckades med att skriva temporär StateFile %s"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Några av paketen kunde inte autentiseras"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Kunde inte tolka paketfilen %s (1)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Problem har uppstått och -y användes utan --force-yes"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Kunde inte tolka paketfilen %s (2)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Internt fel. InstallPackages anropades med trasiga paket!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Rad %lu i källistan %s har (URI)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat."
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Rad %lu i källistan %s har fel format (dist)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Internt fel. Sorteringen färdigställdes inte"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Kunde inte låsa hämtningskatalogen"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Rad %lu i källistan %s har fel format (Absolut dist)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Listan över källor kunde inte läsas."
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr ""
+"Konstigt.. storlekarna stämde inte överens, skicka e-post till apt@packages."
+"debian.org"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Opening %s"
-msgstr "Öppnar %s"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Behöver hämta %sB/%sB arkiv.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Rad %u är för lång i källistan %s."
+msgid "Need to get %sB of archives.\n"
+msgstr "Behöver hämta %sB arkiv.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Rad %u i källistan %s har fel format (typ)"
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Efter uppackning kommer ytterligare %sB utrymme användas på disken.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Efter uppackning kommer %sB att frigöras på disken.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Kunde inte fastställa ledigt utrymme i %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Rad %u i källistan %s har fel format (leverantörs-id)"
+msgid "You don't have enough free space in %s."
+msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Ja, gör som jag säger!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"För att genomföra installationen måste det systemkritiska paketet %s "
-"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. "
-"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du "
-"aktivera flaggan \"APT::Force-LoopBreak\"."
+"Du är på väg att göra någonting som kan vara skadligt\n"
+"Skriv in frasen \"%s\" för att fortsätta\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Indexfiler av typ \"%s\" stöds inte"
+# Visas då man svarar nej
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Avbryter."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Vill du fortsätta [J/n]? "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr ""
-"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det."
+msgid "Failed to fetch %s %s\n"
+msgstr "Misslyckades med att hämta %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Misslyckades med att hämta vissa filer"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Hämtningen färdig i \"endast-hämta\"-läge"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på "
-"tillbakahållna paket."
+"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --"
+"fix-missing."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Kunde inte korrigera problemen, du har hållt tillbaka trasiga paket."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing och mediabyte stöds inte för tillfället"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Listkatalogen %spartial saknas."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Kunde inte korrigera saknade paket."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Arkivkatalogen %spartial saknas."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Avbryter installationen."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Hämtar fil %li av %li (%s återstår)"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Observera, väljer %s istället för %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Hämtar fil %li av %li"
+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"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Metoddrivrutinen %s kunde inte hittas."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Metoden %s startade inte korrekt"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Paketet %s är ett virtuellt paket som tillhandahålls av:\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Installerat]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Du bör uttryckligen ange ett att installera."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+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 ""
-"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter."
+"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"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Dock kan följande paket ersätta det:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Paketsystemet \"%s\" stöds inte"
+msgid "Package %s has no installation candidate"
+msgstr "Paketet %s har ingen installationskandidat"
-#
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Kunde inte fastställa en lämplig paketsystemstyp"
+#: cmdline/apt-get.cc:1156
+#, 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"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Unable to stat %s."
-msgstr "Kunde inte ta status på %s."
+msgid "%s is already the newest version.\n"
+msgstr "%s är redan den senaste versionen.\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "Utgåvan \"%s\" för \"%s\" hittades inte"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Listan över källor kunde inte läsas."
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "Version \"%s\" för \"%s\" hittades inte"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas."
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Vald version %s (%s) för %s\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\""
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Uppdateringskommandot tar inga argument"
-# "Package" är en sträng i konfigurationsfilen
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ogiltig post i konfigurationsfilen, \"Package\"-huvud saknas"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Kunde inte låsa listkatalogen"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Förstod inte nåltypen %s"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Prioritet ej angiven (eller noll) för nål"
+#: cmdline/apt-get.cc:1441
+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-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Cachen har ett inkompatibelt versionssystem"
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr ""
+"Följande paket har installerats automatiskt och är inte längre nödvändiga:"
-# NewPackage etc. är funktionsnamn
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Fel uppstod vid hantering av %s (NewPackage)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "Använd \"apt-get autoremove\" för att ta bort dem."
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Fel uppstod vid hantering av %s (UsePackage1)"
+#: cmdline/apt-get.cc:1480
+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."
-#: apt-pkg/pkgcachegen.cc:153
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Fel uppstod vid hantering av %s (NewFileDesc1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+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-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Fel uppstod vid hantering av %s (UsePackage2)"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Internt fel, AutoRemover förstörde något"
-#: apt-pkg/pkgcachegen.cc:182
-#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Fel uppstod vid hantering av %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Internt fel, AllUpgrade förstörde något"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Fel uppstod vid hantering av %s (NewVersion1)"
+msgid "Couldn't find task %s"
+msgstr "Kunde inte hitta funktionen %s"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Fel uppstod vid hantering av %s (UsePackage3)"
+msgid "Couldn't find package %s"
+msgstr "Kunde inte hitta paketet %s"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Fel uppstod vid hantering av %s (NewVersion2)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Observera, väljer %s för det reguljära uttrycket \"%s\"\n"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Fel uppstod vid hantering av %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s är satt till manuellt installerad.\n"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera."
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+"Du kan möjligen rätta till detta genom att köra \"apt-get -f install\":"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera."
+#: cmdline/apt-get.cc:1738
+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-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera."
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"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-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera."
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"Eftersom du bad om en enda handling är det mycket troligt att paketet\n"
+"helt enkelt inte kan installeras och att en felrapport om detta bör\n"
+"skickas in."
-# NewPackage etc. är funktionsnamn
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Fel uppstod vid hantering av %s (FindPkg)"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Trasiga paket"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Fel uppstod vid hantering av %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Följande ytterligare paket kommer att installeras:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Paketet %s %s hittades inte när filberoenden hanterades"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Föreslagna paket:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Kunde inte ta status på källkodspaketlistan %s"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Rekommenderade paket:"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Läser paketlistor"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Beräknar uppgradering... "
-# Bättre ord?
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Samlar filtillhandahållningar"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Misslyckades"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Kunde inte skriva till %s"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Färdig"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "In-/utfel vid lagring av källcache"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Internt fel, problemlösaren förstörde någonting"
-#: apt-pkg/acquire-item.cc:127
-#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "namnbyte misslyckades, %s (%s -> %s)."
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Du måste ange minst ett paket att hämta källkod för"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5-kontrollsumman stämmer inte"
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
+#, c-format
+msgid "Unable to find a source package for %s"
+msgstr "Kunde inte hitta något källkodspaket för %s"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
-msgstr "Hash-kontrollsumman stämmer inte"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Hoppar över redan hämtade filen \"%s\"\n"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
-"manuellt måste reparera detta paket (på grund av saknad arkitektur)."
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
-"manuellt måste reparera detta paket."
+msgid "Need to get %sB of source archives.\n"
+msgstr "Behöver hämta %sB källkodsarkiv.\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s."
+msgid "Fetch source %s\n"
+msgstr "Hämtar källkoden %s\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Storleken stämmer inte"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Misslyckades med att hämta vissa arkiv."
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Leverantörsblocket %s saknar fingeravtryck"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Packar inte upp redan uppackad källkod i %s\n"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Använder cd-rom-monteringspunkten %s\n"
-"Monterar cd-rom\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Identifierar.. "
+msgid "Unpack command '%s' failed.\n"
+msgstr "Uppackningskommandot \"%s\" misslyckades.\n"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Lagrad etikett: %s \n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Använder cd-rom-monteringspunkten %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Avmonterar cd-rom\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Väntar på skiva...\n"
+msgid "Build command '%s' failed.\n"
+msgstr "Byggkommandot \"%s\" misslyckades.\n"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Monterar cd-rom...\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Barnprocessen misslyckades"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Söker efter indexfiler på skivan...\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för"
-#: apt-pkg/cdrom.cc:671
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Hittade %u paketindex, %u källkodsindex, %u översättningsindex och %u "
-"signaturer\n"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Kunde inte hämta information om byggberoenden för %s"
-#: apt-pkg/cdrom.cc:708
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Found label '%s'\n"
-msgstr "Hittade etiketten \"%s\"\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Namnet är ogiltigt, försök igen.\n"
+msgid "%s has no build depends.\n"
+msgstr "%s har inga byggberoenden.\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
msgstr ""
-"Denna skiva heter: \n"
-"\"%s\"\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kopierar paketlistor..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Skriver ny källista\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Poster i källistan för denna skiva:\n"
-
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "Avmonterar cd-rom...\n"
+"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
+"hittas"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Skrev %i poster.\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga "
+"versioner av paketet %s tillfredsställer versionskraven"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Skrev %i poster med %i saknade filer.\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade "
+"paketet %s är för nytt"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Skrev %i poster med %i filer som inte stämmer\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Byggberoenden för %s kunde inte tillfredsställas."
-#: apt-pkg/deb/dpkgpm.cc:510
-#, c-format
-msgid "Directory '%s' missing"
-msgstr "Katalogen \"%s\" saknas"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Misslyckades med att behandla byggberoenden"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "Förbereder %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Moduler som stöds:"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "Packar upp %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Användning: apt-get [flaggor] kommando\n"
+" apt-get [flaggor] install|remove paket1 [paket2 ...]\n"
+" apt-get [flaggor] source paket1 [paket2 ...]\n"
+"\n"
+"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n"
+"paket. De mest använda kommandona är \"update\" och \"install\".\n"
+"\n"
+"Kommandon:\n"
+" update - Hämta nya paketlistor\n"
+" upgrade - Utför en uppgradering\n"
+" install - Installera nya paket (paket är libc6, inte libc6.deb)\n"
+" remove - Ta bort paket\n"
+" autoremove - Ta bort alla automatiska oanvända paket\n"
+" purge - Ta bort och helt radera paket\n"
+" source - Hämta källkodsarkiv\n"
+" build-dep - Tillfredsställ byggberoenden för källkodspaket\n"
+" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n"
+" dselect-upgrade - Följ valen från dselect\n"
+" clean - Ta bort hämtade arkivfiler\n"
+" autoclean - Ta bort gamla hämtade arkivfiler\n"
+" check - Kontrollera att det inte finns några trasiga beroenden\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext.\n"
+" -q Utdata lämplig för loggar - ingen förloppsindikator.\n"
+" -qq Ingen utdata förutom vid fel.\n"
+" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n"
+" -s Gör ingenting, simulera vad som skulle hända.\n"
+" -y Antag ja på alla frågor utan att fråga.\n"
+" -f Försök fortsätta även om integritetskontroll misslyckas.\n"
+" -m Försök fortsätta även om arkiven inte kan hittas.\n"
+" -u Visa även en lista över uppgraderade paket.\n"
+" -b Bygg källkodspaketet när det hämtats.\n"
+" -V Visa pratsamma versionsnummer.\n"
+" -c=? Läs denna konfigurationsfil.\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
+"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n"
+"för mer information och flaggor.\n"
+" Denna APT har Speciella Ko-Krafter.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "Förbereder konfigurering av %s"
+# Måste vara tre bokstäver(?)
+# "Hit" = aktuell version är fortfarande giltig
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Bra "
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Konfigurerar %s"
+# "Get:" = hämtar ny version
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Läs:"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, c-format
-msgid "Processing triggers for %s"
-msgstr "Behandlar utlösare för %s"
+# "Ign" = hoppar över
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ign "
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Installerade %s"
+# "Err" = fel vid hämtning
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Fel "
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Förbereder borttagning av %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Hämtade %sB på %s (%sB/s)\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Removing %s"
-msgstr "Tar bort %s"
+msgid " [Working]"
+msgstr " [Arbetar]"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Removed %s"
-msgstr "Tog bort %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Mediabyte: Mata in skivan med etiketten\n"
+" \"%s\"\n"
+"i enheten \"%s\" och tryck på Enter\n"
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Förbereder borttagning av hela %s"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Okänd paketpost!"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Tog bort hela %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Användning: apt-sortpkgs [flaggor] fil1 [fil2 ...]\n"
+"\n"
+"apt-sortpkgs är ett enkelt verktyg för att sortera paketfiler. Flaggan\n"
+"-s anges för att ange filens typ.\n"
+"\n"
+"Flaggor:\n"
+" -h Denna hjälptext.\n"
+" -s Använd källkodsfilssortering.\n"
+" -c=? Läs denna konfigurationsfil.\n"
+" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr "Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte monterad?)\n"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Felaktig standardinställning!"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Kunde inte lägga på programfix på filen"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Tryck på Enter för att fortsätta."
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Misslyckades med att skapa IPC-rör till underprocess"
+# 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:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Det uppstod fel vid uppackning. Jag kommer konfigurera de paket"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Anslutningen stängdes i förtid"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "som installerades. Detta kan ge dubbla fel eller fel orsakade av"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "saknade beroenden. Detta är okej, endast felen ovanför det här"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Sammanfogar tillgänglig information"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Omdirigeringssökvägen är för lång"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Misslyckades med att byta namn på %s till %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Filen %s/%s skriver över den i paketet %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Kunde inte läsa %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "Katalogerna info och temp måste vara på samma filsystem"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Läser paketlistor"
+
# Felmeddelande för misslyckad chdir
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, 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"
msgid "Unparsable control file"
msgstr "Kunde inte tolka control-filen"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Kunde inte läsa cd-rom-databasen %s"
+
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
msgstr ""
-"Paketet %s med versionen %s har ett beroende som inte kan tillfredsställas:\n"
+"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan "
+"inte användas för att lägga till skivor"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Fel cd-rom"
+
+#: methods/cdrom.cc:166
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Kunde inte hitta paketet %s"
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används."
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Totalt antal paketnamn: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Skivan hittades inte."
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normala paket: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Filen hittades inte"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Rent virtuella paket: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Kunde inte ta status"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Enstaka virtuella paket: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Misslyckades ställa in ändringstid"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Blandade virtuella paket: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Ogiltig URI, lokala URI:er får inte börja med //"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Saknade: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Loggar in"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Totalt antal olika versioner: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Kunde inte fastställa namnet på partnern"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "Totalt antal olika beskrivningar: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Kunde inte fastställa det lokala namnet"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Totalt antal beroenden: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Servern nekade anslutningen och sade: %s"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Totalt antal version/filrelationer: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER misslyckades, servern sade: %s"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "Totalt antal beskrivning/filrelationer: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS misslyckades, servern sade: %s"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Totalt antal tillhandahållningsmarkeringar: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::"
+"ProxyLogin är tom."
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Totalt antal sökmönstersträngar: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Totalt utrymme för versionsberoenden: "
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE misslyckades, servern sade: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Totalt bortkastat utrymme: "
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Tidsgränsen för anslutningen överskreds"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Totalt utrymme som kan redogöras för: "
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Servern stängde anslutningen"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
-#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Paketfilen %s är inte synkroniserad."
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Läsfel"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Du måste ange exakt ett mönster"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Ett svar spillde bufferten."
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Inga paket hittades"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Protokollet skadat"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "\"Package\"-filer:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Skrivfel"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Kunde inte skapa ett uttag (socket)"
-# Prioritet följt av URI
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Fastnålade paket:"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Kunde inte ansluta passivt uttag (socket)."
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(hittades inte)"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Installerad: "
-
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ingen)"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Kunde inte binda ett uttag (socket)"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidat: "
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Kunde inte lyssna på uttaget (socket)"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Paketnålning: "
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Kunde inte fastställa uttagets namn (socket)"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Versionstabell:"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Kunde inte sända PORT-kommando"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:789
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Okänd adressfamilj %u (AF_*)"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/ftp.cc:798
#, 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:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Användning: apt-cache [flaggor] kommando\n"
-" apt-cache [flaggor] add fil1 [fil2 ...]\n"
-" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n"
-" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n"
-"\n"
-"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n"
-"samt hämta upplysningar från dem.\n"
-"\n"
-"Kommandon:\n"
-" add - Lägg till en paketfil till källcachen\n"
-" gencaches - Bygg både paket- och källcache\n"
-" showpkg - Visa viss allmän information om ett enskilt paket\n"
-" showsrc - Visa källkodsposter\n"
-" stats - Visa viss grundläggande statistik\n"
-" dump - Visa hela filen i koncis form\n"
-" dumpavail - Skriv en \"available\"-fil på standard ut\n"
-" unmet - Visa otillfredsställbara beroenden\n"
-" search - Sök i paketlistan med ett reguljärt uttryck\n"
-" show - Visa en läsbar post för paketet\n"
-" depends - Visa rå information om beroenden för ett paket\n"
-" rdepends - Visa information om omvända beroenden för ett paket\n"
-" pkgnames - Visa namnen på alla paket\n"
-" dotty - Generera paketgrafer för GraphVis\n"
-" xvcg - Generera paketgrafer för xvcg\n"
-" policy - Visa policyinställningar\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext.\n"
-" -p=? Paketcachen.\n"
-" -s=? Källcachen.\n"
-" -q Inaktivera förloppsindikatorn.\n"
-" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n"
-" -c=? Läs denna konfigurationsfil.\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n"
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT misslyckades, servern sade: %s"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 2.1r1 Disk 1\""
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Mata in en skiva i enheten och tryck på Enter"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Kunde inte ta emot anslutningen"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problem med att lägga filen till hashtabellen"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Argumenten gavs inte parvis"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Kunde inte hämta filen, servern sade \"%s\""
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Användning: apt-config [flaggor] kommando\n"
-"\n"
-"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n"
-"\n"
-"Kommandon:\n"
-" shell - Skalläge.\n"
-" dump - Visa konfigurationen.\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext.\n"
-" -c=? Läs denna konfigurationsfil.\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Datauttag (socket) fick inte svar inom tidsgränsen"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s är inte ett giltigt DEB-paket."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Dataöverföringen misslyckades, servern sade \"%s\""
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Användning: apt-extracttemplates fil1 [fil2 ...]\n"
-"\n"
-"apt-extracttemplates är ett verktyg för att hämta ut konfigurations- \n"
-"och mallinformation från paket\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext.\n"
-" -t Ställ in temporärkatalogen.\n"
-" -c=? Läs denna konfigurationsfil.\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
+# Statusmeddelande, byter från substantiv till verb
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Frågar"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Kan inte ta reda på debconf-version. Är debconf installerat?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Kunde inte starta "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Listan över filtillägg för Packages är för lång"
+# Felmeddelande för misslyckad chdir
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Ansluter till %s (%s)"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Fel vid behandling av katalogen %s"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Listan över filtillägg för Sources är för lång"
+# [f]amilj, [t]yp, [p]rotokoll
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Fel vid skrivning av huvud till innehållsfil"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Kunde inte initiera anslutningen till %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Fel vid behandling av innehållet %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Användning: apt-ftparchive [flaggor] kommando\n"
-"Kommandon: packages binärsökväg [åsidosättningsfil [sökvägsprefix]]\n"
-" sources källsökväg [åsidosättningsfil [sökvägsprefix]]\n"
-" contents sökväg\n"
-" release sökväg\n"
-" generate konfiguration [grupper]\n"
-" clean konfiguration\n"
-"\n"
-"apt-ftparchive genererar indexfiler för Debianarkiv. Det stöder många\n"
-"former av generering, allt från helautomatiserat till funktionella\n"
-"ersättningar till dpkg-scanpackages och dpkg-scansources\n"
-"\n"
-"apt-ftparchive skapar Package-filer från ett träd med .deb-filer.\n"
-"Packagefilen innehåller alla styrfälten från paketen samt MD5-hashvärdet\n"
-"och filstorlek. En overrride-fil stöds för att tvinga värden på Priority\n"
-"och Section.\n"
-"\n"
-"På samma sätt skapar apt-ftparchive Sources-filer från ett träd med\n"
-".dsc-filer. Flaggan --source-override kan användas för att ange en\n"
-"override-fil för källkoden.\n"
-"\n"
-"Kommandona \"packages\" och \"sources\" bör köras från rotet på trädet.\n"
-"Binärsökvägen bör peka på basen på den rekursiva sökningen och\n"
-"override-filen bör innehålla override-flaggorna de framtvingade flaggorna.\n"
-"Sökvägsprefixet läggs till i filnamnsfälten om det anges. Ett exempel på\n"
-"hur programmet kan användas från Debianarkivet:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext\n"
-" --md5 Kontrollera generering av MD5\n"
-" -s=? Källkods-override-fil\n"
-" -q Tyst\n"
-" -d=? Väljer den valfria cachedatabasen\n"
-" --no-delink Aktivera \"delinkning\"-felsökningsläget\n"
-" --contents Styr skapande av contents-fil\n"
-" -c=? Läs denna konfigurationsfil\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Kunde inte ansluta till %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Inga val träffades"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Ansluter till %s"
+
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Kunde inte slå upp \"%s\""
+
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Temporärt fel vid uppslagning av \"%s\""
-#: ftparchive/apt-ftparchive.cc:832
+# Okänd felkod; %i = koden
+#: methods/connect.cc:176
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Några filer saknas i paketfilsgruppen \"%s\""
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:223
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB var skadad, filen omdöpt till %s.old"
+msgid "Unable to connect to %s %s:"
+msgstr "Kunde inte ansluta till %s %s:"
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:65
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB är gammal, försöker uppgradera %s"
+msgid "Couldn't access keyring: '%s'"
+msgstr "Kunde inte komma åt nyckelring: \"%s\""
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Argumentslistan från Acquire::gpgv::Options är för lång. Avslutar."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"Internal error: Good signature, but could not determine key fingerprint?!"
msgstr ""
-"DB-formatet är ogiltigt. Ta bort och återskapa databasen om du uppgraderar "
-"från en äldre version av apt."
+"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns "
+"fingeravtryck?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Minst en ogiltig signatur träffades på."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Kunde inte öppna DB-filen %s: %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Kunde inte köra \"%s\" för att verifiera signatur (är gnupg installerad?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Arkivet har ingen styrpost"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Okänt fel vid körning av gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Kunde inte få tag i någon markör"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Följande signaturer är ogiltiga:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är "
+"tillgänglig:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "V: Kunde inte läsa katalogen %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Kunde inte öppna rör för %s"
-#: ftparchive/writer.cc:81
+# %s = programnamn
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "V: Kunde inte ta status på %s\n"
+msgid "Read error from %s process"
+msgstr "Läsfel från %s-processen"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "F: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Väntar på huvuden"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "V: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Fick en ensam huvudrad på %u tecken"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "F: Felen gäller filen "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Felaktig huvudrad"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Misslyckades med att slå upp %s"
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Http-servern sände ett ogiltigt svarshuvud"
-# ???
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Trädvandring misslyckades"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Http-servern sände ett ogiltigt Content-Length-huvud"
-#: ftparchive/writer.cc:195
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Http-servern sände ett ogiltigt Content-Range-huvud"
+
+#: methods/http.cc:603
+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:627
+msgid "Unknown date format"
+msgstr "Okänt datumformat"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "\"Select\" misslyckades"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Anslutningen överskred tidsgränsen"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Fel vid skrivning till utdatafil"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Fel vid skrivning till fil"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Fel vid skrivning till filen"
+
+#: methods/http.cc:875
+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:877
+msgid "Error reading from server"
+msgstr "Fel vid läsning från server"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Felaktiga data i huvud"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Anslutningen misslyckades"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Internt fel"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Kan inte utföra mmap på en tom fil"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to open %s"
-msgstr "Misslyckades med att öppna %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Kunde inte utföra mmap på %lu byte"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " Avlänka %s [%s]\n"
+msgid "Selection %s not found"
+msgstr "Valet %s hittades inte"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Misslyckades med att läsa länken %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Okänd typförkortning: \"%c\""
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Misslyckades med att länka ut %s"
+msgid "Opening configuration file %s"
+msgstr "Öppnar konfigurationsfilen %s"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Misslyckades med att länka %s till %s"
+msgid "Line %d too long (max %u)"
+msgstr "Rad %d är för lång (max %u)"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Avlänkningsgränsen på %sB nåddes.\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntaxfel %s:%u: Block börjar utan namn."
-# Fält vid namn "Package"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Arkivet har inget package-fält"
+#: apt-pkg/contrib/configuration.cc:630
+#, c-format
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntaxfel %s:%u: Felformat märke"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s har ingen post i override-filen\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde"
-# parametrar: paket, ny, gammal
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " ansvarig för paketet %s är %s ej %s\n"
+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"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s har ingen källåsidosättningspost\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s har heller ingen binär åsidosättningspost\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntaxfel %s:%u: Inkluderad härifrån"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Internt fel, kunde inta hitta delen %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Misslyckades med att allokera minne"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Unable to open %s"
-msgstr "Kunde inte öppna %s"
+msgid "%c%s... Error!"
+msgstr "%c%s... Fel!"
-# parametrar: filnamn, radnummer
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Felaktig override %s rad %lu #1"
+msgid "%c%s... Done"
+msgstr "%c%s... Färdig"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Felaktig override %s rad %lu #2"
+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:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Förstår inte kommandoradsflaggan %s"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Felaktig override %s rad %lu #3"
+msgid "Command line option %s is not boolean"
+msgstr "Kommandoradsflaggan %s är inte boolsk"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Misslyckades med att läsa åsidosättningsfilen %s"
+msgid "Option %s requires an argument."
+msgstr "Flaggan %s kräver ett argument."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Okänd komprimeringsalgoritm \"%s\""
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>."
-# ???
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Komprimerade utdata %s behöver en komprimeringsuppsättning"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Misslyckades med att skapa FILE*"
-
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Misslyckades med att grena process"
-
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Barnprocess för komprimering"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\""
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Internt fel, misslyckades med att skapa %s"
+msgid "Option '%s' is too long"
+msgstr "Flaggan \"%s\" är för lång"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Misslyckades med att skapa underprocess-IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "Förstår inte %s, prova med \"true\" eller \"false\"."
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Misslyckades med att starta komprimerare "
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Felaktig operation %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "uppackare"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Kunde inte ta status på monteringspunkten %s."
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "In/ut för underprocess/fil misslyckades"
+# Felmeddelande för misslyckad chdir
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Kunde inte byta till %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Misslyckades med att läsa vid beräkning av MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Kunde inte ta status på cd-romen."
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problem med att länka ut %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "Använder inte låsning för skrivskyddade låsfilen %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "J"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Kunde inte öppna låsfilen %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Fel vid kompilering av reguljärt uttryck - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "Använder inte låsning för nfs-monterade låsfilen %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Följande paket har beroenden som inte kan tillfredsställas:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Kunde inte erhålla låset %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "men %s är installerat"
+msgid "Waited for %s but it wasn't there"
+msgstr "Väntade på %s men den fanns inte där"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "men %s kommer att installeras"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Underprocessen %s råkade ut för ett segmenteringsfel."
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "men det kan inte installeras"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Underprocessen %s svarade med en felkod (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "men det är ett virtuellt paket"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Underprocessen %s avslutades oväntat"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "men det är inte installerat"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Kunde inte öppna filen %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "men det kommer inte att installeras"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " eller"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "skrivning, har fortfarande %lu att skriva men kunde inte"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Följande NYA paket kommer att installeras:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problem med att stänga filen"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Följande paket kommer att TAS BORT:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problem med att länka ut filen"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Följande paket har hållits tillbaka:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problem med att synkronisera filen"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Följande paket kommer att uppgraderas:"
+# Felmeddelande
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Paketcachen är tom"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Följande paket kommer att NEDGRADERAS:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Paketcachefilen är skadad"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Följande tillbakahållna paket kommer att ändras:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Paketcachefilens version är inkompatibel"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (på grund av %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Denna APT saknar stöd för versionssystemet \"%s\""
-#: cmdline/apt-get.cc:547
-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-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Paketcachen byggdes för en annan arkitektur"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu uppgraderade, %lu nyinstallerade, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Beroende av"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu ominstallerade, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Förberoende av"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nedgraderade, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Föreslår"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu att ta bort och %lu ej uppgraderade.\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Rekommenderar"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu ej helt installerade eller borttagna.\n"
+# "Konfliktar"?
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Står i konflikt med"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Korrigerar beroenden...."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Ersätter"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " misslyckades."
+# "Föråldrar"?
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Föråldrar"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Kunde inte korrigera beroenden"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "Trasar sönder"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Kunde inte minimera uppgraderingsuppsättningen"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "viktigt"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Färdig"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "nödvändigt"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Du kan möjligen rätta till dessa genom att köra \"apt-get -f install\"."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "normalt"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Otillfredsställda beroenden. Prova med -f."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "valfri"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "VARNING: Följande paket kunde inte autentiseras!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
+
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Bygger beroendeträd"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Autentiseringsvarning åsidosatt.\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Kandiderande versioner"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Installera dessa paket utan verifiering [j/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Beroendegenerering"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Några av paketen kunde inte autentiseras"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "Läser tillståndsinformation"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Problem har uppstått och -y användes utan --force-yes"
+#: apt-pkg/depcache.cc:219
+#, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Misslyckades med att öppna StateFile %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Internt fel. InstallPackages anropades med trasiga paket!"
+#: apt-pkg/depcache.cc:225
+#, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Misslyckades med att skriva temporär StateFile %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat."
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Kunde inte tolka paketfilen %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Internt fel. Sorteringen färdigställdes inte"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Kunde inte tolka paketfilen %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Kunde inte låsa hämtningskatalogen"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Rad %lu i källistan %s har (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Konstigt.. storlekarna stämde inte överens, skicka e-post till apt@packages."
-"debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Rad %lu i källistan %s har fel format (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Behöver hämta %sB/%sB arkiv.\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Behöver hämta %sB arkiv.\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Rad %lu i källistan %s har fel format (Absolut dist)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Efter uppackning kommer ytterligare %sB utrymme användas på disken.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Efter uppackning kommer %sB att frigöras på disken.\n"
+msgid "Opening %s"
+msgstr "Öppnar %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Kunde inte fastställa ledigt utrymme i %s"
+msgid "Line %u too long in source list %s."
+msgstr "Rad %u är för lång i källistan %s."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Rad %u i källistan %s har fel format (typ)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Ja, gör som jag säger!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Rad %u i källistan %s har fel format (leverantörs-id)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"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:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Avbryter."
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Vill du fortsätta [J/n]? "
+"För att genomföra installationen måste det systemkritiska paketet %s "
+"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. "
+"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du "
+"aktivera flaggan \"APT::Force-LoopBreak\"."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Misslyckades med att hämta %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Misslyckades med att hämta vissa filer"
+msgid "Index file type '%s' is not supported"
+msgstr "Indexfiler av typ \"%s\" stöds inte"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Hämtningen färdig i \"endast-hämta\"-läge"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr ""
+"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det."
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --"
-"fix-missing."
+"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på "
+"tillbakahållna paket."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing och mediabyte stöds inte för tillfället"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Kunde inte korrigera problemen, du har hållt tillbaka trasiga paket."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Kunde inte korrigera saknade paket."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Listkatalogen %spartial saknas."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Avbryter installationen."
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Arkivkatalogen %spartial saknas."
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Observera, väljer %s istället för %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Hämtar fil %li av %li (%s återstår)"
+
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Hämtar fil %li av %li"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "The method driver %s could not be found."
+msgstr "Metoddrivrutinen %s kunde inte hittas."
+
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Metoden %s startade inte korrekt"
+
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-"Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n"
+"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Paketet %s är inte installerat, så det tas inte bort\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Paketsystemet \"%s\" stöds inte"
-#: cmdline/apt-get.cc:1084
+#
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Kunde inte fastställa en lämplig paketsystemstyp"
+
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Paketet %s är ett virtuellt paket som tillhandahålls av:\n"
+msgid "Unable to stat %s."
+msgstr "Kunde inte ta status på %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Installerat]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Du bör uttryckligen ange ett att installera."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\""
-#: cmdline/apt-get.cc:1106
+# "Package" är en sträng i konfigurationsfilen
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Ogiltig post i konfigurationsfilen, \"Package\"-huvud saknas"
+
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "Förstod inte nåltypen %s"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Dock kan följande paket ersätta det:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Prioritet ej angiven (eller noll) för nål"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Cachen har ett inkompatibelt versionssystem"
+
+# NewPackage etc. är funktionsnamn
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Fel uppstod vid hantering av %s (NewPackage)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Fel uppstod vid hantering av %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Fel uppstod vid hantering av %s (NewFileDesc1)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Paketet %s har ingen installationskandidat"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Fel uppstod vid hantering av %s (UsePackage2)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:182
#, 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"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Fel uppstod vid hantering av %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s är redan den senaste versionen.\n"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Fel uppstod vid hantering av %s (NewVersion1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Utgåvan \"%s\" för \"%s\" hittades inte"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Fel uppstod vid hantering av %s (UsePackage3)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Version \"%s\" för \"%s\" hittades inte"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Fel uppstod vid hantering av %s (NewVersion2)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:245
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Vald version %s (%s) för %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Uppdateringskommandot tar inga argument"
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Fel uppstod vid hantering av %s (NewFileDesc2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Kunde inte låsa listkatalogen"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera."
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera."
-#: cmdline/apt-get.cc:1433
-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-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera."
-#: cmdline/apt-get.cc:1465
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr ""
-"Följande paket har installerats automatiskt och är inte längre nödvändiga:"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr "Använd \"apt-get autoremove\" för att ta bort dem."
+# NewPackage etc. är funktionsnamn
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Fel uppstod vid hantering av %s (FindPkg)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-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."
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Fel uppstod vid hantering av %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-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-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Paketet %s %s hittades inte när filberoenden hanterades"
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Internt fel, AutoRemover förstörde något"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Kunde inte ta status på källkodspaketlistan %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Internt fel, AllUpgrade förstörde något"
+# Bättre ord?
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Samlar filtillhandahållningar"
-#: cmdline/apt-get.cc:1545
-#, c-format
-msgid "Couldn't find task %s"
-msgstr "Kunde inte hitta funktionen %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "In-/utfel vid lagring av källcache"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Kunde inte hitta paketet %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "namnbyte misslyckades, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Observera, väljer %s för det reguljära uttrycket \"%s\"\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5-kontrollsumman stämmer inte"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
-msgstr "%s är satt till manuellt installerad.\n"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
+msgstr "Hash-kontrollsumman stämmer inte"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"Du kan möjligen rätta till detta genom att köra \"apt-get -f install\":"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket "
-"(eller ange en lösning)."
+"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
+"manuellt måste reparera detta paket (på grund av saknad arkitektur)."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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\"."
+"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du "
+"manuellt måste reparera detta paket."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"Eftersom du bad om en enda handling är det mycket troligt att paketet\n"
-"helt enkelt inte kan installeras och att en felrapport om detta bör\n"
-"skickas in."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Trasiga paket"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Följande ytterligare paket kommer att installeras:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Föreslagna paket:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Rekommenderade paket:"
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Beräknar uppgradering... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Storleken stämmer inte"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Färdig"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Leverantörsblocket %s saknar fingeravtryck"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Internt fel, problemlösaren förstörde någonting"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Använder cd-rom-monteringspunkten %s\n"
+"Monterar cd-rom\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Du måste ange minst ett paket att hämta källkod för"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Identifierar.. "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Kunde inte hitta något källkodspaket för %s"
+msgid "Stored label: %s\n"
+msgstr "Lagrad etikett: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Hoppar över redan hämtade filen \"%s\"\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "Avmonterar cd-rom...\n"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Använder cd-rom-monteringspunkten %s\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Avmonterar cd-rom\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Behöver hämta %sB källkodsarkiv.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Väntar på skiva...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Hämtar källkoden %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Monterar cd-rom...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Misslyckades med att hämta vissa arkiv."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Söker efter indexfiler på skivan...\n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:678
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Packar inte upp redan uppackad källkod i %s\n"
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Hittade %u paketindex, %u källkodsindex, %u översättningsindex och %u "
+"signaturer\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Uppackningskommandot \"%s\" misslyckades.\n"
+msgid "Found label '%s'\n"
+msgstr "Hittade etiketten \"%s\"\n"
-#: cmdline/apt-get.cc:2277
-#, 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"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Namnet är ogiltigt, försök igen.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Byggkommandot \"%s\" misslyckades.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Denna skiva heter: \n"
+"\"%s\"\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Barnprocessen misslyckades"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kopierar paketlistor..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Skriver ny källista\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Kunde inte hämta information om byggberoenden för %s"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Poster i källistan för denna skiva:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s har inga byggberoenden.\n"
+msgid "Wrote %i records.\n"
+msgstr "Skrev %i poster.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan "
-"hittas"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Skrev %i poster med %i saknade filer.\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga "
-"versioner av paketet %s tillfredsställer versionskraven"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Skrev %i poster med %i filer som inte stämmer\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, 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"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s"
+msgid "Directory '%s' missing"
+msgstr "Katalogen \"%s\" saknas"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Byggberoenden för %s kunde inte tillfredsställas."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Misslyckades med att behandla byggberoenden"
+msgid "Preparing %s"
+msgstr "Förbereder %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Moduler som stöds:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Packar upp %s"
-#: cmdline/apt-get.cc:2634
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Användning: apt-get [flaggor] kommando\n"
-" apt-get [flaggor] install|remove paket1 [paket2 ...]\n"
-" apt-get [flaggor] source paket1 [paket2 ...]\n"
-"\n"
-"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n"
-"paket. De mest använda kommandona är \"update\" och \"install\".\n"
-"\n"
-"Kommandon:\n"
-" update - Hämta nya paketlistor\n"
-" upgrade - Utför en uppgradering\n"
-" install - Installera nya paket (paket är libc6, inte libc6.deb)\n"
-" remove - Ta bort paket\n"
-" autoremove - Ta bort alla automatiska oanvända paket\n"
-" purge - Ta bort och helt radera paket\n"
-" source - Hämta källkodsarkiv\n"
-" build-dep - Tillfredsställ byggberoenden för källkodspaket\n"
-" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n"
-" dselect-upgrade - Följ valen från dselect\n"
-" clean - Ta bort hämtade arkivfiler\n"
-" autoclean - Ta bort gamla hämtade arkivfiler\n"
-" check - Kontrollera att det inte finns några trasiga beroenden\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext.\n"
-" -q Utdata lämplig för loggar - ingen förloppsindikator.\n"
-" -qq Ingen utdata förutom vid fel.\n"
-" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n"
-" -s Gör ingenting, simulera vad som skulle hända.\n"
-" -y Antag ja på alla frågor utan att fråga.\n"
-" -f Försök fortsätta även om integritetskontroll misslyckas.\n"
-" -m Försök fortsätta även om arkiven inte kan hittas.\n"
-" -u Visa även en lista över uppgraderade paket.\n"
-" -b Bygg källkodspaketet när det hämtats.\n"
-" -V Visa pratsamma versionsnummer.\n"
-" -c=? Läs denna konfigurationsfil.\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
-"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n"
-"för mer information och flaggor.\n"
-" Denna APT har Speciella Ko-Krafter.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Förbereder konfigurering av %s"
-# Måste vara tre bokstäver(?)
-# "Hit" = aktuell version är fortfarande giltig
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Bra "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Konfigurerar %s"
-# "Get:" = hämtar ny version
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Läs:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, c-format
+msgid "Processing triggers for %s"
+msgstr "Behandlar utlösare för %s"
-# "Ign" = hoppar över
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ign "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Installerade %s"
-# "Err" = fel vid hämtning
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Fel "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Förbereder borttagning av %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Hämtade %sB på %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Tar bort %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Arbetar]"
+msgid "Removed %s"
+msgstr "Tog bort %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Förbereder borttagning av hela %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Okänd paketpost!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Tog bort hela %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Användning: apt-sortpkgs [flaggor] fil1 [fil2 ...]\n"
-"\n"
-"apt-sortpkgs är ett enkelt verktyg för att sortera paketfiler. Flaggan\n"
-"-s anges för att ange filens typ.\n"
-"\n"
-"Flaggor:\n"
-" -h Denna hjälptext.\n"
-" -s Använd källkodsfilssortering.\n"
-" -c=? Läs denna konfigurationsfil.\n"
-" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n"
+"Kan inte skriva loggfil, openpty() misslyckades (/dev/pts inte monterad?)\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Felaktig standardinställning!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Kunde inte lägga på programfix på filen"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Tryck på Enter för att fortsätta."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Anslutningen stängdes i förtid"
-# 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:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Det uppstod fel vid uppackning. Jag kommer konfigurera de paket"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Rad %d är för lång (max %u)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "som installerades. Detta kan ge dubbla fel eller fel orsakade av"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Fel uppstod vid hantering av %s (NewFileDesc1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "saknade beroenden. Detta är okej, endast felen ovanför det här"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Fel uppstod vid hantering av %s (NewFileDesc2)"
-#: dselect/install:103
-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"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Lagrad etikett: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Sammanfogar tillgänglig information"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Hittade %u paketindex, %u källkodsindex, %u översättningsindex och %u "
+#~ "signaturer\n"
#~ msgid "openpty failed\n"
#~ msgstr "\"openpty\" misslyckades\n"
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the apt package.
# Theppiak Karoonboonyanan <thep@linux.thai.net>, 2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-09-17 16:07+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "ซีดีรอมผิดแผ่น"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "ไม่พบแผ่น"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "ไม่พบแฟ้ม"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "stat ไม่สำเร็จ"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //"
-
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "เข้าระบบ"
-
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้"
-
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้"
+msgid "Unable to locate package %s"
+msgstr "ไม่พบแพกเกจ %s"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "จำนวนชื่อแพกเกจทั้งหมด : "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " แพกเกจปกติ: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " แพกเกจเสมือนแท้ๆ: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " แพกเกจเสมือนผสม: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " แพกเกจที่ขาดหาย: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "หมà¸\94à¹\80วลารà¸à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "à¸\88ำà¸\99วà¸\99รุà¹\88à¸\99à¸\97ีà¹\88à¹\81à¸\95à¸\81à¸\95à¹\88าà¸\87à¸\81ัà¸\99à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "à¹\80à¸\8bิรà¹\8cà¸\9fà¹\80วà¸à¸£à¹\8cà¸\9bิà¸\94à¸\81ารà¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "à¸\88ำà¸\99วà¸\99à¸\84ำà¸\9aรรยายà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¹\81à¸\95à¸\81à¸\95à¹\88าà¸\87à¸\81ัà¸\99à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "à¸\81ารà¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\9cิà¸\94à¸\9eลาà¸\94"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "à¸\88ำà¸\99วà¸\99à¸\81ารà¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87ระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "à¸\84ำà¸\95à¸à¸\9aà¸\97à¹\88วมà¸\9aัà¸\9fà¹\80à¸\9fà¸à¸£à¹\8c"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c รุà¹\88à¸\99/à¹\81à¸\9fà¹\89ม à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "มีà¸\84วามà¹\80สียหายà¸\82à¸à¸\87à¹\82à¸\9eรà¹\82à¸\97à¸\84à¸à¸¥"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c à¸\84ำà¸\9aรรยาย/à¹\81à¸\9fà¹\89ม à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "à¸\81ารà¹\80à¸\82ียà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\9cิà¸\94à¸\9eลาà¸\94"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "à¸\88ำà¸\99วà¸\99à¸\9cัà¸\87à¸\81ารà¸\95ระà¹\80à¸\95รียมà¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "à¹\84มà¹\88สามารà¸\96สรà¹\89าà¸\87à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "à¸\88ำà¸\99วà¸\99สà¸\95ริà¸\87à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95à¸\82à¹\89à¸à¸¡à¸¹à¸¥ à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81หมà¸\94à¹\80วลาà¸\84à¸à¸¢"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "à¸\82à¸\99าà¸\94à¸\82à¸à¸\87à¸\9eืà¹\89à¸\99à¸\97ีà¹\88à¸\84วามà¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87ระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "ลà¹\89มà¹\80หลว"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "à¸\9eืà¹\89à¸\99à¸\97ีà¹\88สำรà¸à¸\87à¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¸\95à¹\81à¸\9aà¸\9a passive"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "à¸\9eืà¹\89à¸\99à¸\97ีà¹\88à¸\97ีà¹\88à¸\99ัà¸\9aรวมà¸\97ัà¹\89à¸\87หมà¸\94: "
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "à¹\84มà¹\88สามารà¸\96 bind à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "à¸\84ุà¸\93à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\95à¹\80à¸\97ิรà¹\8cà¸\99à¸\94à¹\89วย"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "à¹\84มà¹\88สามารà¸\96 listen à¸\97ีà¹\88à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "à¹\84มà¹\88สามารà¸\96ระà¸\9aุà¸\8aืà¹\88à¸à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "à¹\81à¸\9fà¹\89มà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "à¹\84มà¹\88สามารà¸\96สà¹\88à¸\87à¸\84ำสัà¹\88à¸\87 PORT"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¹\81à¸\84à¸\8aà¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\9aà¸\84วามà¹\80à¸\9bà¹\87à¸\99à¸\88ริà¸\87à¹\81ลà¹\89ว à¹\84มà¹\88สามารà¸\96à¸à¹\89าà¸\87à¸à¸´à¸\87à¹\84à¸\82วà¹\89ระหวà¹\88าà¸\87à¹\81à¸\9fà¹\89มà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
-#: methods/ftp.cc:789
+#: cmdline/apt-cache.cc:1532
#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)"
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "แพกเกจที่ถูกตรึง:"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(ไม่พบ)"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "ไม่สามารถรับการเชื่อมต่อ"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " ที่ติดตั้งอยู่: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "เกิดปัญหาขณะคำนวณค่า hash ของแฟ้ม"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(ไม่มี)"
-#: methods/ftp.cc:877
-#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " รุ่นที่ติดตั้งได้: "
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " การตรึงแพกเกจ: "
-#: methods/ftp.cc:922
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " ตารางรุ่น:"
+
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "สอบถาม"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n"
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "ไม่สามารถเรียก "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "เชื่อมต่อไปยัง %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)"
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n"
+" apt-cache [ตัวเลือก] add file1 [file2 ...]\n"
+" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache เป็นเครื่องมือระดับล่างสำหรับจัดการแฟ้มแคชไบนารีของ APT\n"
+"และใช้สืบค้นข้อมูลจากแคช\n"
+"\n"
+"คำสั่ง:\n"
+" add - เพิ่มแฟ้มแพกเกจเข้าในแคชของซอร์ส\n"
+" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n"
+" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n"
+" showsrc - แสดงระเบียนข้อมูลซอร์ส\n"
+" stats - แสดงสถิติทั่วไป\n"
+" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n"
+" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทาง stdout\n"
+" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n"
+" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n"
+" show - แสดงข้อมูลของแพกเกจ\n"
+" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n"
+" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n"
+" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n"
+" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphVis\n"
+" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n"
+" policy - แสดงค่าตั้งนโยบาย\n"
+"\n"
+"ตัวเลือก:\n"
+" -h แสดงข้อความช่วยเหลือนี้\n"
+" -p=? แฟ้มเก็บแคชของแพกเกจ\n"
+" -s=? แฟ้มเก็บแคชของซอร์ส\n"
+" -q ปิดแถบแสดงความคืบหน้า\n"
+" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n"
+" -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
+"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "เชื่อมต่อไปยัง %s"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 4.0r1 Disk 1'"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "เกิดข้อผิดพลาดชั่วคราวขณะเปิดหาที่อยู่ '%s'"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i)"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "ไม่สามารถเชื่อมต่อไปยัง %s %s:"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n"
+"\n"
+"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n"
+"\n"
+"คำสั่ง:\n"
+" shell - โหมดเชลล์\n"
+" dump - แสดงค่าตั้ง\n"
+"\n"
+"ตัวเลือก:\n"
+" -h ข้อความช่วยเหลือนี้ -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "ไม่สามารถเข้าใช้พวงกุญแจ: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: รายการอาร์กิวเมนต์ใน Acquire::gpgv::Options ยาวเกินไป จะจบการทำงาน"
+msgid "%s not a valid DEB package."
+msgstr "%s ไม่ใช่แพกเกจ DEB ที่ใช้การได้"
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"วิธีใช้: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates เป็นเครื่องมือสำหรับแยกเอาข้อมูลการตั้งค่าและเทมเพลต\n"
+"ออกมาจากแพกเกจเดเบียน\n"
+"\n"
+"ตัวเลือก:\n"
+" -h แสดงข้อความช่วยเหลือนี้\n"
+" -t กำหนดไดเรกทอรีทำงานชั่วคราว\n"
+" -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "ไม่สามารถเรียก '%s' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gnupg ไว้หรือไม่?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n"
+msgid "Unable to write to %s"
+msgstr "ไม่สามารถเขียนลงแฟ้ม %s"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "ไม่สามารถอ่านรุ่นของ debconf ได้ ได้ติดตั้ง debconf ไว้หรือไม่?"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "stat %s ไม่สำเร็จ"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "รายชื่อนามสกุลแพกเกจยาวเกินไป"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\84à¸\9bà¸\9bà¹\8cสำหรัà¸\9a %s"
+msgid "Error processing directory %s"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cลà¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µ %s"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "เกิดข้อผิดพลาดขณะอ่านจากโพรเซส %s"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "รายชื่อนามสกุลซอร์สยาวเกินไป"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "รà¸à¸«à¸±à¸§à¸\82à¹\89à¸à¸¡à¸¹à¸¥"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¹\80à¸\82ียà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¹\88วà¸\99หัวลà¸\87à¹\83à¸\99à¹\81à¸\9fà¹\89มสารà¸\9aัà¸\8d"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "ได้รับบรรทัดข้อมูลส่วนหัวยาวเกิน %u อักขระ"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด"
+msgid "Error processing contents %s"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผลสารบัญ %s"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"วิธีใช้: apt-ftparchive [ตัวเลือก] คำสั่ง\n"
+"คำสั่ง: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive ใช้สร้างแฟ้มดัชนีสำหรับแหล่งแพกเกจเดเบียน รองรับวิธีสร้างหลายแบบ\n"
+"ตั้งแต่แบบอัตโนมัติทั้งหมด ไปจนถึงการใช้แทน dpkg-scanpackages และ dpkg-scansources\n"
+"\n"
+"apt-ftparchive สร้างแฟ้ม Package จากต้นไม้ไดเรกทอรีที่เก็บ .deb แฟ้ม Package\n"
+"จะรวมเนื้อหาข้อมูลควบคุมทุกรายการของแต่ละแพกเกจ รวมถึง MD5 hash และขนาดแฟ้ม\n"
+"และรองรับการสร้างแฟ้ม override เพื่อบังคับค่าลำดับความสำคัญและหมวดแพกเกจด้วย\n"
+"\n"
+"ในทำนองเดียวกัน apt-ftparchive จะสร้างแฟ้ม Sources จากต้นไม้ไดเรกทอรีที่เก็บ .dsc\n"
+"คุณสามารถใช้ตัวเลือก --source-override เพื่อระบุแฟ้ม override สำหรับซอร์สได้\n"
+"\n"
+"คำสั่ง 'packages' และ 'sources' ควรเรียกที่ตำแหน่งรากของต้นไม้ไดเรกทอรี\n"
+"ค่า binarypath ควรชี้ไปที่ตำแหน่งฐานที่จะค้นหาแบบทั่วถึง และแฟ้ม override ก็ควรมีแฟล็ก\n"
+"override ต่างๆ สำหรับแพกเกจ ค่า pathprefix จะถูกเพิ่มเข้าที่หน้าข้อมูล filename ถ้ามี\n"
+"ตัวอย่างการใช้งานจากแหล่งแพกเกจเดเบียน:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"ตัวเลือก:\n"
+" -h แสดงข้อความช่วยเหลือนี้\n"
+" --md5 ควบคุมการสร้าง MD5\n"
+" -s=? แฟ้ม override สำหรับซอร์ส\n"
+" -q ทำงานแบบเงียบ\n"
+" -d=? เลือกฐานข้อมูลแคชอื่น\n"
+" --no-delink เปิดโหมดดีบั๊กสำหรับการตัดลิงก์\n"
+" --contents ควบคุมการสร้างแฟ้มสารบัญ\n"
+" -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "à¹\80à¸\8bิรà¹\8cà¸\9fà¹\80วà¸à¸£à¹\8c HTTP สà¹\88à¸\87à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¹\88วà¸\99หัว Content-Range มาà¹\84มà¹\88à¸\96ูà¸\81à¸\95à¹\89à¸ง"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "à¹\84มà¹\88มีรายà¸\81ารà¹\80ลืà¸à¸\81à¸\97ีà¹\88à¸\95รง"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "บางแฟ้มขาดหายไปในกลุ่มแฟ้มแพกเกจ `%s'"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB เสีย จะเปลี่ยนชื่อแฟ้มเป็น %s.old"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "select ไม่สำเร็จ"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB เป็นรุ่นเก่า จะพยายามปรับรุ่น %s ขึ้น"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "หมดเวลารอเชื่อมต่อ"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr "ฟอร์แมตของ DB ผิด ถ้าคุณเพิ่งปรับรุ่นมาจาก apt รุ่นเก่า กรุณาลบฐานข้อมูลแล้วสร้างใหม่"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "ไม่สามารถเปิดแฟ้ม DB %s: %s"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "stat %s ไม่สำเร็จ"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¹\80à¸\82ียà¸\99ลà¸\87à¹\81à¸\9fà¹\89ม"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84มà¹\88มีระà¹\80à¸\9aียà¸\99à¸\84วà¸\9aà¸\84ุม"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\88าà¸\81à¹\80à¸\8bิรà¹\8cà¸\9fà¹\80วà¸à¸£à¹\8c à¸\9bลายà¸\97าà¸\87à¸à¸µà¸\81à¸\94à¹\89าà¸\99หà¸\99ึà¹\88à¸\87à¸\9bิà¸\94à¸\81ารà¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\99ำà¸\95ัวà¸\8aีà¹\89à¸\95ำà¹\81หà¸\99à¹\88à¸\87มาà¹\83à¸\8aà¹\89à¹\84à¸\94à¹\89"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: อ่านไดเรกทอรี %s ไม่สำเร็จ\n"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "ข้อมูลส่วนหัวผิดพลาด"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: stat %s ไม่สำเร็จ\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "เชื่อมต่อไม่สำเร็จ"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "ข้อผิดพลาดภายใน"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "ไม่สามารถ mmap แฟ้มเปล่า"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: ข้อผิดพลาดเกิดกับแฟ้ม "
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "à¹\84มà¹\88สามารà¸\96สรà¹\89าà¸\87 mmap à¸\82à¸\99าà¸\94 %lu à¹\84à¸\9aà¸\95à¹\8c"
+msgid "Failed to resolve %s"
+msgstr "หาà¸\9eาà¸\98à¹\80à¸\95à¹\87มà¸\82à¸à¸\87 %s à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "ไม่พบรายการเลือก %s"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "เดินท่องต้นไม้ไม่สำเร็จ"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "à¸\9eà¸\9aà¸\95ัวยà¹\88à¸à¸\82à¸à¸\87à¸\8aà¸\99ิà¸\94à¸\97ีà¹\88à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81: '%c'"
+msgid "Failed to open %s"
+msgstr "à¹\80à¸\9bิà¸\94 %s à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "ขณะเปิดแฟ้มค่าตั้ง %s"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:510
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Line %d too long (max %u)"
-msgstr "บรรทัด %d ยาวเกินไป (สูงสุด %u)"
+msgid "Failed to readlink %s"
+msgstr "readlink %s ไม่สำเร็จ"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ"
+msgid "Failed to unlink %s"
+msgstr "unlink %s ไม่สำเร็จ"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ"
+msgid "*** Failed to link %s to %s"
+msgstr "*** ลิงก์ %s ไปยัง %s ไม่สำเร็จ"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB แล้ว\n"
-#: apt-pkg/contrib/configuration.cc:682
-#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป"
+msgid " %s has no override entry\n"
+msgstr " %s ไม่มีข้อมูล override\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่"
+msgid " %s maintainer is %s not %s\n"
+msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ"
+msgid " %s has no source override entry\n"
+msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม"
+msgid " %s has no binary override entry either\n"
+msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Unable to read %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99 %s"
+msgid "Internal error, could not locate member %s"
+msgstr "à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: à¹\84มà¹\88à¸\9eà¸\9aสมาà¸\8aิà¸\81 %s"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... ผิดพลาด!"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - จองหน่วยความจำไม่สำเร็จ"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... เสร็จแล้ว"
+msgid "Unable to open %s"
+msgstr "ไม่สามารถเปิด %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 '%c' [à¸\88าà¸\81 %s]"
+msgid "Malformed override %s line %lu #1"
+msgstr "à¹\81à¸\9fà¹\89ม override %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9aà¸\97ีà¹\88à¸\9aรรà¸\97ัà¸\94 %lu #1"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "à¹\84มà¹\88à¹\80à¸\82à¹\89าà¹\83à¸\88à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "à¹\81à¸\9fà¹\89ม override %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9aà¸\97ีà¹\88à¸\9aรรà¸\97ัà¸\94 %lu #2"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 %s à¹\84มà¹\88à¹\84à¸\94à¹\89à¹\80à¸\9bà¹\87à¸\99à¸\84à¹\88าà¸\9aูลีà¸\99"
+msgid "Malformed override %s line %lu #3"
+msgstr "à¹\81à¸\9fà¹\89ม override %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9aà¸\97ีà¹\88à¸\9aรรà¸\97ัà¸\94 %lu #3"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s requires an argument."
-msgstr "à¸\95ัวà¹\80ลืà¸à¸\81 %s à¸\95à¹\89à¸à¸\87มีà¸à¸²à¸£à¹\8cà¸\81ิวà¹\80มà¸\99à¸\95à¹\8c"
+msgid "Failed to read the override file %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¹\81à¸\9fà¹\89ม override %s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "à¸\95ัวà¹\80ลืà¸à¸\81 %s: à¸\81ารà¸\81ำหà¸\99à¸\94รายà¸\81ารà¸\84à¹\88าà¸\95ัà¹\89à¸\87à¸\95à¹\89à¸à¸\87มี =<val>"
+msgid "Unknown compression algorithm '%s'"
+msgstr "à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81à¸à¸±à¸¥à¸\81à¸à¸£à¸´à¸\97ึมà¸\9aีà¸\9aà¸à¸±à¸\94 '%s'"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "à¸\95ัวà¹\80ลืà¸à¸\81 %s à¸\95à¹\89à¸à¸\87à¸\81ารà¸à¸²à¸£à¹\8cà¸\81ิวà¹\80มà¸\99à¸\95à¹\8cà¸\88ำà¸\99วà¸\99à¹\80à¸\95à¹\87ม à¹\84มà¹\88à¹\83à¸\8aà¹\88 '%s'"
+msgid "Compressed output %s needs a compression set"
+msgstr "à¸\9cลลัà¸\9eà¸\98à¹\8cà¸\82à¸à¸\87à¸\81ารà¸\9aีà¸\9aà¸à¸±à¸\94 %s à¸\95à¹\89à¸à¸\87มีà¸\8aุà¸\94à¸\82à¸à¸\87à¸\81ารà¸\9aีà¸\9aà¸à¸±à¸\94à¸\94à¹\89วย"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "ตัวเลือก '%s' ยาวเกินไป"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "สร้าง FILE* ไม่สำเร็จ"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "ไม่รู้จักคำสั่ง %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "fork ไม่สำเร็จ"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "ไม่สามารถ stat จุดเมานท์ %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "โพรเซสลูกสำหรับบีบอัด"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bลีà¹\88ยà¸\99à¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µà¹\84à¸\9bยัง %s"
+msgid "Internal error, failed to create %s"
+msgstr "à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: à¹\84มà¹\88สามารà¸\96สรà¹\89าง %s"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "à¹\84มà¹\88สามารà¸\96 stat à¸\8bีà¸\94ีรà¸à¸¡"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "สรà¹\89าà¸\87 IPC à¸\82à¸à¸\87à¹\82à¸\9eรà¹\80à¸\8bสยà¹\88à¸à¸¢à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "ไม่สามารถเปิดแฟ้มล็อค %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "ตัวคลายบีบอัด"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO ไปยังโพรเซสย่อยหรือแฟ้มล้มเหลว"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "ไม่สามารถล็อค %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "อ่านแฟ้มไม่สำเร็จขณะคำนวณ MD5"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "รà¸à¹\82à¸\9eรà¹\80à¸\8bส %s à¹\81à¸\95à¹\88à¸\95ัวà¹\82à¸\9eรà¹\80à¸\8bสà¹\84มà¹\88à¸à¸¢à¸¹à¹\88"
+msgid "Problem unlinking %s"
+msgstr "มีà¸\9bัà¸\8dหาà¸\82à¸\93ะลà¸\9aà¹\81à¸\9fà¹\89ม %s"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "à¹\82à¸\9eรà¹\80à¸\8bสยà¹\88à¸à¸¢ %s à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸à¸\87à¸\81ารà¹\83à¸\8aà¹\89ยà¹\88าà¸\99หà¸\99à¹\88วยà¸\84วามà¸\88ำ (segmentation fault)"
+msgid "Failed to rename %s to %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bลีà¹\88ยà¸\99à¸\8aืà¹\88ภ%s à¹\84à¸\9bà¹\80à¸\9bà¹\87à¸\99 %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "à¹\82à¸\9eรà¹\80à¸\8bสยà¹\88à¸à¸¢ %s à¸\88à¸\9aà¸\81ารà¸\97ำà¸\87าà¸\99à¸\81ระà¸\97ัà¸\99หัà¸\99"
+msgid "Regex compilation error - %s"
+msgstr "à¸\84à¸à¸¡à¹\84à¸\9eลà¹\8cà¸\99ิà¸\9eà¸\88à¸\99à¹\8cà¹\80รà¸\81ิวลารà¹\8cà¹\84มà¹\88สำà¹\80รà¹\87à¸\88 - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "ไม่สามารถเปิดแฟ้ม %s"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "read: ยังเหลือ %lu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว"
+msgid "but %s is installed"
+msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "write: ยังเหลือ %lu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้"
+msgid "but %s is to be installed"
+msgstr "แต่รุ่นที่จะติดตั้งคือ %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะà¸\9bิà¸\94à¹\81à¸\9fà¹\89ม"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "à¹\81à¸\95à¹\88à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84à¸\94à¹\89"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะลà¸\9aà¹\81à¸\9fà¹\89ม"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "à¹\81à¸\95à¹\88à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\99ีà¹\89à¹\80à¸\9bà¹\87à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สมืà¸à¸\99"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะ sync à¹\81à¸\9fà¹\89ม"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "à¹\81à¸\95à¹\88à¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "à¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88วà¹\88าà¸\87à¹\80à¸\9bลà¹\88า"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "à¹\81à¸\95à¹\88à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\99ีà¹\89à¸\88ะà¹\84มà¹\88à¸\96ูà¸\81à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "แฟ้มแคชของแพกเกจเสียหาย"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " หรือ"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "à¹\81à¸\9fà¹\89มà¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80à¸\9bà¹\87à¸\99à¸\84à¸\99ละรุà¹\88à¸\99à¸\81ัà¸\99"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "à¸\88ะà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 *à¹\83หมà¹\88* à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "จะ *ลบ* แพกเกจต่อไปนี้:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "à¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\96ูà¸\81สรà¹\89าà¸\87มาสำหรัà¸\9aสà¸\96าà¸\9bัà¸\95ยà¸\81รรมà¸à¸·à¹\88à¸\99"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "à¸\88ะà¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "à¸\88ะà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89à¸\82ึà¹\89à¸\99:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89à¸\82à¸\93ะà¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "à¸\88ะà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89 *ลà¸\87*:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "à¹\81à¸\99ะà¸\99ำ"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "à¸\88ะà¹\80à¸\9bลีà¹\88ยà¸\99à¹\81à¸\9bลà¸\87รายà¸\81ารà¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "ควรใช้ร่วมกับ"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (เนื่องจาก %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "ขัดแย้งกับ"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n"
+"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "แทนที่"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "ใช้แทน"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "ติดตั้งซ้ำ %lu, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr "ทำให้พัง"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "ปรับรุ่นลง %lu, "
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "สำคัญ"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "จำเป็น"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "มาà¸\95รà¸\90าà¸\99"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "à¸\81ำลัà¸\87à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¸\84วามà¸\82ึà¹\89à¸\99à¸\95à¹\88à¸à¸\81ัà¸\99ระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88..."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "ตัวเลือก"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " ล้มเหลว"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "สà¹\88วà¸\99à¹\80สริม"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¸\84วามà¸\82ึà¹\89à¸\99à¸\95à¹\88à¸à¸\81ัà¸\99ระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84à¸\94à¹\89"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "à¸\81ำลัà¸\87สรà¹\89าà¸\87à¹\82à¸\84รà¸\87สรà¹\89าà¸\87ลำà¸\94ัà¸\9aà¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\88ำà¸\81ัà¸\94รายà¸\81ารà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\83หà¹\89à¸\99à¹\89à¸à¸¢à¸\97ีà¹\88สุà¸\94à¹\84à¸\94à¹\89"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "รุ่นแพกเกจที่มี"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " เสร็จแล้ว"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "สรà¹\89าà¸\87ลำà¸\94ัà¸\9aà¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "à¸\84ุà¸\93à¸à¸²à¸\88à¸\95à¹\89à¸à¸\87à¹\80รียà¸\81 `apt-get -f install' à¹\80à¸\9eืà¹\88à¸à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\80หลà¹\88าà¸\99ีà¹\89"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr "à¸\81ำลัà¸\87à¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¸\96าà¸\99ะ"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "รายà¸\81ารà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89à¹\84มà¹\88à¸\84รà¸\9a à¸\81รุà¸\93าลà¸à¸\87à¹\83à¸\8aà¹\89à¸\95ัวà¹\80ลืà¸à¸\81 -f"
-#: apt-pkg/depcache.cc:219
-#, c-format
-msgid "Failed to open StateFile %s"
-msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!"
-#: apt-pkg/depcache.cc:225
-#, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่ [y/N]? "
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "à¸\81ำลัà¸\87à¹\80à¸\9bิà¸\94 %s"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99รายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84à¸\94à¹\89"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "แปลกประหลาด.. ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s ยาวà¹\80à¸\81ิà¸\99à¹\84à¸\9b"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "à¸\95à¹\89à¸à¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %sB/%sB\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (à¸\8aà¸\99ิà¸\94)"
+msgid "Need to get %sB of archives.\n"
+msgstr "à¸\95à¹\89à¸à¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %sB\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "หลังจากแตกแพกเกจแล้ว ต้องใช้เนื้อที่บนดิสก์อีก %s\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "หลังจากแตกแพกเกจแล้ว เนื้อที่บนดิสก์จะว่างเพิ่มอีก %s\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81à¸\8aà¸\99ิà¸\94 '%s' à¸\97ีà¹\88à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s"
+msgid "Couldn't determine free space in %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\84ำà¸\99วà¸\93à¸\9eืà¹\89à¸\99à¸\97ีà¹\88วà¹\88าà¸\87à¹\83à¸\99 %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (id à¸\9cูà¹\89à¸\9cลิà¸\95)"
+msgid "You don't have enough free space in %s."
+msgstr "à¸\84ุà¸\93มีà¸\9eืà¹\89à¸\99à¸\97ีà¹\88วà¹\88าà¸\87à¹\80หลืà¸à¹\84มà¹\88à¸\9eà¸à¹\83à¸\99 %s"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว "
-"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ "
-"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย "
-"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak"
+"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n"
+"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "เลิกทำ"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?"
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ"
+msgid "Failed to fetch %s %s\n"
+msgstr "ไม่สามารถดาวน์โหลด %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94: pkgProblemResolver::Resolve สรà¹\89าà¸\87à¸\84ำà¸\95à¸à¸\9aà¸\97ีà¹\88à¸\97ำà¹\83หà¹\89à¹\80à¸\81ิà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สีย "
-"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้"
+"à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\9aาà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84มà¹\88สำà¹\80รà¹\87à¸\88 à¸\9aาà¸\87à¸\97ี à¸\81ารà¹\80รียà¸\81 apt-get update หรืà¸à¸¥à¸à¸\87à¹\83à¸\8aà¹\89à¸\95ัวà¹\80ลืà¸à¸\81 --fix-"
+"missing อาจช่วยได้"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\84à¸\94à¹\89 à¸\84ุà¸\93à¹\84à¸\94à¹\89à¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¹\80สียà¸à¸¢à¸¹à¹\88à¹\84วà¹\89"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "ยัà¸\87à¹\84มà¹\88รà¸à¸\87รัà¸\9a --fix-missing à¸\9eรà¹\89à¸à¸¡à¸\81ัà¸\9aà¸\81ารà¹\80à¸\9bลีà¹\88ยà¸\99à¹\81à¸\9cà¹\88à¸\99"
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "จะล้มเลิกการติดตั้ง"
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "à¹\84มà¹\88มีà¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %spartial"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "หมายà¹\80หà¸\95ุ: à¸\88ะà¹\80ลืà¸à¸\81 %s à¹\81à¸\97à¸\99 %s\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "à¸\81ำลัà¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9fà¹\89มà¸\97ีà¹\88 %li à¸\88าà¸\81 %li (à¹\80หลืà¸à¸à¸µà¸\81 %s)"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "à¸\88ะà¸\82à¹\89าม %s à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¹\81ลà¹\89ว à¹\81ละà¹\84มà¹\88มีà¸\81ารà¸\81ำหà¸\99à¸\94à¹\83หà¹\89à¸\9bรัà¸\9aรุà¹\88à¸\99\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "à¸\81ำลัà¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9fà¹\89มà¸\97ีà¹\88 %li à¸\88าà¸\81 %li"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\84มà¹\88à¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89 à¸\88ึà¸\87à¹\84มà¹\88มีà¸\81ารà¸\96à¸à¸\94à¸\96à¸à¸\99\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\84à¸\94รà¹\80วà¸à¸£à¹\8cสำหรัà¸\9aวิà¸\98ีà¸\81าร %s"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\80à¸\9bà¹\87à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สมืà¸à¸\99à¸\97ีà¹\88à¸\95ระà¹\80à¸\95รียมà¹\82à¸\94ย:\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [ติดตั้งอยู่]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "คุณควรเจาะจงเลือกแพกเกจใดแพกเกจหนึ่งเพื่อติดตั้ง"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "ไม่สามารถเรียกทำงานวิธีการ %s"
+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"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "อย่างไรก็ดี แพกเกจต่อไปนี้ได้แทนที่แพกเกจดังกล่าวไปแล้ว:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "à¸\81รุà¸\93าà¹\83สà¹\88à¹\81à¸\9cà¹\88à¸\99à¸\8aืà¹\88à¸: '%s' ลà¸\87à¹\83à¸\99à¹\84à¸\94รวà¹\8c '%s' à¹\81ลà¹\89วà¸\81à¸\94 enter"
+msgid "Package %s has no installation candidate"
+msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\84มà¹\88มีรุà¹\88à¸\99à¸\97ีà¹\88à¸\88ะà¹\83à¸\8aà¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "à¹\84มà¹\88รà¸à¸\87รัà¸\9aระà¸\9aà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 '%s'"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87 %s à¸\8bà¹\89ำà¹\84à¸\94à¹\89 à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81à¹\84มà¹\88สามารà¸\96à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\84à¸\94à¹\89\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้"
+#: cmdline/apt-get.cc:1164
+#, c-format
+msgid "%s is already the newest version.\n"
+msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Unable to stat %s."
-msgstr "à¹\84มà¹\88สามารà¸\96 stat %s"
+msgid "Release '%s' for '%s' was not found"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aรุà¹\88à¸\99ยà¹\88à¸à¸¢ '%s' à¸\82à¸à¸\87 '%s'"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย"
+#: cmdline/apt-get.cc:1195
+#, c-format
+msgid "Version '%s' for '%s' was not found"
+msgstr "ไม่พบรุ่น '%s' ของ '%s'"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "เลือกรุ่น %s (%s) สำหรับ %s แล้ว\n"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\81à¸\88à¸\87หรืà¸à¹\80à¸\9bิà¸\94รายà¸\8aืà¹\88à¸à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88หรืà¸à¸ªà¸\96าà¸\99ะà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84à¸\94à¹\89"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "à¸\84ำสัà¹\88à¸\87 update à¹\84มà¹\88รัà¸\9aà¸à¸²à¸£à¹\8cà¸\81ิวà¹\80มà¸\99à¸\95à¹\8cà¹\80à¸\9eิà¹\88ม"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "à¸\84ุà¸\93à¸à¸²à¸\88à¹\80รียà¸\81 `apt-get update' à¹\80à¸\9eืà¹\88à¸à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\80หลà¹\88าà¸\99ีà¹\89à¹\84à¸\94à¹\89"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "à¹\84มà¹\88สามารà¸\96ลà¹\87à¸à¸\84à¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µà¸£à¸²à¸¢à¸\8aืà¹\88à¸à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง: ไม่มีข้อมูลส่วนหัว 'Package'"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน"
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "ไม่เข้าใจชนิดการตรึง %s"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง"
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "à¹\81à¸\84à¸\8aมีระà¸\9aà¸\9aà¸\99ัà¸\9aรุà¹\88à¸\99à¸\97ีà¹\88à¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\99"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "à¹\83à¸\8aà¹\89 'apt-get autoremove' à¹\80à¸\9eืà¹\88à¸à¸¥à¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\94ัà¸\87à¸\81ลà¹\88าวà¹\84à¸\94à¹\89"
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewPackage)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
+"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n"
+"กรุณารายงานบั๊กนี้ของแพกเกจ apt"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage1)"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:"
-#: apt-pkg/pkgcachegen.cc:153
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)"
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย"
-#: apt-pkg/pkgcachegen.cc:178
-#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage2)"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "เกิดข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (NewFileVer1)"
+msgid "Couldn't find task %s"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¸\87าà¸\99 %s"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (NewVersion1)"
+msgid "Couldn't find package %s"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (UsePackage3)"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "หมายà¹\80หà¸\95ุ: à¸\88ะà¹\80ลืà¸à¸\81 %s สำหรัà¸\9aà¸\99ิà¸\9eà¸\88à¸\99à¹\8cà¹\80รà¸\81ิวลารà¹\8c '%s'\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (NewVersion2)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "à¸\81ำหà¸\99à¸\94 %s à¹\83หà¹\89à¹\80à¸\9bà¹\87à¸\99à¸\81ารà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81à¸\9aà¸\9aà¹\80ลืà¸à¸\81à¹\80à¸à¸\87à¹\81ลà¹\89ว\n"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ "
+"(หรือจะระบุทางแก้ก็ได้)"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n"
+"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n"
+"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming"
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"และเนื่องจากคุณได้สั่งดำเนินการเพียงรายการเดียวเท่านั้น ก็เป็นไปได้สูงว่าแพกเกจนี้เสีย\n"
+"คุณควรจะรายงานบั๊กสำหรับแพกเกจนี้"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "à¹\82à¸à¹\89 à¸\84ุà¸\93มาà¸\96ึà¸\87à¸\82ีà¸\94à¸\88ำà¸\81ัà¸\94à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8cระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88 APT สามารà¸\96รà¸à¸\87รัà¸\9aà¹\84à¸\94à¹\89à¹\81ลà¹\89ว"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88มีà¸\9bัà¸\8dหา"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (FindPkg)"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:"
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "แพกเกจที่แนะนำ:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "แพกเกจที่ควรใช้ร่วมกัน:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "กำลังคำนวณการปรับรุ่น... "
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "กำลังอ่านรายชื่อแพกเกจ"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "ล้มเหลว"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "à¸\81ำลัà¸\87à¹\80à¸\81à¹\87à¸\9aà¸\82à¹\89à¸à¸¡à¸¹à¸¥à¹\81à¸\9fà¹\89มà¸\97ีà¹\88à¸\95ระà¹\80à¸\95รียมà¹\83หà¹\89"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "à¹\80สรà¹\87à¸\88à¹\81ลà¹\89ว"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "ไม่สามารถเขียนลงแฟ้ม %s"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94 IO à¸\82à¸\93ะà¸\9aัà¸\99à¸\97ึà¸\81à¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¸\8bà¸à¸£à¹\8cส"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸à¸¢à¹\88าà¸\87à¸\99à¹\89à¸à¸¢à¸«à¸\99ึà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\88ะà¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\8bà¸à¸£à¹\8cสà¹\82à¸\84à¹\89à¸\94"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)"
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum ไม่ตรงกัน"
+msgid "Unable to find a source package for %s"
+msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
-msgstr "Hash Sum ไม่ตรงกัน"
+#: cmdline/apt-get.cc:2175
+#, c-format
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง"
+msgid "Need to get %sB of source archives.\n"
+msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: สำหรับแพกเกจ %s"
+msgid "Fetch source %s\n"
+msgstr "ดาวน์โหลดซอร์ส %s\n"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "à¸\82à¸\99าà¸\94à¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\99"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\9aาà¸\87à¹\81à¸\9fà¹\89ม"
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "à¸\9aลà¹\87à¸à¸\84à¸\9cูà¹\89à¸\9cลิà¸\95 %s à¹\84มà¹\88มีลายà¸\99ิà¹\89วมืà¸"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "à¸\88ะà¸\82à¹\89ามà¸\81ารà¹\81à¸\95à¸\81à¸\8bà¸à¸£à¹\8cสà¸\82à¸à¸\87à¸\8bà¸à¸£à¹\8cสà¸\97ีà¹\88à¹\81à¸\95à¸\81à¹\84วà¹\89à¹\81ลà¹\89วà¹\83à¸\99 %s\n"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"กำลังใช้จุดเมานท์ซีดีรอม %s\n"
-"กำลังเมานท์ซีดีรอม\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "กำลังตรวจสอบชื่อแผ่น..."
+msgid "Unpack command '%s' failed.\n"
+msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Stored label: %s\n"
-msgstr "à¸\8aืà¹\88à¸à¸\97ีà¹\88à¹\80à¸\81à¹\87à¸\9aà¹\84วà¹\89: %s\n"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "à¸\81รุà¸\93าà¸\95รวà¸\88สà¸à¸\9aวà¹\88าà¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 'dpkg-dev' à¹\81ลà¹\89ว\n"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "à¸\81ำลัà¸\87à¹\83à¸\8aà¹\89à¸\88ุà¸\94à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡ %s\n"
+msgid "Build command '%s' failed.\n"
+msgstr "à¸\84ำสัà¹\88à¸\87 build '%s' ลà¹\89มà¹\80หลว\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "à¸\81ำลัà¸\87à¹\80ลิà¸\81à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "à¹\82à¸\9eรà¹\80à¸\8bสลูà¸\81ลà¹\89มà¹\80หลว"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "à¸\81ำลัà¸\87รà¸à¹\81à¸\9cà¹\88à¸\99...\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸à¸¢à¹\88าà¸\87à¸\99à¹\89à¸à¸¢à¸«à¸\99ึà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\88ะà¸\95รวà¸\88สà¸à¸\9aสิà¹\88à¸\87à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¸\81ารสำหรัà¸\9aà¸\81าร build"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "à¸\81ำลัà¸\87à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡...\n"
+#: cmdline/apt-get.cc:2370
+#, c-format
+msgid "Unable to get build-dependency information for %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¸´à¹\88à¸\87à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¸\81ารสำหรัà¸\9aà¸\81าร build à¸\82à¸à¸\87 %s"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n"
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid ""
-#| "Found %i package indexes, %i source indexes, %i translation indexes and %"
-#| "i signatures\n"
+#: cmdline/apt-get.cc:2442
+#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"พบดัชนีแพกเกจ %i รายการ, ดัชนีซอร์ส %i รายการ, ดัชนีคำแปล %i รายการ และลายเซ็น %i "
-"รายการ\n"
-
-#: apt-pkg/cdrom.cc:708
-#, c-format
-msgid "Found label '%s'\n"
-msgstr "พบชื่อแผ่น '%s'\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"แผ่นนี้เรียกชื่อว่า:\n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "กำลังคัดลอกรายชื่อแพกเกจ..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่...\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n"
-
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "กำลังเลิกเมานท์ซีดีรอม...\n"
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "เขียนแล้ว %i ระเบียน\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n"
+"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s "
+"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "à¹\80à¸\82ียà¸\99à¹\81ลà¹\89ว %i ระà¹\80à¸\9aียà¸\99 à¹\82à¸\94ยมีà¹\81à¸\9fà¹\89มà¸\9cิà¸\94à¸\82à¸\99าà¸\94 %i à¹\81à¸\9fà¹\89ม\n"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87สิà¹\88à¸\87à¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87 %s สำหรัà¸\9a %s à¹\84à¸\94à¹\89: à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\97ีà¹\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¹\83หมà¹\88à¹\80à¸\81ิà¸\99à¹\84à¸\9b"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "à¹\80à¸\82ียà¸\99à¹\81ลà¹\89ว %i ระà¹\80à¸\9aียà¸\99 à¹\82à¸\94ยมีà¹\81à¸\9fà¹\89มà¸\82าà¸\94หาย %i à¹\81à¸\9fà¹\89ม à¹\81ละà¹\81à¸\9fà¹\89มà¸\9cิà¸\94à¸\82à¸\99าà¸\94 %i à¹\81à¸\9fà¹\89ม\n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87สิà¹\88à¸\87à¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87 %s สำหรัà¸\9a %s à¹\84à¸\94à¹\89: %s"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Directory '%s' missing"
-msgstr "à¹\84มà¹\88มีà¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µ '%s'"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87สิà¹\88à¸\87à¸\97ีà¹\88à¸\88ำà¹\80à¸\9bà¹\87à¸\99สำหรัà¸\9aà¸\81าร build à¸\82à¸à¸\87 %s à¹\84à¸\94à¹\89"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "กำลังเตรียม %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "กำลังแตกแพกเกจ %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "มอดูลที่รองรับ:"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "กำลังเตรียมตั้งค่า %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n"
+" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n"
+"update และ install\n"
+"\n"
+"คำสั่ง:\n"
+" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n"
+" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n"
+" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n"
+" remove - ถอดถอนแพกเกจ\n"
+" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n"
+" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n"
+" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการ build ของแพกเกจซอร์สโค้ด\n"
+" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n"
+" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n"
+" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n"
+" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n"
+" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n"
+"\n"
+"ตัวเลือก:\n"
+" -h แสดงข้อความช่วยเหลือนี้\n"
+" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n"
+" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n"
+" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n"
+" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n"
+" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n"
+" -f พยายามดำเนินการต่อถ้าพบความผิดปกติของฐานข้อมูลแพกเกจ\n"
+" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n"
+" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n"
+" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n"
+" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n"
+" -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
+"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n"
+"และ apt.conf(5)\n"
+" APT นี้มีพลังของ Super Cow\n"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "กำลังตั้งค่า %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "เจอ "
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "ดึง:"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "ติดตั้ง %s แล้ว"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "ข้าม "
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "กำลังเตรียมถอดถอน %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "ปัญหา "
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Removing %s"
-msgstr "à¸\81ำลัà¸\87à¸\96à¸à¸\94à¸\96à¸à¸\99 %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94 %sB à¹\83à¸\99 %s (%sB/s)\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Removed %s"
-msgstr "ถอดถอน %s แล้ว"
+msgid " [Working]"
+msgstr " [กำลังทำงาน]"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n"
+" '%s'\n"
+"ลงในไดรว์ %s แล้วกด enter\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "พบระเบียนแพกเกจที่ไม่รู้จัก!"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"วิธีใช้: apt-sortpkgs [ตัวเลือก] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs เป็นเครื่องมืออย่างง่ายสำหรับเรียงลำดับแฟ้มรายชื่อแพกเกจ ตัวเลือก -s\n"
+"ใช้สำหรับระบุชนิดของแฟ้มที่เรียง\n"
+"\n"
+"ตัวเลือก:\n"
+" -h แสดงข้อความช่วยเหลือนี้\n"
+" -s เรียงตามแฟ้มซอร์สโค้ด\n"
+" -c=? อ่านแฟ้มค่าตั้งนี้\n"
+" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "ไม่สามารถแพตช์แฟ้ม"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "ค่าตั้งปริยายผิดพลาด!"
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "กด enter เพื่อดำเนินการต่อ"
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "สรà¹\89าà¸\87à¹\84à¸\9bà¸\9bà¹\8cà¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¹\81à¸\95à¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 à¹\82à¸\9bรà¹\81à¸\81รมà¸\88ะà¸\95ัà¹\89à¸\87à¸\84à¹\88าà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81ลà¹\89ว"
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "à¹\80รียà¸\81 gzip à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "à¸à¸²à¸\88à¸\97ำà¹\83หà¹\89à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\84วามà¹\81à¸\88à¹\89à¸\87à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\8bà¹\89ำ หรืà¸à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89à¸\82าà¸\94หาย"
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ"
+
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง"
+
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "กำลังผสานรายชื่อแพกเกจที่มี"
+
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "สร้างไปป์ไม่สำเร็จ"
+
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "เรียก gzip ไม่สำเร็จ"
+
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
msgid "Corrupted archive"
msgstr "แฟ้มจัดเก็บเสียหาย"
msgid "The diversion path is too long"
msgstr "พาธของ diversion ยาวเกินไป"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "ไม่สามารถอ่าน %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "ไดเรกทอรี info และ temp ต้องอยู่ในระบบแฟ้มเดียวกัน"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "กำลังอ่านรายชื่อแพกเกจ"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, c-format
msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s', '%s' หรือ '%s'"
msgid "Unparsable control file"
msgstr "ไม่สามารถแจงแฟ้มควบคุมได้"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¸\90าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\8bีà¸\94ีรà¸à¸¡ %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "จำนวนชื่อแพกเกจทั้งหมด : "
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " แพกเกจปกติ: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "ซีดีรอมผิดแผ่น"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " แพกเกจเสมือนแท้ๆ: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "ไม่พบแผ่น"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " แพกเกจเสมือนผสม: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "ไม่พบแฟ้ม"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " แพกเกจที่ขาดหาย: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "stat ไม่สำเร็จ"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "à¸\88ำà¸\99วà¸\99รุà¹\88à¸\99à¸\97ีà¹\88à¹\81à¸\95à¸\81à¸\95à¹\88าà¸\87à¸\81ัà¸\99à¸\97ัà¹\89à¸\87หมà¸\94: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "à¸\81ำหà¸\99à¸\94à¹\80วลาà¹\81à¸\81à¹\89à¹\84à¸\82à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "เข้าระบบ"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c รุà¹\88à¸\99/à¹\81à¸\9fà¹\89ม à¸\97ัà¹\89à¸\87หมà¸\94: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¸\8aืà¹\88à¸à¸\82à¸à¸\87à¸à¸µà¸\81à¸\9dà¹\88ายà¹\84à¸\94à¹\89"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c à¸\84ำà¸\9aรรยาย/à¹\81à¸\9fà¹\89ม à¸\97ัà¹\89à¸\87หมà¸\94: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¸\8aืà¹\88à¸à¸\82à¸à¸\87à¹\80à¸\84รืà¹\88à¸à¸\87à¸\99ีà¹\89à¹\84à¸\94à¹\89"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "จำนวนผังการตระเตรียมทั้งหมด: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "จำนวนสตริงทั้งหมด: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "พื้นที่สำรองทั้งหมด: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "พื้นที่ที่นับรวมทั้งหมด: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง"
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "à¸\84ุà¸\93à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\95à¹\80à¸\97ิรà¹\8cà¸\99à¸\94à¹\89วย"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "หมà¸\94à¹\80วลารà¸à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "à¹\80à¸\8bิรà¹\8cà¸\9fà¹\80วà¸à¸£à¹\8cà¸\9bิà¸\94à¸\81ารà¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "à¹\81à¸\9fà¹\89มà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "à¸\81ารà¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\9cิà¸\94à¸\9eลาà¸\94"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¹\81à¸\84à¸\8aà¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\9aà¸\84วามà¹\80à¸\9bà¹\87à¸\99à¸\88ริà¸\87à¹\81ลà¹\89ว à¹\84มà¹\88สามารà¸\96à¸à¹\89าà¸\87à¸à¸´à¸\87à¹\84à¸\82วà¹\89ระหวà¹\88าà¸\87à¹\81à¸\9fà¹\89มà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "à¸\84ำà¸\95à¸à¸\9aà¸\97à¹\88วมà¸\9aัà¸\9fà¹\80à¸\9fà¸à¸£à¹\8c"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "มีความเสียหายของโพรโทคอล"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "แพกเกจที่ถูกตรึง:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "การเขียนข้อมูลผิดพลาด"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(ไม่พบ)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "ไม่สามารถสร้างซ็อกเก็ต"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " ที่ติดตั้งอยู่: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(ไม่มี)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " รุ่นที่ติดตั้งได้: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " การตรึงแพกเกจ: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "ไม่สามารถ bind ซ็อกเก็ต"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " ตารางรุ่น:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "ไม่สามารถส่งคำสั่ง PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n"
-" apt-cache [ตัวเลือก] add file1 [file2 ...]\n"
-" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache เป็นเครื่องมือระดับล่างสำหรับจัดการแฟ้มแคชไบนารีของ APT\n"
-"และใช้สืบค้นข้อมูลจากแคช\n"
-"\n"
-"คำสั่ง:\n"
-" add - เพิ่มแฟ้มแพกเกจเข้าในแคชของซอร์ส\n"
-" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n"
-" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n"
-" showsrc - แสดงระเบียนข้อมูลซอร์ส\n"
-" stats - แสดงสถิติทั่วไป\n"
-" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n"
-" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทาง stdout\n"
-" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n"
-" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n"
-" show - แสดงข้อมูลของแพกเกจ\n"
-" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n"
-" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n"
-" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n"
-" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphVis\n"
-" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n"
-" policy - แสดงค่าตั้งนโยบาย\n"
-"\n"
-"ตัวเลือก:\n"
-" -h แสดงข้อความช่วยเหลือนี้\n"
-" -p=? แฟ้มเก็บแคชของแพกเกจ\n"
-" -s=? แฟ้มเก็บแคชของซอร์ส\n"
-" -q ปิดแถบแสดงความคืบหน้า\n"
-" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n"
-" -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n"
-
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 4.0r1 Disk 1'"
-
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter"
-
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด"
-
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ"
-
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n"
-"\n"
-"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n"
-"\n"
-"คำสั่ง:\n"
-" shell - โหมดเชลล์\n"
-" dump - แสดงค่าตั้ง\n"
-"\n"
-"ตัวเลือก:\n"
-" -h ข้อความช่วยเหลือนี้ -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:798
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ไม่ใช่แพกเกจ DEB ที่ใช้การได้"
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"วิธีใช้: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates เป็นเครื่องมือสำหรับแยกเอาข้อมูลการตั้งค่าและเทมเพลต\n"
-"ออกมาจากแพกเกจเดเบียน\n"
-"\n"
-"ตัวเลือก:\n"
-" -h แสดงข้อความช่วยเหลือนี้\n"
-" -t กำหนดไดเรกทอรีทำงานชั่วคราว\n"
-" -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99รุà¹\88à¸\99à¸\82à¸à¸\87 debconf à¹\84à¸\94à¹\89 à¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87 debconf à¹\84วà¹\89หรืà¸à¹\84มà¹\88?"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "à¹\84มà¹\88สามารà¸\96รัà¸\9aà¸\81ารà¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "รายà¸\8aืà¹\88à¸à¸\99ามสà¸\81ุลà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88ยาวà¹\80à¸\81ิà¸\99à¹\84à¸\9b"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะà¸\84ำà¸\99วà¸\93à¸\84à¹\88า hash à¸\82à¸à¸\87à¹\81à¸\9fà¹\89ม"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:877
#, c-format
-msgid "Error processing directory %s"
-msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s"
-
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "รายชื่อนามสกุลซอร์สยาวเกินไป"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¹\80à¸\82ียà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¹\88วà¸\99หัวลà¸\87à¹\83à¸\99à¹\81à¸\9fà¹\89มสารà¸\9aัà¸\8d"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "หมà¸\94à¹\80วลาà¸\84à¸à¸¢à¸\97ีà¹\88à¸\8bà¹\87à¸à¸\81à¹\80à¸\81à¹\87à¸\95à¸\82à¹\89à¸à¸¡à¸¹à¸¥"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing contents %s"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cลสารà¸\9aัà¸\8d %s"
+msgid "Data transfer failed, server said '%s'"
+msgstr "à¸\96à¹\88ายà¹\82à¸à¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¹\84มà¹\88สำà¹\80รà¹\87à¸\88 à¹\80à¸\8bิรà¹\8cà¸\9fà¹\80วà¸à¸£à¹\8cà¸\95à¸à¸\9aวà¹\88า '%s'"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"วิธีใช้: apt-ftparchive [ตัวเลือก] คำสั่ง\n"
-"คำสั่ง: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive ใช้สร้างแฟ้มดัชนีสำหรับแหล่งแพกเกจเดเบียน รองรับวิธีสร้างหลายแบบ\n"
-"ตั้งแต่แบบอัตโนมัติทั้งหมด ไปจนถึงการใช้แทน dpkg-scanpackages และ dpkg-scansources\n"
-"\n"
-"apt-ftparchive สร้างแฟ้ม Package จากต้นไม้ไดเรกทอรีที่เก็บ .deb แฟ้ม Package\n"
-"จะรวมเนื้อหาข้อมูลควบคุมทุกรายการของแต่ละแพกเกจ รวมถึง MD5 hash และขนาดแฟ้ม\n"
-"และรองรับการสร้างแฟ้ม override เพื่อบังคับค่าลำดับความสำคัญและหมวดแพกเกจด้วย\n"
-"\n"
-"ในทำนองเดียวกัน apt-ftparchive จะสร้างแฟ้ม Sources จากต้นไม้ไดเรกทอรีที่เก็บ .dsc\n"
-"คุณสามารถใช้ตัวเลือก --source-override เพื่อระบุแฟ้ม override สำหรับซอร์สได้\n"
-"\n"
-"คำสั่ง 'packages' และ 'sources' ควรเรียกที่ตำแหน่งรากของต้นไม้ไดเรกทอรี\n"
-"ค่า binarypath ควรชี้ไปที่ตำแหน่งฐานที่จะค้นหาแบบทั่วถึง และแฟ้ม override ก็ควรมีแฟล็ก\n"
-"override ต่างๆ สำหรับแพกเกจ ค่า pathprefix จะถูกเพิ่มเข้าที่หน้าข้อมูล filename ถ้ามี\n"
-"ตัวอย่างการใช้งานจากแหล่งแพกเกจเดเบียน:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"ตัวเลือก:\n"
-" -h แสดงข้อความช่วยเหลือนี้\n"
-" --md5 ควบคุมการสร้าง MD5\n"
-" -s=? แฟ้ม override สำหรับซอร์ส\n"
-" -q ทำงานแบบเงียบ\n"
-" -d=? เลือกฐานข้อมูลแคชอื่น\n"
-" --no-delink เปิดโหมดดีบั๊กสำหรับการตัดลิงก์\n"
-" --contents ควบคุมการสร้างแฟ้มสารบัญ\n"
-" -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "สอบถาม"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "à¹\84มà¹\88มีรายà¸\81ารà¹\80ลืà¸à¸\81à¸\97ีà¹\88à¸\95รà¸\87"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80รียà¸\81 "
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:64
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "à¸\9aาà¸\87à¹\81à¸\9fà¹\89มà¸\82าà¸\94หายà¹\84à¸\9bà¹\83à¸\99à¸\81ลุà¹\88มà¹\81à¸\9fà¹\89มà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 `%s'"
+msgid "Connecting to %s (%s)"
+msgstr "à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸à¹\84à¸\9bยัà¸\87 %s (%s)"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:71
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB เสีย จะเปลี่ยนชื่อแฟ้มเป็น %s.old"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:80
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB เป็นรุ่นเก่า จะพยายามปรับรุ่น %s ขึ้น"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr "ฟอร์แมตของ DB ผิด ถ้าคุณเพิ่งปรับรุ่นมาจาก apt รุ่นเก่า กรุณาลบฐานข้อมูลแล้วสร้างใหม่"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:93
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\81à¸\9fà¹\89ม DB %s: %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\8aืà¹\88à¸à¸¡à¸\95à¹\88à¸à¹\84à¸\9bยัà¸\87 %s:%s (%s) à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81หมà¸\94à¹\80วลาà¸\84à¸à¸¢"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "แพกเกจไม่มีระเบียนควบคุม"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "ไม่สามารถนำตัวชี้ตำแหน่งมาใช้ได้"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "เชื่อมต่อไปยัง %s"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:167
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: อ่านไดเรกทอรี %s ไม่สำเร็จ\n"
+msgid "Could not resolve '%s'"
+msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'"
-#: ftparchive/writer.cc:81
+#: methods/connect.cc:173
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: stat %s ไม่สำเร็จ\n"
+msgid "Temporary failure resolving '%s'"
+msgstr "เกิดข้อผิดพลาดชั่วคราวขณะเปิดหาที่อยู่ '%s'"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i)"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "ไม่สามารถเชื่อมต่อไปยัง %s %s:"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: ข้อผิดพลาดเกิดกับแฟ้ม "
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "ไม่สามารถเข้าใช้พวงกุญแจ: '%s'"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: รายการอาร์กิวเมนต์ใน Acquire::gpgv::Options ยาวเกินไป จะจบการทำงาน"
+
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!"
+
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ"
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "หาà¸\9eาà¸\98à¹\80à¸\95à¹\87มà¸\82à¸à¸\87 %s à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80รียà¸\81 '%s' à¹\80à¸\9eืà¹\88à¸à¸\95รวà¸\88สà¸à¸\9aลายà¹\80à¸\8bà¹\87à¸\99 (à¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87 gnupg à¹\84วà¹\89หรืà¸à¹\84มà¹\88?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "à¹\80à¸\94ิà¸\99à¸\97à¹\88à¸à¸\87à¸\95à¹\89à¸\99à¹\84มà¹\89à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¹\84มà¹\88à¸\97ราà¸\9aสาà¹\80หà¸\95ุà¸\82à¸\93ะà¹\80รียà¸\81 gpgv"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "à¹\80à¸\9bิà¸\94 %s à¹\84มà¹\88สำà¹\80รà¹\87à¸\88"
+msgid "Couldn't open pipe for %s"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94à¹\84à¸\9bà¸\9bà¹\8cสำหรัà¸\9a %s"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "เกิดข้อผิดพลาดขณะอ่านจากโพรเซส %s"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "รอหัวข้อมูล"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "readlink %s ไม่สำเร็จ"
+msgid "Got a single header line over %u chars"
+msgstr "ได้รับบรรทัดข้อมูลส่วนหัวยาวเกิน %u อักขระ"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "select ไม่สำเร็จ"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "หมดเวลารอเชื่อมต่อ"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "ข้อมูลส่วนหัวผิดพลาด"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "เชื่อมต่อไม่สำเร็จ"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "ข้อผิดพลาดภายใน"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "ไม่สามารถ mmap แฟ้มเปล่า"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "unlink %s ไม่สำเร็จ"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** ลิงก์ %s ไปยัง %s ไม่สำเร็จ"
+msgid "Selection %s not found"
+msgstr "ไม่พบรายการเลือก %s"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB แล้ว\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "ขณะเปิดแฟ้มค่าตั้ง %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s ไม่มีข้อมูล override\n"
+msgid "Line %d too long (max %u)"
+msgstr "บรรทัด %d ยาวเกินไป (สูงสุด %u)"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า"
+
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: à¹\84มà¹\88à¸\9eà¸\9aสมาà¸\8aิà¸\81 %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "à¹\84วยาà¸\81รà¸\93à¹\8cà¸\9cิà¸\94à¸\9eลาà¸\94 %s:%u: à¹\83à¸\8aà¹\89 include à¸\8bà¹\89à¸à¸\99à¸\81ัà¸\99มาà¸\81à¹\80à¸\81ิà¸\99à¹\84à¸\9b"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - จองหน่วยความจำไม่สำเร็จ"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¹\80à¸\9bิà¸\94 %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "à¹\84วยาà¸\81รà¸\93à¹\8cà¸\9cิà¸\94à¸\9eลาà¸\94 %s:%u: à¸\9eà¸\9a directive '%s' à¸\97ีà¹\88à¹\84มà¹\88รà¸à¸\87รัà¸\9a"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "à¹\81à¸\9fà¹\89ม override %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9aà¸\97ีà¹\88à¸\9aรรà¸\97ัà¸\94 %lu #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "à¹\84วยาà¸\81รà¸\93à¹\8cà¸\9cิà¸\94à¸\9eลาà¸\94 %s:%u: มีà¸\82ยะà¹\80à¸\81ิà¸\99หลัà¸\87à¸\88à¸\9aà¹\81à¸\9fà¹\89ม"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "แฟ้ม override %s ผิดรูปแบบที่บรรทัด %lu #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... ผิดพลาด!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "แฟ้ม override %s ผิดรูปแบบที่บรรทัด %lu #3"
+msgid "%c%s... Done"
+msgstr "%c%s... เสร็จแล้ว"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸à¹\88าà¸\99à¹\81à¸\9fà¹\89ม override %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 '%c' [à¸\88าà¸\81 %s]"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "à¹\84มà¹\88รูà¹\89à¸\88ัà¸\81à¸à¸±à¸¥à¸\81à¸à¸£à¸´à¸\97ึมà¸\9aีà¸\9aà¸à¸±à¸\94 '%s'"
+msgid "Command line option %s is not understood"
+msgstr "à¹\84มà¹\88à¹\80à¸\82à¹\89าà¹\83à¸\88à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "à¸\9cลลัà¸\9eà¸\98à¹\8cà¸\82à¸à¸\87à¸\81ารà¸\9aีà¸\9aà¸à¸±à¸\94 %s à¸\95à¹\89à¸à¸\87มีà¸\8aุà¸\94à¸\82à¸à¸\87à¸\81ารà¸\9aีà¸\9aà¸à¸±à¸\94à¸\94à¹\89วย"
+msgid "Command line option %s is not boolean"
+msgstr "à¸\95ัวà¹\80ลืà¸à¸\81à¸\9aรรà¸\97ัà¸\94à¸\84ำสัà¹\88à¸\87 %s à¹\84มà¹\88à¹\84à¸\94à¹\89à¹\80à¸\9bà¹\87à¸\99à¸\84à¹\88าà¸\9aูลีà¸\99"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "สร้าง FILE* ไม่สำเร็จ"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "fork ไม่สำเร็จ"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "โพรเซสลูกสำหรับบีบอัด"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: à¹\84มà¹\88สามารà¸\96สรà¹\89าà¸\87 %s"
+msgid "Option '%s' is too long"
+msgstr "à¸\95ัวà¹\80ลืà¸à¸\81 '%s' ยาวà¹\80à¸\81ิà¸\99à¹\84à¸\9b"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "ไม่รู้จักคำสั่ง %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "ตัวคลายบีบอัด"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "ไม่สามารถ stat จุดเมานท์ %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO ไปยังโพรเซสย่อยหรือแฟ้มล้มเหลว"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "à¸à¹\88าà¸\99à¹\81à¸\9fà¹\89มà¹\84มà¹\88สำà¹\80รà¹\87à¸\88à¸\82à¸\93ะà¸\84ำà¸\99วà¸\93 MD5"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "à¹\84มà¹\88สามารà¸\96 stat à¸\8bีà¸\94ีรà¸à¸¡"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "มีà¸\9bัà¸\8dหาà¸\82à¸\93ะลà¸\9aà¹\81à¸\9fà¹\89ม %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "à¸\88ะà¹\84มà¹\88à¹\83à¸\8aà¹\89à¸\81ารลà¹\87à¸à¸\84à¸\81ัà¸\9aà¹\81à¸\9fà¹\89มลà¹\87à¸à¸\84 %s à¸\97ีà¹\88à¸à¹\88าà¸\99à¹\84à¸\94à¹\89à¸à¸¢à¹\88าà¸\87à¹\80à¸\94ียว"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "ไม่สามารถเปิดแฟ้มล็อค %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "à¸\84à¸à¸¡à¹\84à¸\9eลà¹\8cà¸\99ิà¸\9eà¸\88à¸\99à¹\8cà¹\80รà¸\81ิวลารà¹\8cà¹\84มà¹\88สำà¹\80รà¹\87à¸\88 - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "à¸\88ะà¹\84มà¹\88à¹\83à¸\8aà¹\89à¸\81ารลà¹\87à¸à¸\84à¸\81ัà¸\9aà¹\81à¸\9fà¹\89มลà¹\87à¸à¸\84 %s à¸\97ีà¹\88à¹\80มาà¸\99à¸\97à¹\8cà¸\9cà¹\88าà¸\99 nfs"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "ไม่สามารถล็อค %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "à¹\81à¸\95à¹\88รุà¹\88à¸\99à¸\97ีà¹\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¸\84ืภ%s"
+msgid "Waited for %s but it wasn't there"
+msgstr "รà¸à¹\82à¸\9eรà¹\80à¸\8bส %s à¹\81à¸\95à¹\88à¸\95ัวà¹\82à¸\9eรà¹\80à¸\8bสà¹\84มà¹\88à¸à¸¢à¸¹à¹\88"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "à¹\81à¸\95à¹\88รุà¹\88à¸\99à¸\97ีà¹\88à¸\88ะà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¸\84ืภ%s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "à¹\82à¸\9eรà¹\80à¸\8bสยà¹\88à¸à¸¢ %s à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸à¸\87à¸\81ารà¹\83à¸\8aà¹\89ยà¹\88าà¸\99หà¸\99à¹\88วยà¸\84วามà¸\88ำ (segmentation fault)"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "แต่ไม่สามารถติดตั้งได้"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "โพรเซสย่อย %s จบการทำงานกระทันหัน"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "แต่ได้ติดตั้งไว้"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "ไม่สามารถเปิดแฟ้ม %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "read: ยังเหลือ %lu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " หรือ"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "write: ยังเหลือ %lu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "à¸\88ะà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 *à¹\83หมà¹\88* à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะà¸\9bิà¸\94à¹\81à¸\9fà¹\89ม"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "à¸\88ะ *ลà¸\9a* à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะลà¸\9aà¹\81à¸\9fà¹\89ม"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "à¸\88ะà¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "à¹\80à¸\81ิà¸\94à¸\9bัà¸\8dหาà¸\82à¸\93ะ sync à¹\81à¸\9fà¹\89ม"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "à¸\88ะà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89à¸\82ึà¹\89à¸\99:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "à¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88วà¹\88าà¸\87à¹\80à¸\9bลà¹\88า"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "à¸\88ะà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89 *ลà¸\87*:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "à¹\81à¸\9fà¹\89มà¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สียหาย"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "à¸\88ะà¹\80à¸\9bลีà¹\88ยà¸\99à¹\81à¸\9bลà¸\87รายà¸\81ารà¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "à¹\81à¸\9fà¹\89มà¹\81à¸\84à¸\8aà¸\82à¸à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80à¸\9bà¹\87à¸\99à¸\84à¸\99ละรุà¹\88à¸\99à¸\81ัà¸\99"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (เนื่องจาก %s) "
+msgid "This APT does not support the versioning system '%s'"
+msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n"
-"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "ต้องใช้"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "ติดตั้งซ้ำ %lu, "
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "ต้องใช้ขณะติดตั้ง"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "ปรับรุ่นลง %lu, "
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "แนะนำ"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "ควรใช้ร่วมกับ"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "ขัดแย้งกับ"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "à¸\81ำลัà¸\87à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¸\84วามà¸\82ึà¹\89à¸\99à¸\95à¹\88à¸à¸\81ัà¸\99ระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "à¹\81à¸\97à¸\99à¸\97ีà¹\88"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " ล้มเหลว"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "ใช้แทน"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "ทำให้พัง"
+
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "สำคัญ"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\88ำà¸\81ัà¸\94รายà¸\81ารà¸\9bรัà¸\9aรุà¹\88à¸\99à¹\83หà¹\89à¸\99à¹\89à¸à¸¢à¸\97ีà¹\88สุà¸\94à¹\84à¸\94à¹\89"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "à¸\88ำà¹\80à¸\9bà¹\87à¸\99"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " เสร็จแล้ว"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "มาตรฐาน"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "à¸\84ุà¸\93à¸à¸²à¸\88à¸\95à¹\89à¸à¸\87à¹\80รียà¸\81 `apt-get -f install' à¹\80à¸\9eืà¹\88à¸à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\80หลà¹\88าà¸\99ีà¹\89"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "à¸\95ัวà¹\80ลืà¸à¸\81"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "รายà¸\81ารà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89à¹\84มà¹\88à¸\84รà¸\9a à¸\81รุà¸\93าลà¸à¸\87à¹\83à¸\8aà¹\89à¸\95ัวà¹\80ลืà¸à¸\81 -f"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "สà¹\88วà¸\99à¹\80สริม"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "à¸\88ะà¸\82à¹\89ามà¸\81ารà¹\80à¸\95ืà¸à¸\99à¹\80à¸\81ีà¹\88ยวà¸\81ัà¸\9aà¸\81ารยืà¸\99ยัà¸\99à¹\81หลà¹\88à¸\87à¸\95à¹\89à¸\99à¸\95à¸\n"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88มี"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "à¸\88ะà¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80หลà¹\88าà¸\99ีà¹\89à¹\82à¸\94ยà¹\84มà¹\88à¸\95รวà¸\88สà¸à¸\9aหรืà¸à¹\84มà¹\88 [y/N]? "
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "สรà¹\89าà¸\87ลำà¸\94ัà¸\9aà¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8c"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "มีà¸\9aาà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84มà¹\88สามารà¸\96ยืà¸\99ยัà¸\99à¹\81หลà¹\88à¸\87à¸\95à¹\89à¸\99à¸\95à¸à¹\84à¸\94à¹\89"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "à¸\81ำลัà¸\87à¸à¹\88าà¸\99à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸ªà¸\96าà¸\99ะ"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes"
+#: apt-pkg/depcache.cc:219
+#, c-format
+msgid "Failed to open StateFile %s"
+msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!"
+#: apt-pkg/depcache.cc:225
+#, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "แปลกประหลาด.. ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "à¸\95à¹\89à¸à¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %sB/%sB\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "à¸\9aรรà¸\97ัà¸\94 %lu à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (à¸\82à¸\93ะà¹\81à¸\88à¸\87 URI)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "à¸\95à¹\89à¸à¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %sB\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "à¸\9aรรà¸\97ัà¸\94 %lu à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (dist à¹\81à¸\9aà¸\9aสัมà¸\9aูรà¸\93à¹\8c)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "หลัà¸\87à¸\88าà¸\81à¹\81à¸\95à¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\81ลà¹\89ว à¸\95à¹\89à¸à¸\87à¹\83à¸\8aà¹\89à¹\80à¸\99ืà¹\89à¸à¸\97ีà¹\88à¸\9aà¸\99à¸\94ิสà¸\81à¹\8cà¸à¸µà¸\81 %s\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "à¸\9aรรà¸\97ัà¸\94 %lu à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (à¸\82à¸\93ะà¹\81à¸\88à¸\87 dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "หลัà¸\87à¸\88าà¸\81à¹\81à¸\95à¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\81ลà¹\89ว à¹\80à¸\99ืà¹\89à¸à¸\97ีà¹\88à¸\9aà¸\99à¸\94ิสà¸\81à¹\8cà¸\88ะวà¹\88าà¸\87à¹\80à¸\9eิà¹\88มà¸à¸µà¸\81 %s\n"
+msgid "Opening %s"
+msgstr "à¸\81ำลัà¸\87à¹\80à¸\9bิà¸\94 %s"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\84ำà¸\99วà¸\93à¸\9eืà¹\89à¸\99à¸\97ีà¹\88วà¹\88าà¸\87à¹\83à¸\99 %s"
+msgid "Line %u too long in source list %s."
+msgstr "à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s ยาวà¹\80à¸\81ิà¸\99à¹\84à¸\9b"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "à¸\84ุà¸\93มีà¸\9eืà¹\89à¸\99à¸\97ีà¹\88วà¹\88าà¸\87à¹\80หลืà¸à¹\84มà¹\88à¸\9eà¸à¹\83à¸\99 %s"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "à¸\9aรรà¸\97ัà¸\94 %u à¹\83à¸\99à¹\81à¸\9fà¹\89มรายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\9cิà¸\94รูà¸\9bà¹\81à¸\9aà¸\9a (à¸\8aà¸\99ิà¸\94)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (id ผู้ผลิต)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n"
-"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "เลิกทำ"
-
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?"
+"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว "
+"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ "
+"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย "
+"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/pkgrecords.cc:32
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "ไม่สามารถดาวน์โหลด %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ"
+msgid "Index file type '%s' is not supported"
+msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\9aาà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\84มà¹\88สำà¹\80รà¹\87à¸\88 à¸\9aาà¸\87à¸\97ี à¸\81ารà¹\80รียà¸\81 apt-get update หรืà¸à¸¥à¸à¸\87à¹\83à¸\8aà¹\89à¸\95ัวà¹\80ลืà¸à¸\81 --fix-"
-"missing อาจช่วยได้"
+"à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94: pkgProblemResolver::Resolve สรà¹\89าà¸\87à¸\84ำà¸\95à¸à¸\9aà¸\97ีà¹\88à¸\97ำà¹\83หà¹\89à¹\80à¸\81ิà¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สีย "
+"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "ยัà¸\87à¹\84มà¹\88รà¸à¸\87รัà¸\9a --fix-missing à¸\9eรà¹\89à¸à¸¡à¸\81ัà¸\9aà¸\81ารà¹\80à¸\9bลีà¹\88ยà¸\99à¹\81à¸\9cà¹\88à¸\99"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\84à¸\94à¹\89 à¸\84ุà¸\93à¹\84à¸\94à¹\89à¸\84à¸\87รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¹\80สียà¸à¸¢à¸¹à¹\88à¹\84วà¹\89"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "จะล้มเลิกการติดตั้ง"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial"
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "หมายเหตุ: จะเลือก %s แทน %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)"
+
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "à¸\88ะà¸\82à¹\89าม %s à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¹\81ลà¹\89ว à¹\81ละà¹\84มà¹\88มีà¸\81ารà¸\81ำหà¸\99à¸\94à¹\83หà¹\89à¸\9bรัà¸\9aรุà¹\88à¸\99\n"
+msgid "The method driver %s could not be found."
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\84à¸\94รà¹\80วà¸à¸£à¹\8cสำหรัà¸\9aวิà¸\98ีà¸\81าร %s"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\84มà¹\88à¹\84à¸\94à¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89 à¸\88ึà¸\87à¹\84มà¹\88มีà¸\81ารà¸\96à¸à¸\94à¸\96à¸à¸\99\n"
+msgid "Method %s did not start correctly"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\80รียà¸\81à¸\97ำà¸\87าà¸\99วิà¸\98ีà¸\81าร %s"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\80à¸\9bà¹\87à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\80สมืà¸à¸\99à¸\97ีà¹\88à¸\95ระà¹\80à¸\95รียมà¹\82à¸\94ย:\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "à¸\81รุà¸\93าà¹\83สà¹\88à¹\81à¸\9cà¹\88à¸\99à¸\8aืà¹\88à¸: '%s' ลà¸\87à¹\83à¸\99à¹\84à¸\94รวà¹\8c '%s' à¹\81ลà¹\89วà¸\81à¸\94 enter"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [ติดตั้งอยู่]"
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "ไม่รองรับระบบแพกเกจ '%s'"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "à¸\84ุà¸\93à¸\84วรà¹\80à¸\88าะà¸\88à¸\87à¹\80ลืà¸à¸\81à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\83à¸\94à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88หà¸\99ึà¹\88à¸\87à¹\80à¸\9eืà¹\88à¸à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "à¹\84มà¹\88สามารà¸\96ระà¸\9aุà¸\8aà¸\99ิà¸\94à¸\82à¸à¸\87ระà¸\9aà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¹\80หมาะสมà¹\84à¸\94à¹\89"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "ไม่สามารถ stat %s"
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้"
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง: ไม่มีข้อมูลส่วนหัว 'Package'"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "ไม่เข้าใจชนิดการตรึง %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "à¸à¸¢à¹\88าà¸\87à¹\84รà¸\81à¹\87à¸\94ี à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89à¹\84à¸\94à¹\89à¹\81à¸\97à¸\99à¸\97ีà¹\88à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\94ัà¸\87à¸\81ลà¹\88าวà¹\84à¸\9bà¹\81ลà¹\89ว:"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "à¹\81à¸\84à¸\8aมีระà¸\9aà¸\9aà¸\99ัà¸\9aรุà¹\88à¸\99à¸\97ีà¹\88à¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\99"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¹\84มà¹\88มีรุà¹\88à¸\99à¸\97ีà¹\88à¸\88ะà¹\83à¸\8aà¹\89à¸\95ิà¸\94à¸\95ัà¹\89à¸\87"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87 %s à¸\8bà¹\89ำà¹\84à¸\94à¹\89 à¹\80à¸\99ืà¹\88à¸à¸\87à¸\88าà¸\81à¹\84มà¹\88สามารà¸\96à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¹\84à¸\94à¹\89\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n"
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aรุà¹\88à¸\99ยà¹\88à¸à¸¢ '%s' à¸\82à¸à¸\87 '%s'"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (UsePackage2)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aรุà¹\88à¸\99 '%s' à¸\82à¸à¸\87 '%s'"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "เลือกรุ่น %s (%s) สำหรับ %s แล้ว\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม"
-
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "ไม่สามารถล็อคไดเรกทอรีรายชื่อแพกเกจ"
-
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion1)"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้"
+#: apt-pkg/pkgcachegen.cc:217
+#, c-format
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage3)"
-#: cmdline/apt-get.cc:1465
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion2)"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr "ใช้ 'apt-get autoremove' เพื่อลบแพกเกจดังกล่าวได้"
+#: apt-pkg/pkgcachegen.cc:245
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
-"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n"
-"กรุณารายงานบั๊กนี้ของแพกเกจ apt"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "à¸\82à¹\89à¸à¸¡à¸¹à¸¥à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89à¸à¸²à¸\88à¸\8aà¹\88วยà¹\81à¸\81à¹\89à¸\9bัà¸\8dหาà¹\84à¸\94à¹\89:"
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "à¹\82à¸à¹\89 à¸\84ุà¸\93มาà¸\96ึà¸\87à¸\82ีà¸\94à¸\88ำà¸\81ัà¸\94à¸\88ำà¸\99วà¸\99รุà¹\88à¸\99à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88 APT สามารà¸\96รà¸à¸\87รัà¸\9aà¹\84à¸\94à¹\89à¹\81ลà¹\89ว"
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: AutoRemover à¸\97ำà¸\84วามà¹\80สียหาย"
+#: apt-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "à¹\82à¸à¹\89 à¸\84ุà¸\93มาà¸\96ึà¸\87à¸\82ีà¸\94à¸\88ำà¸\81ัà¸\94à¸\88ำà¸\99วà¸\99à¸\84ำà¸\9aรรยายà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88 APT สามารà¸\96รà¸à¸\87รัà¸\9aà¹\84à¸\94à¹\89à¹\81ลà¹\89ว"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94ภายà¹\83à¸\99: AllUpgrade à¸\97ำà¸\84วามà¹\80สียหาย"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "à¹\82à¸à¹\89 à¸\84ุà¸\93มาà¸\96ึà¸\87à¸\82ีà¸\94à¸\88ำà¸\81ัà¸\94à¸\88ำà¸\99วà¸\99à¸\84วามสัมà¸\9eัà¸\99à¸\98à¹\8cระหวà¹\88าà¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88 APT สามารà¸\96รà¸à¸\87รัà¸\9aà¹\84à¸\94à¹\89à¹\81ลà¹\89ว"
-#: cmdline/apt-get.cc:1545
+#: apt-pkg/pkgcachegen.cc:288
#, c-format
-msgid "Couldn't find task %s"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¸\87าà¸\99 %s"
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (FindPkg)"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/pkgcachegen.cc:301
#, c-format
-msgid "Couldn't find package %s"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s"
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "à¹\80à¸\81ิà¸\94à¸\82à¹\89à¸à¸\9cิà¸\94à¸\9eลาà¸\94à¸\82à¸\93ะà¸\9bระมวลà¸\9cล %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/pkgcachegen.cc:307
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "หมายà¹\80หà¸\95ุ: à¸\88ะà¹\80ลืà¸à¸\81 %s สำหรัà¸\9aà¸\99ิà¸\9eà¸\88à¸\99à¹\8cà¹\80รà¸\81ิวลารà¹\8c '%s'\n"
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s %s à¸\82à¸\93ะà¸\9bระมวลà¸\9cลà¸\84วามà¸\82ึà¹\89à¸\99à¸\95à¹\88à¸à¹\81à¸\9fà¹\89ม"
-#: cmdline/apt-get.cc:1714
+#: apt-pkg/pkgcachegen.cc:678
#, c-format
-msgid "%s set to manual installed.\n"
-msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n"
-
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:"
-
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ "
-"(หรือจะระบุทางแก้ก็ได้)"
+msgid "Couldn't stat source package list %s"
+msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s"
-#: cmdline/apt-get.cc:1742
-msgid ""
-"Some 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-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้"
-#: cmdline/apt-get.cc:1750
-msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"และเนื่องจากคุณได้สั่งดำเนินการเพียงรายการเดียวเท่านั้น ก็เป็นไปได้สูงว่าแพกเกจนี้เสีย\n"
-"คุณควรจะรายงานบั๊กสำหรับแพกเกจนี้"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส"
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "แพกเกจมีปัญหา"
+#: apt-pkg/acquire-item.cc:127
+#, c-format
+msgid "rename failed, %s (%s -> %s)."
+msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)"
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum ไม่ตรงกัน"
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "แพกเกจที่แนะนำ:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
+msgstr "Hash Sum ไม่ตรงกัน"
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\84วรà¹\83à¸\8aà¹\89รà¹\88วมà¸\81ัà¸\99:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "à¹\84มà¹\88มีà¸\81ุà¸\8dà¹\81à¸\88สาà¸\98ารà¸\93ะสำหรัà¸\9aà¸\81ุà¸\8dà¹\81à¸\88หมายà¹\80ลà¸\82à¸\95à¹\88à¸à¹\84à¸\9bà¸\99ีà¹\89:\n"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "กำลังคำนวณการปรับรุ่น... "
+#: apt-pkg/acquire-item.cc:1213
+#, 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)"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "เสร็จแล้ว"
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
+msgid ""
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
+msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย"
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: สำหรับแพกเกจ %s"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸à¸¢à¹\88าà¸\87à¸\99à¹\89à¸à¸¢à¸«à¸\99ึà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\88ะà¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\8bà¸à¸£à¹\8cสà¹\82à¸\84à¹\89à¸\94"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "à¸\82à¸\99าà¸\94à¹\84มà¹\88à¸\95รà¸\87à¸\81ัà¸\99"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "à¹\84มà¹\88à¸\9eà¸\9aà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\8bà¸à¸£à¹\8cสà¹\82à¸\84à¹\89à¸\94สำหรัà¸\9a %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "à¸\9aลà¹\87à¸à¸\84à¸\9cูà¹\89à¸\9cลิà¸\95 %s à¹\84มà¹\88มีลายà¸\99ิà¹\89วมืà¸"
-#: cmdline/apt-get.cc:2167
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"กำลังใช้จุดเมานท์ซีดีรอม %s\n"
+"กำลังเมานท์ซีดีรอม\n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "กำลังตรวจสอบชื่อแผ่น..."
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "à¸\95à¹\89à¸à¸\87à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\8bà¸à¸£à¹\8cสà¹\82à¸\84à¹\89à¸\94 %sB/%sB\n"
+msgid "Stored label: %s\n"
+msgstr "à¸\8aืà¹\88à¸à¸\97ีà¹\88à¹\80à¸\81à¹\87à¸\9aà¹\84วà¹\89: %s\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "กำลังเลิกเมานท์ซีดีรอม...\n"
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Fetch source %s\n"
-msgstr "à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\8bà¸à¸£à¹\8cส %s\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "à¸\81ำลัà¸\87à¹\83à¸\8aà¹\89à¸\88ุà¸\94à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡ %s\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94à¸\9aาà¸\87à¹\81à¸\9fà¹\89ม"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "à¸\81ำลัà¸\87à¹\80ลิà¸\81à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "กำลังรอแผ่น...\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "à¸\84ำสัà¹\88à¸\87à¹\81à¸\95à¸\81à¹\81à¸\9fà¹\89ม '%s' ลà¹\89มà¹\80หลว\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "à¸\81ำลัà¸\87à¹\80มาà¸\99à¸\97à¹\8cà¸\8bีà¸\94ีรà¸à¸¡...\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n"
+
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"พบดัชนีแพกเกจ %i รายการ, ดัชนีซอร์ส %i รายการ, ดัชนีคำแปล %i รายการ และลายเซ็น %i "
+"รายการ\n"
+
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n"
+msgid "Found label '%s'\n"
+msgstr "พบชื่อแผ่น '%s'\n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "คำสั่ง build '%s' ล้มเหลว\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"แผ่นนี้เรียกชื่อว่า:\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "à¹\82à¸\9eรà¹\80à¸\8bสลูà¸\81ลà¹\89มà¹\80หลว"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "à¸\81ำลัà¸\87à¸\84ัà¸\94ลà¸à¸\81รายà¸\8aืà¹\88à¸à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88..."
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "à¸\95à¹\89à¸à¸\87ระà¸\9aุà¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸à¸¢à¹\88าà¸\87à¸\99à¹\89à¸à¸¢à¸«à¸\99ึà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¸\97ีà¹\88à¸\88ะà¸\95รวà¸\88สà¸à¸\9aสิà¹\88à¸\87à¸\97ีà¹\88à¸\95à¹\89à¸à¸\87à¸\81ารสำหรัà¸\9aà¸\81าร build"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "à¸\81ำลัà¸\87à¹\80à¸\82ียà¸\99รายà¸\8aืà¹\88à¸à¹\81หลà¹\88à¸\87à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88à¹\81หลà¹\88à¸\87à¹\83หมà¹\88...\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n"
+msgid "Wrote %i records.\n"
+msgstr "เขียนแล้ว %i ระเบียน\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s "
-"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87สิà¹\88à¸\87à¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87 %s สำหรัà¸\9a %s à¹\84à¸\94à¹\89: à¹\81à¸\9eà¸\81à¹\80à¸\81à¸\88 %s à¸\97ีà¹\88à¸\95ิà¸\94à¸\95ัà¹\89à¸\87à¹\84วà¹\89à¹\83หมà¹\88à¹\80à¸\81ิà¸\99à¹\84à¸\9b"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "à¹\80à¸\82ียà¸\99à¹\81ลà¹\89ว %i ระà¹\80à¸\9aียà¸\99 à¹\82à¸\94ยมีà¹\81à¸\9fà¹\89มà¸\82าà¸\94หาย %i à¹\81à¸\9fà¹\89ม à¹\81ละà¹\81à¸\9fà¹\89มà¸\9cิà¸\94à¸\82à¸\99าà¸\94 %i à¹\81à¸\9fà¹\89ม\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "à¹\84มà¹\88สามารà¸\96à¸\95ิà¸\94à¸\95ัà¹\89à¸\87สิà¹\88à¸\87à¹\80à¸\8aืà¹\88à¸à¸¡à¹\82ยà¸\87 %s สำหรัà¸\9a %s à¹\84à¸\94à¹\89: %s"
+msgid "Directory '%s' missing"
+msgstr "à¹\84มà¹\88มีà¹\84à¸\94à¹\80รà¸\81à¸\97à¸à¸£à¸µ '%s'"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ"
+msgid "Preparing %s"
+msgstr "กำลังเตรียม %s"
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "มอดูลที่รองรับ:"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "กำลังแตกแพกเกจ %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " purge - Remove and purge packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n"
-" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n"
-"update และ install\n"
-"\n"
-"คำสั่ง:\n"
-" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n"
-" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n"
-" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n"
-" remove - ถอดถอนแพกเกจ\n"
-" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n"
-" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n"
-" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการ build ของแพกเกจซอร์สโค้ด\n"
-" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n"
-" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n"
-" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n"
-" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n"
-" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n"
-"\n"
-"ตัวเลือก:\n"
-" -h แสดงข้อความช่วยเหลือนี้\n"
-" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n"
-" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n"
-" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n"
-" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n"
-" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n"
-" -f พยายามดำเนินการต่อถ้าพบความผิดปกติของฐานข้อมูลแพกเกจ\n"
-" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n"
-" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n"
-" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n"
-" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n"
-" -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n"
-"และ apt.conf(5)\n"
-" APT นี้มีพลังของ Super Cow\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "กำลังเตรียมตั้งค่า %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "เจอ "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "กำลังตั้งค่า %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "ดึง:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "ข้าม "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "ติดตั้ง %s แล้ว"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "ปัญหา "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "กำลังเตรียมถอดถอน %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "à¸\94าวà¸\99à¹\8cà¹\82หลà¸\94 %sB à¹\83à¸\99 %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "à¸\81ำลัà¸\87à¸\96à¸à¸\94à¸\96à¸à¸\99 %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [กำลังทำงาน]"
+msgid "Removed %s"
+msgstr "ถอดถอน %s แล้ว"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "พบระเบียนแพกเกจที่ไม่รู้จัก!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"วิธีใช้: apt-sortpkgs [ตัวเลือก] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs เป็นเครื่องมืออย่างง่ายสำหรับเรียงลำดับแฟ้มรายชื่อแพกเกจ ตัวเลือก -s\n"
-"ใช้สำหรับระบุชนิดของแฟ้มที่เรียง\n"
-"\n"
-"ตัวเลือก:\n"
-" -h แสดงข้อความช่วยเหลือนี้\n"
-" -s เรียงตามแฟ้มซอร์สโค้ด\n"
-" -c=? อ่านแฟ้มค่าตั้งนี้\n"
-" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "à¸\84à¹\88าà¸\95ัà¹\89à¸\87à¸\9bริยายà¸\9cิà¸\94à¸\9eลาà¸\94!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "à¹\84มà¹\88สามารà¸\96à¹\81à¸\9eà¸\95à¸\8aà¹\8cà¹\81à¸\9fà¹\89ม"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "กด enter เพื่อดำเนินการต่อ"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "บรรทัด %d ยาวเกินไป (สูงสุด %u)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "ชื่อที่เก็บไว้: %s\n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "กำลังผสานรายชื่อแพกเกจที่มี"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "พบดัชนีแพกเกจ %i รายการ, ดัชนีซอร์ส %i รายการ, ดัชนีคำแปล %i รายการ และลายเซ็น %i "
+#~ "รายการ\n"
#~ msgid "openpty failed\n"
#~ msgstr "openpty ล้มเหลว\n"
# Eric Pareja <xenos@upm.edu.ph>, 2005
# This file is maintained by Eric Pareja <xenos@upm.edu.ph>
# Itong talaksan ay inaalagaan ni Eric Pareja <xenos@upm.edu.ph>
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Hindi mabasa ang database ng cdrom %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi "
-"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Maling CD"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Hindi nahanap ang Disk."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Hindi Nahanap ang Talaksan"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Bigo ang pag-stat"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Bigo ang pagtakda ng oras ng pagbago"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //"
+msgid "Unable to locate package %s"
+msgstr "Hindi mahanap ang paketeng %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Pumapasok"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Kabuuan ng mga Pakete : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Hindi malaman ang pangalan ng peer"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Normal na Pakete: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Hindi malaman ang pangalang lokal"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Purong Birtwual na Pakete: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Nag-iisang Birtwal na Pakete: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Halong Birtwal na Pakete: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Bigo ang PASS, sabi ng server ay: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Kulang/Nawawala: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"May tinakdang katuwang na server ngunit walang login script, walang laman "
-"ang Acquire::ftp::ProxyLogin."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Kabuuan ng Natatanging mga Bersyon: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Kabuuan ng Natatanging mga Bersyon: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Bigo ang TYPE, sabi ng server ay: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Kabuuan ng mga Dependensiya: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Lumipas ang koneksyon"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Sinarhan ng server ang koneksyon"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Error sa pagbasa"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Kabuuan ng Mapping ng Provides: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "May sagot na bumubo sa buffer."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Kabuuan ng Globbed String: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Sira ang protocol"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Error sa pagsulat"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Kabuuan ng Hindi Nagamit na puwang: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Hindi maka-likha ng socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Kabuuan ng puwang na napag-tuosan: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Wala sa sync ang talaksan ng paketeng %s."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Bigo"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Hindi maka-konekta sa socket na passive."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Walang nahanap na mga pakete"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "di makakuha ang getaddrinfo ng socket na nakikinig"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Talaksang Pakete:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Hindi maka-bind ng socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Hindi makarinig sa socket"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Hindi malaman ang pangalan ng socket"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Mga naka-Pin na Pakete:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Hindi makapagpadala ng utos na PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(hindi nahanap)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Di kilalang pamilya ng address %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Nakaluklok: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Bigo ang EPRT, sabi ng server ay: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(wala)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Nag-timeout ang socket ng datos"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Kandidato: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Hindi makatanggap ng koneksyon"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Naka-Pin na Pakete: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Problema sa pag-hash ng talaksan"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Talaang Bersyon:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Nag-timeout ang socket ng datos"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Tanong"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Hindi ma-invoke "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Kumokonekta sa %s (%s)"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)."
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Hindi maka-konekta sa %s:%s (%s)."
-
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "Kumokonekta sa %s"
-
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Hindi maresolba ang '%s'"
-
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'"
-
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
-
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Hindi maka-konekta sa %s %s:"
-
-#: methods/gpgv.cc:65
-#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Hindi mabasa ang keyring: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Sobrang haba ng talaan ng argumento mula sa Acquire::gpgv::Options. "
-"Lalabas."
-
-#: methods/gpgv.cc:204
+#: cmdline/apt-cache.cc:1721
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
msgstr ""
-"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key "
-"fingerprint?!"
+"Pag-gamit: apt-cache [mga option] utos\n"
+" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n"
+" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n"
+" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n"
+"\n"
+"apt-cache ay isang kagamitang low-level para sa pag-manipula\n"
+"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n"
+"impormasyon mula sa kanila\n"
+"\n"
+"Mga utos:\n"
+" add - Magdagdag ng talaksang pakete sa source cache\n"
+" gencaches - Buuin pareho ang cache ng pakete at source\n"
+" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n"
+" showsrc - Ipakita ang mga record ng source\n"
+" stats - Ipakita ang ilang mga estadistika\n"
+" dump - Ipakita ang buong talaksan sa anyong maikli\n"
+" dumpavail - Ipakita ang talaksang available sa stdout\n"
+" unmet - Ipakita ang mga kulang na mga dependensiya\n"
+" search - Maghanap sa listahan ng mga pakete ng regex pattern\n"
+" show - Ipakita ang nababasang record ng pakete\n"
+" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n"
+" ng pakete\n"
+" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n"
+" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n"
+" dotty - Bumuo ng graph ng mga pakete para sa GraphVis\n"
+" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n"
+" policy - Ipakita ang pagkaayos ng mga policy\n"
+"\n"
+"Mga option:\n"
+" -h Itong tulong na ito.\n"
+" -p=? Ang cache ng mga pakete.\n"
+" -s=? Ang cache ng mga source.\n"
+" -q Huwag ipakita ang hudyat ng progreso.\n"
+" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n"
+" -c=? Basahin ang talaksang pagkaayos na ito\n"
+" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
+"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n"
+"karagdagang impormasyon\n"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro."
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'"
-#: methods/gpgv.cc:213
-#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gnupg?)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter"
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Hindi kilalang error sa pag-execute ng gpgv"
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Ang sumusunod na mga lagda ay imbalido:\n"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Mga argumento ay hindi naka-pares"
-#: methods/gpgv.cc:256
+#: cmdline/apt-config.cc:76
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi "
-"available:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Bigo ang pag-stat ng %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Hindi makapag-bukas ng pipe para sa %s"
+"Pag-gamit: apt-config [mga option] utos\n"
+"\n"
+"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n"
+"ng APT\n"
+"\n"
+"Mga utos:\n"
+" shell - modong shell\n"
+" dump - ipakita ang pagkaayos\n"
+"Mga option:\n"
+" -h Itong tulong na ito.\n"
+" -c=? Basahin itong talaksang pagkaayos\n"
+" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
-#: methods/gzip.cc:109
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Read error from %s process"
-msgstr "Error sa pagbasa mula sa prosesong %s"
+msgid "%s not a valid DEB package."
+msgstr "%s ay hindi balido na paketeng DEB."
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Naghihintay ng panimula"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
+"\n"
+"Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
+"sa pagkaayos at template mula sa mga paketeng debian\n"
+"\n"
+"Mga opsyon:\n"
+" -h Itong tulong na ito\n"
+" -t Itakda ang dir na pansamantala\n"
+" -c=? Basahin ang talaksang pagkaayos na ito\n"
+" -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
-#: methods/http.cc:523
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Maling linyang panimula"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
-
-#: methods/http.cc:586
-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:601
-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:603
-msgid "This HTTP server has broken range support"
-msgstr "Sira ang range support ng HTTP server na ito"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Di kilalang anyo ng petsa"
-
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Bigo ang pagpili"
-
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Nag-timeout ang koneksyon"
-
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Error sa pagsulat ng talaksang output"
-
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Error sa pagsulat sa talaksan"
-
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Error sa pagsusulat sa talaksan"
-
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
-
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Error sa pagbasa mula sa server"
-
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Maling datos sa panimula"
-
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Bigo ang koneksyon"
+msgid "Unable to write to %s"
+msgstr "Hindi makapagsulat sa %s"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Internal na error"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Hindi mai-mmap ang talaksang walang laman"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Hindi makagawa ng mmap ng %lu na byte"
+msgid "Error processing directory %s"
+msgstr "Error sa pagproseso ng directory %s"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "Piniling %s ay hindi nahanap"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)"
-#: apt-pkg/contrib/configuration.cc:434
-#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Hindi kilalang katagang uri: '%c'"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Binubuksan ang talaksang pagsasaayos %s"
+msgid "Error processing contents %s"
+msgstr "Error sa pagproseso ng Contents %s"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Labis ang haba ng linyang %d (max %d)"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Pag-gamit: apt-ftparchive [mga option] utos\n"
+"Mga utos: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [mga grupo]\n"
+" clean config\n"
+"\n"
+"Ang apt-ftparchive ay gumagawa ng talaksang index para sa arkibong Debian.\n"
+"Suportado nito ang maraming estilo ng pagbuo mula sa awtomatikong buo\n"
+"at kapalit ng dpkg-scanpackages at dpkg-scansources\n"
+"\n"
+"Bumubuo ang apt-ftparchive ng mga talaksang Package mula sa puno ng mga\n"
+".deb. Ang talaksang Package ay naglalaman ng laman ng lahat ng control "
+"field\n"
+"mula sa bawat pakete pati na rin ang MD5 hash at laki ng talaksan. "
+"Suportado\n"
+"ang pag-gamit ng talaksang override upang pilitin ang halaga ng Priority at "
+"Section.\n"
+"\n"
+"Bumubuo din ang apt-ftparchive ng talaksang Sources mula sa puno ng mga\n"
+".dsc. Ang option na --source-override ay maaaring gamitin upang itakda\n"
+"ang talaksang override ng src\n"
+"\n"
+"Ang mga utos na 'packages' at 'sources' ay dapat patakbuhin sa ugat ng\n"
+"puno. Kailangan nakaturo ang BinaryPath sa ugat ng paghahanap na recursive\n"
+"at ang talaksang override ay dapat naglalaman ng mga flag na override. Ang\n"
+"pathprefix ay dinudugtong sa harap ng mga pangalan ng talaksan kung "
+"mayroon.\n"
+"Halimbawa ng pag-gamit mula sa arkibong Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Mga option:\n"
+" -h Itong tulong na ito\n"
+" --md5 Pagbuo ng MD5\n"
+" -s=? Talaksang override ng source\n"
+" -q Tahimik\n"
+" -d=? Piliin ang optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Pagbuo ng talaksang contents\n"
+" -c=? Basahin itong talaksang pagkaayos\n"
+" -o=? Itakda ang isang option na pagkaayos"
-#: apt-pkg/contrib/configuration.cc:606
-#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan."
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Walang mga pinili na tugma"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Syntax error %s:%u: Maling anyo ng Tag"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/cachedb.cc:43
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Syntax error %s:%u: May basura matapos ng halaga"
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/cachedb.cc:61
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr ""
-"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Luma ang DB, sinusubukang maupgrade ang %s"
-#: apt-pkg/contrib/configuration.cc:689
-#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Hindi tanggap ang anyo ng DB. Kung kayo ay nagsariwa mula sa nakaraang "
+"bersiyon ng apt, tanggalin at likhain muli ang database."
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/cachedb.cc:77
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Syntax error %s:%u: Sinama mula dito"
+msgid "Unable to open DB file %s: %s"
+msgstr "Hindi mabuksan ang talaksang DB %s: %s"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
+msgid "Failed to stat %s"
+msgstr "Bigo ang pag-stat ng %s"
-#: apt-pkg/contrib/configuration.cc:736
-#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Walang kontrol rekord ang arkibo"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "Hindi mabasa ang %s"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Hindi makakuha ng cursor"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/writer.cc:76
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Error!"
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Hindi mabasa ang directory %s\n"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/writer.cc:81
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Tapos"
+msgid "W: Unable to stat %s\n"
+msgstr "W: Hindi ma-stat %s\n"
-#: apt-pkg/contrib/cmndline.cc:77
-#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala."
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
-#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Opsyon sa command line %s ay di naintindihan."
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Opsyon sa command line %s ay hindi boolean"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Mga error ay tumutukoy sa talaksang "
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Opsyon %s ay nangangailangan ng argumento"
+msgid "Failed to resolve %s"
+msgstr "Bigo sa pag-resolba ng %s"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
-"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
-"=<halaga>."
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Bigo ang paglakad sa puno"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'"
+msgid "Failed to open %s"
+msgstr "Bigo ang pagbukas ng %s"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Opsyon '%s' ay labis ang haba"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/cmndline.cc:298
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Hindi naintindihan ang %s, subukan ang true o false."
+msgid "Failed to readlink %s"
+msgstr "Bigo ang pagbasa ng link %s"
-#: apt-pkg/contrib/cmndline.cc:348
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Invalid operation %s"
-msgstr "Di tanggap na operasyon %s"
+msgid "Failed to unlink %s"
+msgstr "Bigo ang pag-unlink ng %s"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Di mai-stat ang mount point %s"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Bigo ang pag-link ng %s sa %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Unable to change to %s"
-msgstr "Di makalipat sa %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " DeLink limit na %sB tinamaan.\n"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Bigo sa pag-stat ng cdrom"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Walang field ng pakete ang arkibo"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, 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"
+msgid " %s has no override entry\n"
+msgstr " %s ay walang override entry\n"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Hindi mabuksan ang talaksang aldaba %s"
+msgid " %s maintainer is %s not %s\n"
+msgstr " Tagapangalaga ng %s ay %s hindi %s\n"
-#: apt-pkg/contrib/fileutl.cc:105
+#: ftparchive/writer.cc:620
#, 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"
+msgid " %s has no source override entry\n"
+msgstr " %s ay walang override entry para sa pinagmulan\n"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Could not get lock %s"
-msgstr "hindi makuha ang aldaba %s"
+msgid " %s has no binary override entry either\n"
+msgstr " %s ay wala ring override entry na binary\n"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Naghintay, para sa %s ngunit wala nito doon"
+msgid "Internal error, could not locate member %s"
+msgstr "Internal error, hindi mahanap ang miyembrong %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - Bigo ang pagreserba ng memory"
-#: apt-pkg/contrib/fileutl.cc:390
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Naghudyat ang sub-process %s ng error code (%u)"
+msgid "Unable to open %s"
+msgstr "Hindi mabuksan %s"
-#: apt-pkg/contrib/fileutl.cc:392
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
+msgid "Malformed override %s line %lu #1"
+msgstr "Maling anyo ng override %s linya %lu #1"
-#: apt-pkg/contrib/fileutl.cc:436
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Could not open file %s"
-msgstr "Hindi mabuksan ang talaksang %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Maling anyo ng override %s linya %lu #2"
-#: apt-pkg/contrib/fileutl.cc:492
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
+msgid "Malformed override %s line %lu #3"
+msgstr "Maling anyo ng override %s linya %lu #3"
-#: apt-pkg/contrib/fileutl.cc:522
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
+msgid "Failed to read the override file %s"
+msgstr "Bigo ang pagbasa ng talaksang override %s"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Problema sa pagsara ng talaksan"
+#: ftparchive/multicompress.cc:72
+#, c-format
+msgid "Unknown compression algorithm '%s'"
+msgstr "Hindi kilalang algorithmong compression '%s'"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Problema sa pag-unlink ng talaksan"
+#: ftparchive/multicompress.cc:102
+#, c-format
+msgid "Compressed output %s needs a compression set"
+msgstr "Kailangan ng compression set ang compressed output %s"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Problema sa pag-sync ng talaksan"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Walang laman ang cache ng pakete"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Bigo ang paglikha ng FILE*"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Sira ang talaksan ng cache ng pakete"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Bigo ang pag-fork"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Anak para sa pag-Compress"
-#: apt-pkg/pkgcache.cc:148
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'"
-
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura"
-
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Dependensiya"
+msgid "Internal error, failed to create %s"
+msgstr "Error na internal, bigo ang paglikha ng %s"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "PreDepends"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Bigo ang paglikha ng subprocess IPC"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Mungkahi"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Bigo ang pag-exec ng taga-compress"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Rekomendado"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "taga-decompress"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Tunggali"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Bigo ang IO sa subprocess/talaksan"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Pumapalit"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Bigo ang pagbasa habang tinutuos ang MD5"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Linalaos"
+#: ftparchive/multicompress.cc:472
+#, c-format
+msgid "Problem unlinking %s"
+msgstr "Problema sa pag-unlink ng %s"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
+#, c-format
+msgid "Failed to rename %s to %s"
+msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "importante"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "O"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "kailangan"
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
+#, c-format
+msgid "Regex compilation error - %s"
+msgstr "Error sa pag-compile ng regex - %s"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "standard"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "optional"
+#: cmdline/apt-get.cc:331
+#, c-format
+msgid "but %s is installed"
+msgstr "ngunit ang %s ay nakaluklok"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "extra"
+#: cmdline/apt-get.cc:333
+#, c-format
+msgid "but %s is to be installed"
+msgstr "ngunit ang %s ay iluluklok"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Ginagawa ang puno ng mga dependensiya"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "ngunit hindi ito maaaring iluklok"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Bersyong Kandidato"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "ngunit ito ay birtwal na pakete"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Pagbuo ng Dependensiya"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "ngunit ito ay hindi nakaluklok"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Pinagsasama ang magagamit na impormasyon"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "ngunit ito ay hindi iluluklok"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Bigo ang pagbukas ng %s"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " o"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Bigo sa pagsulat ng talaksang %s"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Hindi ma-parse ang talaksang pakete %s (2)"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Ang susunod na mga pakete ay iu-upgrade:"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
-#: apt-pkg/sourcelist.cc:101
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)"
+msgid "%s (due to %s) "
+msgstr "%s (dahil sa %s) "
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
+#: cmdline/apt-get.cc:550
+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-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:581
#, c-format
-msgid "Opening %s"
-msgstr "Binubuksan %s"
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:585
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s."
+msgid "%lu reinstalled, "
+msgstr "%lu iniluklok muli, "
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:587
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
+msgid "%lu downgraded, "
+msgstr "%lu nai-downgrade, "
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:589
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s"
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:593
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)"
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n"
-#: apt-pkg/packagemanager.cc:399
-#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Inaayos ang mga dependensiya..."
+
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " ay bigo."
+
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Hindi maayos ang mga dependensiya"
+
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Hindi mai-minimize ang upgrade set"
+
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Tapos"
+
+#: cmdline/apt-get.cc:682
+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:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
+
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
msgstr ""
-"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang "
-"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends "
-"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-"
-"activate ang APT::Force-LoopBreak na option."
+"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr ""
+"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
-#: apt-pkg/algorithms.cc:247
-#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? "
+
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
+
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+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:773
+msgid "Internal error, InstallPackages was called with broken packages!"
msgstr ""
-"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
-"para dito."
+"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
msgstr ""
-"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
-"ito ng mga paketeng naka-hold."
+"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
+
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Hindi maaldaba ang directory ng download"
+
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)."
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold."
+"Nakapagtataka.. Hindi magkatugma ang laki, mag-email sa apt@packages.debian."
+"org"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Nawawala ang directory ng talaan %spartial."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Nawawala ang directory ng arkibo %spartial."
+msgid "Need to get %sB of archives.\n"
+msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)"
+#: cmdline/apt-get.cc:847
+#, 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"
-#: apt-pkg/acquire.cc:829
-#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Kinukuha ang talaksang %li ng %li"
+#: cmdline/apt-get.cc:850
+#, 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-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Ang driver ng paraang %s ay hindi mahanap."
+msgid "Couldn't determine free space in %s"
+msgstr "Hindi matantsa ang libreng puwang sa %s"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Hindi umandar ng tama ang paraang %s"
+msgid "You don't have enough free space in %s."
+msgstr "Kulang kayo ng libreng puwang sa %s."
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Oo, gawin ang sinasabi ko!"
+
+#: cmdline/apt-get.cc:891
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid ""
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
+"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
+"Upang magpatuloy, ibigay ang pariralang '%s'\n"
+" ?] "
-#: apt-pkg/init.cc:124
-#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Hindi suportado ang sistema ng paketeng '%s'"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Abort."
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Nais niyo bang magpatuloy [O/h]? "
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Unable to stat %s."
-msgstr "Hindi ma-stat ang %s"
+msgid "Failed to fetch %s %s\n"
+msgstr "Bigo sa pagkuha ng %s %s\n"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list"
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "May mga talaksang hindi nakuha"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)."
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado."
+"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
+"subukang may --fix-missing?"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
-"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang "
-"ito"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Hindi maayos ang mga kulang na pakete."
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Ina-abort ang pag-instol."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Hindi naintindihan ang uri ng pin %s"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Paunawa, pinili ang %s imbes na %s\n"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
+#: cmdline/apt-get.cc:1063
+#, 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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Hindi akma ang versioning system ng cache"
+#: cmdline/apt-get.cc:1081
+#, c-format
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "May naganap na error habang prinoseso ang %s (NewPackage)"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Nakaluklok]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Dapat kayong mamili ng isa na iluluklok."
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)"
+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:1133
+msgid "However the following packages replace it:"
+msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1136
+#, c-format
+msgid "Package %s has no installation candidate"
+msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
+msgid "%s is already the newest version.\n"
+msgstr "%s ay pinakabagong bersyon na.\n"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "Release '%s' para sa '%s' ay hindi nahanap"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Hindi maaldaba ang directory ng talaan"
+
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
msgstr ""
-"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito."
+"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
+"mga luma na lamang."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
-
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito."
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
msgstr ""
-"Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya."
+"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Error na internal, may nasira ang problem resolver"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Binabasa ang Listahan ng mga Pakete"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Kinukuha ang Talaksang Provides"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Hindi mahanap ang paketeng %s"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Unable to write to %s"
-msgstr "Hindi makapagsulat sa %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "IO Error sa pag-imbak ng source cache"
+msgid "Couldn't find package %s"
+msgstr "Hindi mahanap ang paketeng %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Di tugmang MD5Sum"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Di tugmang MD5Sum"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "ngunit ang %s ay iluluklok"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Walang public key na magamit para sa sumusunod na key ID:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr ""
+"Maaaring patakbuhin niyo ang `apt-get -f install' upang ayusin ang mga ito:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
-"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
+"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
+"mga pakete (o magtakda ng solusyon)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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 ""
-"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
-"niyong ayusin ng de kamay ang paketeng ito."
+"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n"
+"o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n"
+"kailangan na hindi pa nalikha o linipat mula sa Incoming."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
-"paketeng %s."
+"Dahil ang hiniling niyo ay mag-isang operasyon, malamang ay ang pakete ay\n"
+"hindi talaga mailuklok at kailangang magpadala ng bug report tungkol sa\n"
+"pakete na ito."
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Di tugmang laki"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Sirang mga pakete"
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Block ng nagbebenta %s ay walang fingerprint"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Ginagamit ang %s bilang mount point ng CD-ROM\n"
-"Sinasalang ang CD-ROM\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Mga paketeng mungkahi:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Kinikilala..."
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Mga paketeng rekomendado:"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Sinusuri ang pag-upgrade... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Bigo"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Tapos"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Error na internal, may nasira ang problem resolver"
+
+#: cmdline/apt-get.cc:2096
+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:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Stored label: %s\n"
-msgstr "Naka-imbak na Label: %s \n"
+msgid "Unable to find a source package for %s"
+msgstr "Hindi mahanap ang paketeng source para sa %s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Linaktawan ang nakuha na na talaksan '%s'\n"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Ina-unmount ang CD-ROM\n"
+#: cmdline/apt-get.cc:2203
+#, c-format
+msgid "You don't have enough free space in %s"
+msgstr "Kulang kayo ng libreng puwang sa %s"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Hinihintay ang disc...\n"
+#: cmdline/apt-get.cc:2209
+#, c-format
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Sinasalang ang CD-ROM...\n"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Sinisiyasat ang Disc para sa talaksang index...\n"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "Kunin ang Source %s\n"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
-"signature\n"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Bigo sa pagkuha ng ilang mga arkibo."
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Naka-imbak na Label: %s \n"
+#: cmdline/apt-get.cc:2277
+#, c-format
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Hindi yan tanggap na pangalan, subukan muli.\n"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Ang Disc na ito ay nagngangalang: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Kinokopya ang Listahan ng mga Pakete"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Sinusulat ang bagong listahan ng pagkukunan\n"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "Utos na build '%s' ay bigo.\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Bigo ang prosesong anak"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Ina-unmount ang CD-ROM..."
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Nagsulat ng %i na record.\n"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Hindi makuha ang impormasyong build-dependency para sa %s"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n"
+msgid "%s has no build depends.\n"
+msgstr "Walang build depends ang %s.\n"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
+"mahanap"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang "
-"mismatch\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Nawawala ang directory ng talaan %spartial."
+"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
+"ng paketeng %s na tumutugon sa kinakailangang bersyon"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Preparing %s"
-msgstr "Hinahanda ang %s"
+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."
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Unpacking %s"
-msgstr "Binubuklat ang %s"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Hinahanda ang %s upang isaayos"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Hindi mabuo ang build-dependencies para sa %s."
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "Isasaayos ang %s"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Bigo sa pagproseso ng build dependencies"
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Error sa pagproseso ng directory %s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Suportadong mga Module:"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Iniluklok ang %s"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Pag-gamit: apt-get [mga option] utos\n"
+" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n"
+" apt-get [mga option] source pkt1 [pkt2 ...]\n"
+"\n"
+"Ang apt-get ay payak na command line interface para sa pagkuha at\n"
+"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n"
+"at install.\n"
+"\n"
+"Mga utos:\n"
+" update - Kunin ang bagong listahan ng mga pakete\n"
+" upgrade - Gumawa ng upgrade\n"
+" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n"
+" remove - Mag-tanggal ng mga pakete\n"
+" source - Kumuha ng arkibong source\n"
+" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n"
+" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n"
+" dselect-upgrade - Sundan ang mga pinili sa dselect\n"
+" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n"
+" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n"
+" check - Tiyakin na walang mga sirang dependensiya\n"
+"\n"
+"Mga option:\n"
+" -h Itong tulong na ito.\n"
+" -q Output na maaaring itala - walang indikator ng progreso\n"
+" -qq Walang output maliban sa mga error\n"
+" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n"
+" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n"
+" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n"
+" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n"
+" -b Ibuo ang paketeng source matapos kunin ito\n"
+" -V Ipakita ng buo ang bilang ng bersyon\n"
+" -c=? Basahin itong talaksang pagkaayos\n"
+" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
+"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n"
+"para sa karagdagang impormasyon at mga option.\n"
+" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n"
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Naghahanda para sa pagtanggal ng %s"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Tumama "
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "Tinatanggal ang %s"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Kunin: "
+
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "DiPansin "
+
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Err "
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Removed %s"
-msgstr "Tinanggal ang %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Naghahanda upang tanggalin ng lubusan ang %s"
+msgid " [Working]"
+msgstr " [May ginagawa]"
-#: apt-pkg/deb/dpkgpm.cc:601
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Completely removed %s"
-msgstr "Natanggal ng lubusan ang %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Pagpalit ng Media: Ikasa ang disk na may pangalang\n"
+" '%s'\n"
+"sa drive '%s' at pindutin ang enter\n"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Di kilalang record ng pakete!"
+
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
+"Pag-gamit: apt-sortpkgs [mga option] talaksan1 [talaksan2 ...]\n"
+"\n"
+"Ang apt-sortpkgs ay payak na kagamitan upang makapag-sort ng talaksang "
+"pakete.\n"
+"Ang option -s ay ginagamit upang ipaalam kung anong klaseng talaksan ito.\n"
+"\n"
+"Mga option:\n"
+" -h Itong tulong na ito\n"
+" -s Gamitin ang pag-sort ng talaksang source\n"
+" -c=? Basahin ang talaksang pagkaayos na ito\n"
+" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Hindi mai-patch ang talaksan"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Maling nakatakda na default!"
+
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Pindutin ang enter upang magpatuloy."
+
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
+
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble"
+
+#: dselect/install:102
+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"
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Bigo sa paglikha ng IPC pipe sa subprocess"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr ""
+"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin "
+"muli ang [I]luklok/Instol."
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Nagsara ng maaga ang koneksyon"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Pinagsasama ang magagamit na impormasyon"
#: apt-inst/contrib/extracttar.cc:114
msgid "Failed to create pipes"
msgid "The diversion path is too long"
msgstr "Sobrang haba ng path na diversion"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Bigo ang pagpangalan muli ng %s tungong %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Hindi mabasa ang %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "Failed to stat %sinfo"
msgstr "Bigo sa pag-stat ng %sinfo"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem"
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Binabasa ang Listahan ng mga Pakete"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Bigo sa paglipat sa admin dir %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Internal error sa pagkuha ng pangalan ng pakete"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Binabasa ang Talaksang Listahan"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Bigo sa pagbukas ng talaksang listahan '%sinfo/%s'. Kung hindi niyo maibalik "
+"ang talaksang ito, gawin itong walang laman at muling instolahin kaagad ang "
+"parehong bersyon ng pakete!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Bigo sa pagbasa ng talaksang listahan %sinfo/%s"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Internal error sa pagkuha ng Node"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Bigo sa pagbukas ng talaksang diversions %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Ang talaksang diversion ay sira"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Di tanggap na linya sa talaksang diversion: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
+msgid "Internal error adding a diversion"
+msgstr "Internal error sa pagdagdag ng diversion"
+
+#: apt-inst/deb/dpkgdb.cc:379
+msgid "The pkg cache must be initialized first"
+msgstr "Ang cache ng pkg ay dapat ma-initialize muna"
+
+#: apt-inst/deb/dpkgdb.cc:439
+#, c-format
+msgid "Failed to find a Package: header, offset %lu"
+msgstr "Bigo sa paghanap ng Pakete: Header, offset %lu"
+
+#: apt-inst/deb/dpkgdb.cc:461
+#, c-format
+msgid "Bad ConfFile section in the status file. Offset %lu"
+msgstr "Maling ConfFile section sa talaksang status. Offset %lu"
+
+#: apt-inst/deb/dpkgdb.cc:466
+#, c-format
+msgid "Error parsing MD5. Offset %lu"
+msgstr "Error sa pag-parse ng MD5. Offset %lu"
+
+#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
+#, c-format
+msgid "This is not a valid DEB archive, missing '%s' member"
+msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
+
+#: apt-inst/deb/debfile.cc:50
+#, 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:110
+#, c-format
+msgid "Couldn't change to %s"
+msgstr "Hindi makalipat sa %s"
+
+#: apt-inst/deb/debfile.cc:140
+msgid "Internal error, could not locate member"
+msgstr "Internal error, hindi mahanap ang miyembro"
+
+#: apt-inst/deb/debfile.cc:173
+msgid "Failed to locate a valid control file"
+msgstr "Bigo sa paghanap ng tanggap na talaksang control"
+
+#: apt-inst/deb/debfile.cc:258
+msgid "Unparsable control file"
+msgstr "Di maintindihang talaksang control"
+
+#: methods/cdrom.cc:114
+#, c-format
+msgid "Unable to read the cdrom database %s"
+msgstr "Hindi mabasa ang database ng cdrom %s"
+
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi "
+"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD"
+
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Maling CD"
+
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito."
+
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Hindi nahanap ang Disk."
+
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Hindi Nahanap ang Talaksan"
+
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Bigo ang pag-stat"
+
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Bigo ang pagtakda ng oras ng pagbago"
+
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //"
+
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Pumapasok"
+
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Hindi malaman ang pangalan ng peer"
+
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Hindi malaman ang pangalang lokal"
+
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s"
+
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s"
+
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Bigo ang PASS, sabi ng server ay: %s"
+
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"May tinakdang katuwang na server ngunit walang login script, walang laman "
+"ang Acquire::ftp::ProxyLogin."
+
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s"
+
+#: methods/ftp.cc:291
+#, c-format
+msgid "TYPE failed, server said: %s"
+msgstr "Bigo ang TYPE, sabi ng server ay: %s"
+
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Lumipas ang koneksyon"
+
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Sinarhan ng server ang koneksyon"
+
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Error sa pagbasa"
+
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "May sagot na bumubo sa buffer."
+
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Sira ang protocol"
+
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Error sa pagsulat"
+
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Hindi maka-likha ng socket"
+
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon"
+
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Hindi maka-konekta sa socket na passive."
+
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "di makakuha ang getaddrinfo ng socket na nakikinig"
+
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Hindi maka-bind ng socket"
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Bigo sa paglipat sa admin dir %sinfo"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Hindi makarinig sa socket"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Internal error sa pagkuha ng pangalan ng pakete"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Hindi malaman ang pangalan ng socket"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Binabasa ang Talaksang Listahan"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Hindi makapagpadala ng utos na PORT"
-#: apt-inst/deb/dpkgdb.cc:212
+#: methods/ftp.cc:789
#, c-format
-msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
-msgstr ""
-"Bigo sa pagbukas ng talaksang listahan '%sinfo/%s'. Kung hindi niyo maibalik "
-"ang talaksang ito, gawin itong walang laman at muling instolahin kaagad ang "
-"parehong bersyon ng pakete!"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Di kilalang pamilya ng address %u (AF_*)"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#: methods/ftp.cc:798
#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Bigo sa pagbasa ng talaksang listahan %sinfo/%s"
+msgid "EPRT failed, server said: %s"
+msgstr "Bigo ang EPRT, sabi ng server ay: %s"
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Internal error sa pagkuha ng Node"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Nag-timeout ang socket ng datos"
-#: apt-inst/deb/dpkgdb.cc:305
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Hindi makatanggap ng koneksyon"
+
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Problema sa pag-hash ng talaksan"
+
+#: methods/ftp.cc:877
#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Bigo sa pagbukas ng talaksang diversions %sdiversions"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'"
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Ang talaksang diversion ay sira"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Nag-timeout ang socket ng datos"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
+#: methods/ftp.cc:922
#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Di tanggap na linya sa talaksang diversion: %s"
+msgid "Data transfer failed, server said '%s'"
+msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'"
-#: apt-inst/deb/dpkgdb.cc:358
-msgid "Internal error adding a diversion"
-msgstr "Internal error sa pagdagdag ng diversion"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Tanong"
-#: apt-inst/deb/dpkgdb.cc:379
-msgid "The pkg cache must be initialized first"
-msgstr "Ang cache ng pkg ay dapat ma-initialize muna"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Hindi ma-invoke "
-#: apt-inst/deb/dpkgdb.cc:439
+#: methods/connect.cc:64
#, c-format
-msgid "Failed to find a Package: header, offset %lu"
-msgstr "Bigo sa paghanap ng Pakete: Header, offset %lu"
+msgid "Connecting to %s (%s)"
+msgstr "Kumokonekta sa %s (%s)"
-#: apt-inst/deb/dpkgdb.cc:461
+#: methods/connect.cc:71
#, c-format
-msgid "Bad ConfFile section in the status file. Offset %lu"
-msgstr "Maling ConfFile section sa talaksang status. Offset %lu"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: apt-inst/deb/dpkgdb.cc:466
+#: methods/connect.cc:80
#, c-format
-msgid "Error parsing MD5. Offset %lu"
-msgstr "Error sa pag-parse ng MD5. Offset %lu"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)"
-#: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43
+#: methods/connect.cc:86
#, c-format
-msgid "This is not a valid DEB archive, missing '%s' member"
-msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'"
-
-#: apt-inst/deb/debfile.cc:50
-#, 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'"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)."
-#: apt-inst/deb/debfile.cc:110
+#: methods/connect.cc:93
#, c-format
-msgid "Couldn't change to %s"
-msgstr "Hindi makalipat sa %s"
-
-#: apt-inst/deb/debfile.cc:140
-msgid "Internal error, could not locate member"
-msgstr "Internal error, hindi mahanap ang miyembro"
-
-#: apt-inst/deb/debfile.cc:173
-msgid "Failed to locate a valid control file"
-msgstr "Bigo sa paghanap ng tanggap na talaksang control"
-
-#: apt-inst/deb/debfile.cc:258
-msgid "Unparsable control file"
-msgstr "Di maintindihang talaksang control"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon"
-#: cmdline/apt-cache.cc:143
+#: methods/connect.cc:108
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Hindi maka-konekta sa %s:%s (%s)."
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
#, c-format
-msgid "Unable to locate package %s"
-msgstr "Hindi mahanap ang paketeng %s"
-
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Kabuuan ng mga Pakete : "
-
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Normal na Pakete: "
-
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Purong Birtwual na Pakete: "
-
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Nag-iisang Birtwal na Pakete: "
-
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Halong Birtwal na Pakete: "
-
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Kulang/Nawawala: "
-
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Kabuuan ng Natatanging mga Bersyon: "
-
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Kabuuan ng Natatanging mga Bersyon: "
+msgid "Connecting to %s"
+msgstr "Kumokonekta sa %s"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Kabuuan ng mga Dependensiya: "
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Hindi maresolba ang '%s'"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Kabuuan ng ugnayang Ber/Talaksan: "
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Kabuuan ng Mapping ng Provides: "
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Hindi maka-konekta sa %s %s:"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Kabuuan ng Globbed String: "
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Hindi mabasa ang keyring: '%s'"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Sobrang haba ng talaan ng argumento mula sa Acquire::gpgv::Options. "
+"Lalabas."
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Kabuuan ng Hindi Nagamit na puwang: "
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr ""
+"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key "
+"fingerprint?!"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Kabuuan ng puwang na napag-tuosan: "
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro."
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/gpgv.cc:214
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Wala sa sync ang talaksan ng paketeng %s."
-
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Kailangan niyong magbigay ng isa lamang na pattern"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gnupg?)"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Walang nahanap na mga pakete"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Hindi kilalang error sa pag-execute ng gpgv"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Talaksang Pakete:"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Ang sumusunod na mga lagda ay imbalido:\n"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi "
+"available:\n"
-#: cmdline/apt-cache.cc:1532
+#: methods/gzip.cc:64
#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Hindi makapag-bukas ng pipe para sa %s"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Mga naka-Pin na Pakete:"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Error sa pagbasa mula sa prosesong %s"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(hindi nahanap)"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Naghihintay ng panimula"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Nakaluklok: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(wala)"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Maling linyang panimula"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Kandidato: "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "Nagpadala ang HTTP server ng di tanggap na reply header"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Naka-Pin na Pakete: "
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Talaang Bersyon:"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header"
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Sira ang range support ng HTTP server na ito"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s para sa %s %s kinompile noong %s %s\n"
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Di kilalang anyo ng petsa"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Pag-gamit: apt-cache [mga option] utos\n"
-" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n"
-" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n"
-" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n"
-"\n"
-"apt-cache ay isang kagamitang low-level para sa pag-manipula\n"
-"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n"
-"impormasyon mula sa kanila\n"
-"\n"
-"Mga utos:\n"
-" add - Magdagdag ng talaksang pakete sa source cache\n"
-" gencaches - Buuin pareho ang cache ng pakete at source\n"
-" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n"
-" showsrc - Ipakita ang mga record ng source\n"
-" stats - Ipakita ang ilang mga estadistika\n"
-" dump - Ipakita ang buong talaksan sa anyong maikli\n"
-" dumpavail - Ipakita ang talaksang available sa stdout\n"
-" unmet - Ipakita ang mga kulang na mga dependensiya\n"
-" search - Maghanap sa listahan ng mga pakete ng regex pattern\n"
-" show - Ipakita ang nababasang record ng pakete\n"
-" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n"
-" ng pakete\n"
-" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n"
-" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n"
-" dotty - Bumuo ng graph ng mga pakete para sa GraphVis\n"
-" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n"
-" policy - Ipakita ang pagkaayos ng mga policy\n"
-"\n"
-"Mga option:\n"
-" -h Itong tulong na ito.\n"
-" -p=? Ang cache ng mga pakete.\n"
-" -s=? Ang cache ng mga source.\n"
-" -q Huwag ipakita ang hudyat ng progreso.\n"
-" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n"
-" -c=? Basahin ang talaksang pagkaayos na ito\n"
-" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
-"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n"
-"karagdagang impormasyon\n"
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Bigo ang pagpili"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'"
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Nag-timeout ang koneksyon"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter"
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Error sa pagsulat ng talaksang output"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Error sa pagsulat sa talaksan"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Mga argumento ay hindi naka-pares"
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Error sa pagsusulat sa talaksan"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Pag-gamit: apt-config [mga option] utos\n"
-"\n"
-"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n"
-"ng APT\n"
-"\n"
-"Mga utos:\n"
-" shell - modong shell\n"
-" dump - ipakita ang pagkaayos\n"
-"Mga option:\n"
-" -h Itong tulong na ito.\n"
-" -c=? Basahin itong talaksang pagkaayos\n"
-" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n"
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
-#: cmdline/apt-extracttemplates.cc:98
-#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s ay hindi balido na paketeng DEB."
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Error sa pagbasa mula sa server"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Pag-gamit: apt-extracttemplates talaksan1 [talaksan2 ...]\n"
-"\n"
-"Ang apt-extracttemplates ay kagamitan sa pagkuha ng info tungkol\n"
-"sa pagkaayos at template mula sa mga paketeng debian\n"
-"\n"
-"Mga opsyon:\n"
-" -h Itong tulong na ito\n"
-" -t Itakda ang dir na pansamantala\n"
-" -c=? Basahin ang talaksang pagkaayos na ito\n"
-" -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n"
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Maling datos sa panimula"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Bigo ang koneksyon"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?"
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Internal na error"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete"
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Hindi mai-mmap ang talaksang walang laman"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Error processing directory %s"
-msgstr "Error sa pagproseso ng directory %s"
-
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Hindi makagawa ng mmap ng %lu na byte"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Piniling %s ay hindi nahanap"
-#: ftparchive/apt-ftparchive.cc:398
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Error processing contents %s"
-msgstr "Error sa pagproseso ng Contents %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Hindi kilalang katagang uri: '%c'"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Pag-gamit: apt-ftparchive [mga option] utos\n"
-"Mga utos: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [mga grupo]\n"
-" clean config\n"
-"\n"
-"Ang apt-ftparchive ay gumagawa ng talaksang index para sa arkibong Debian.\n"
-"Suportado nito ang maraming estilo ng pagbuo mula sa awtomatikong buo\n"
-"at kapalit ng dpkg-scanpackages at dpkg-scansources\n"
-"\n"
-"Bumubuo ang apt-ftparchive ng mga talaksang Package mula sa puno ng mga\n"
-".deb. Ang talaksang Package ay naglalaman ng laman ng lahat ng control "
-"field\n"
-"mula sa bawat pakete pati na rin ang MD5 hash at laki ng talaksan. "
-"Suportado\n"
-"ang pag-gamit ng talaksang override upang pilitin ang halaga ng Priority at "
-"Section.\n"
-"\n"
-"Bumubuo din ang apt-ftparchive ng talaksang Sources mula sa puno ng mga\n"
-".dsc. Ang option na --source-override ay maaaring gamitin upang itakda\n"
-"ang talaksang override ng src\n"
-"\n"
-"Ang mga utos na 'packages' at 'sources' ay dapat patakbuhin sa ugat ng\n"
-"puno. Kailangan nakaturo ang BinaryPath sa ugat ng paghahanap na recursive\n"
-"at ang talaksang override ay dapat naglalaman ng mga flag na override. Ang\n"
-"pathprefix ay dinudugtong sa harap ng mga pangalan ng talaksan kung "
-"mayroon.\n"
-"Halimbawa ng pag-gamit mula sa arkibong Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Mga option:\n"
-" -h Itong tulong na ito\n"
-" --md5 Pagbuo ng MD5\n"
-" -s=? Talaksang override ng source\n"
-" -q Tahimik\n"
-" -d=? Piliin ang optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Pagbuo ng talaksang contents\n"
-" -c=? Basahin itong talaksang pagkaayos\n"
-" -o=? Itakda ang isang option na pagkaayos"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "Binubuksan ang talaksang pagsasaayos %s"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Walang mga pinili na tugma"
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Labis ang haba ng linyang %d (max %d)"
-#: ftparchive/apt-ftparchive.cc:832
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan."
-#: ftparchive/cachedb.cc:43
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Syntax error %s:%u: Maling anyo ng Tag"
-#: ftparchive/cachedb.cc:61
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Luma ang DB, sinusubukang maupgrade ang %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Syntax error %s:%u: May basura matapos ng halaga"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
msgstr ""
-"Hindi tanggap ang anyo ng DB. Kung kayo ay nagsariwa mula sa nakaraang "
-"bersiyon ng apt, tanggalin at likhain muli ang database."
+"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas"
-#: ftparchive/cachedb.cc:77
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Hindi mabuksan ang talaksang DB %s: %s"
-
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Walang kontrol rekord ang arkibo"
-
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Hindi makakuha ng cursor"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include"
-#: ftparchive/writer.cc:76
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Hindi mabasa ang directory %s\n"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Syntax error %s:%u: Sinama mula dito"
-#: ftparchive/writer.cc:81
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Hindi ma-stat %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Error!"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Mga error ay tumutukoy sa talaksang "
+#: apt-pkg/contrib/progress.cc:155
+#, c-format
+msgid "%c%s... Done"
+msgstr "%c%s... Tapos"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Bigo sa pag-resolba ng %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala."
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Bigo ang paglakad sa puno"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Opsyon sa command line %s ay di naintindihan."
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Failed to open %s"
-msgstr "Bigo ang pagbukas ng %s"
+msgid "Command line option %s is not boolean"
+msgstr "Opsyon sa command line %s ay hindi boolean"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+msgid "Option %s requires an argument."
+msgstr "Opsyon %s ay nangangailangan ng argumento"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Bigo ang pagbasa ng link %s"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
+"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng "
+"=<halaga>."
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Bigo ang pag-unlink ng %s"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Bigo ang pag-link ng %s sa %s"
+msgid "Option '%s' is too long"
+msgstr "Opsyon '%s' ay labis ang haba"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " DeLink limit na %sB tinamaan.\n"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Hindi naintindihan ang %s, subukan ang true o false."
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Walang field ng pakete ang arkibo"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Di tanggap na operasyon %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s ay walang override entry\n"
+msgid "Unable to stat the mount point %s"
+msgstr "Di mai-stat ang mount point %s"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " Tagapangalaga ng %s ay %s hindi %s\n"
+msgid "Unable to change to %s"
+msgstr "Di makalipat sa %s"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Bigo sa pag-stat ng cdrom"
+
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s ay walang override entry para sa pinagmulan\n"
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/fileutl.cc:87
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s ay wala ring override entry na binary\n"
+msgid "Could not open lock file %s"
+msgstr "Hindi mabuksan ang talaksang aldaba %s"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Internal error, hindi mahanap ang miyembrong %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa "
+"nfs"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - Bigo ang pagreserba ng memory"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "hindi makuha ang aldaba %s"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "Unable to open %s"
-msgstr "Hindi mabuksan %s"
+msgid "Waited for %s but it wasn't there"
+msgstr "Naghintay, para sa %s ngunit wala nito doon"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Maling anyo ng override %s linya %lu #1"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Nakatanggap ang sub-process %s ng segmentation fault."
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/fileutl.cc:390
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Maling anyo ng override %s linya %lu #2"
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Naghudyat ang sub-process %s ng error code (%u)"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Maling anyo ng override %s linya %lu #3"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Ang sub-process %s ay lumabas ng di inaasahan"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Bigo ang pagbasa ng talaksang override %s"
+msgid "Could not open file %s"
+msgstr "Hindi mabuksan ang talaksang %s"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Hindi kilalang algorithmong compression '%s'"
+msgid "read, still have %lu to read but none left"
+msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/fileutl.cc:522
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Kailangan ng compression set ang compressed output %s"
+msgid "write, still have %lu to write but couldn't"
+msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Bigo ang paglikha ng FILE*"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Problema sa pagsara ng talaksan"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Bigo ang pag-fork"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Problema sa pag-unlink ng talaksan"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Anak para sa pag-Compress"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Problema sa pag-sync ng talaksan"
+
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Walang laman ang cache ng pakete"
+
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Sira ang talaksan ng cache ng pakete"
+
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Error na internal, bigo ang paglikha ng %s"
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Bigo ang paglikha ng subprocess IPC"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Bigo ang pag-exec ng taga-compress"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Dependensiya"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "taga-decompress"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "PreDepends"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Bigo ang IO sa subprocess/talaksan"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Mungkahi"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Bigo ang pagbasa habang tinutuos ang MD5"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Rekomendado"
-#: ftparchive/multicompress.cc:471
-#, c-format
-msgid "Problem unlinking %s"
-msgstr "Problema sa pag-unlink ng %s"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Tunggali"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "O"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Pumapalit"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
-#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Error sa pag-compile ng regex - %s"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Linalaos"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:328
-#, c-format
-msgid "but %s is installed"
-msgstr "ngunit ang %s ay nakaluklok"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "importante"
-#: cmdline/apt-get.cc:330
-#, c-format
-msgid "but %s is to be installed"
-msgstr "ngunit ang %s ay iluluklok"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "kailangan"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "ngunit hindi ito maaaring iluklok"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "standard"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "ngunit ito ay birtwal na pakete"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "optional"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "ngunit ito ay hindi nakaluklok"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "extra"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "ngunit ito ay hindi iluluklok"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Ginagawa ang puno ng mga dependensiya"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " o"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Bersyong Kandidato"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Pagbuo ng Dependensiya"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Pinagsasama ang magagamit na impormasyon"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Bigo ang pagbukas ng %s"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Ang susunod na mga pakete ay iu-upgrade:"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Bigo sa pagsulat ng talaksang %s"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Hindi ma-parse ang talaksang pakete %s (1)"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Hindi ma-parse ang talaksang pakete %s (2)"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (dahil sa %s) "
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)"
-#: cmdline/apt-get.cc:547
-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-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)"
-#: cmdline/apt-get.cc:578
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu na nai-upgrade, %lu na bagong luklok, "
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)"
-#: cmdline/apt-get.cc:582
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu iniluklok muli, "
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)"
-#: cmdline/apt-get.cc:584
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu nai-downgrade, "
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<"
-#: cmdline/apt-get.cc:586
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n"
+msgid "Opening %s"
+msgstr "Binubuksan %s"
-#: cmdline/apt-get.cc:590
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, 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
-msgid "Correcting dependencies..."
-msgstr "Inaayos ang mga dependensiya..."
-
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " ay bigo."
-
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Hindi maayos ang mga dependensiya"
-
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Hindi mai-minimize ang upgrade set"
-
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Tapos"
+msgid "Line %u too long in source list %s."
+msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s."
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Maaari ninyong patakbuhin ang `apt-get -f install' upang ayusin ito."
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f."
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr ""
-"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n"
-
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? "
-
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko"
+"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang "
+"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends "
+"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-"
+"activate ang APT::Force-LoopBreak na option."
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "May mga problema at -y ay ginamit na walang --force-yes"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Hindi suportado ang uri ng talaksang index na '%s'"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!"
+"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo "
+"para dito."
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove."
-
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod"
-
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Hindi maaldaba ang directory ng download"
+"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot "
+"ito ng mga paketeng naka-hold."
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
msgstr ""
-"Nakapagtataka.. Hindi magkatugma ang laki, mag-email sa apt@packages.debian."
-"org"
+"Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold."
-#: cmdline/apt-get.cc:836
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n"
+msgid "Lists directory %spartial is missing."
+msgstr "Nawawala ang directory ng talaan %spartial."
-#: cmdline/apt-get.cc:839
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Kailangang kumuha ng %sB ng arkibo.\n"
+msgid "Archive directory %spartial is missing."
+msgstr "Nawawala ang directory ng arkibo %spartial."
-#: cmdline/apt-get.cc:844
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr ""
-"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n"
+msgid "Retrieving file %li of %li"
+msgstr "Kinukuha ang talaksang %li ng %li"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Hindi matantsa ang libreng puwang sa %s"
+msgid "The method driver %s could not be found."
+msgstr "Ang driver ng paraang %s ay hindi mahanap."
-#: cmdline/apt-get.cc:864
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Kulang kayo ng libreng puwang sa %s."
-
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial."
-
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Oo, gawin ang sinasabi ko!"
+msgid "Method %s did not start correctly"
+msgstr "Hindi umandar ng tama ang paraang %s"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n"
-"Upang magpatuloy, ibigay ang pariralang '%s'\n"
-" ?] "
+"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Abort."
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "Hindi suportado ang sistema ng paketeng '%s'"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Nais niyo bang magpatuloy [O/h]? "
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete "
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Bigo sa pagkuha ng %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "May mga talaksang hindi nakuha"
+msgid "Unable to stat %s."
+msgstr "Hindi ma-stat ang %s"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
msgstr ""
-"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o "
-"subukang may --fix-missing?"
-
-#: cmdline/apt-get.cc:1005
-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:1010
-msgid "Unable to correct missing packages."
-msgstr "Hindi maayos ang mga kulang na pakete."
-
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Ina-abort ang pag-instol."
-
-#: cmdline/apt-get.cc:1045
-#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Paunawa, pinili ang %s imbes na %s\n"
+"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado."
-#: cmdline/apt-get.cc:1055
-#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
msgstr ""
-"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n"
+"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang "
+"ito"
-#: cmdline/apt-get.cc:1073
-#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n"
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/policy.cc:289
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Ang paketeng %s ay paketeng birtwal na bigay ng:\n"
+msgid "Did not understand pin type %s"
+msgstr "Hindi naintindihan ang uri ng pin %s"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Nakaluklok]"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Walang prioridad (o sero) na nakatakda para sa pin"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Dapat kayong mamili ng isa na iluluklok."
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Hindi akma ang versioning system ng cache"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/pkgcachegen.cc:115
#, 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:1125
-msgid "However the following packages replace it:"
-msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "May naganap na error habang prinoseso ang %s (NewPackage)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)"
+
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s ay pinakabagong bersyon na.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "Release '%s' para sa '%s' ay hindi nahanap"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Ang napiling bersyon %s (%s) para sa %s\n"
-
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Hindi maaldaba ang directory ng talaan"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
msgstr ""
-"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang "
-"mga luma na lamang."
+"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "May naganap na error habang prinoseso ang %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)"
+
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
msgstr ""
-"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:"
+"Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya."
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Error na internal, may nasira ang problem resolver"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Kinukuha ang Talaksang Provides"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Hindi mahanap ang paketeng %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "IO Error sa pag-imbak ng source cache"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Hindi mahanap ang paketeng %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1683
-#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Paunawa, pinili ang %s para sa regex '%s'\n"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Di tugmang MD5Sum"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "ngunit ang %s ay iluluklok"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Di tugmang MD5Sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"Maaaring patakbuhin niyo ang `apt-get -f install' upang ayusin ang mga ito:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Walang public key na magamit para sa sumusunod na key ID:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang "
-"mga pakete (o magtakda ng solusyon)."
+"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
+"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
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."
+"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin "
+"niyong ayusin ng de kamay ang paketeng ito."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Dahil ang hiniling niyo ay mag-isang operasyon, malamang ay ang pakete ay\n"
-"hindi talaga mailuklok at kailangang magpadala ng bug report tungkol sa\n"
-"pakete na ito."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Sirang mga pakete"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Mga paketeng mungkahi:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Mga paketeng rekomendado:"
+"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa "
+"paketeng %s."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Sinusuri ang pag-upgrade... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Di tugmang laki"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Tapos"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Block ng nagbebenta %s ay walang fingerprint"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Error na internal, may nasira ang problem resolver"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Ginagamit ang %s bilang mount point ng CD-ROM\n"
+"Sinasalang ang CD-ROM\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Kinikilala..."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Hindi mahanap ang paketeng source para sa %s"
+msgid "Stored label: %s\n"
+msgstr "Naka-imbak na Label: %s \n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Linaktawan ang nakuha na na talaksan '%s'\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Ina-unmount ang CD-ROM..."
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Kulang kayo ng libreng puwang sa %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Ina-unmount ang CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Kailangang kumuha ng %sB ng arkibong source.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Hinihintay ang disc...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Kunin ang Source %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Sinasalang ang CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Bigo sa pagkuha ng ilang mga arkibo."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Sinisiyasat ang Disc para sa talaksang index...\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
+"signature\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Bigo ang utos ng pagbuklat '%s'.\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Naka-imbak na Label: %s \n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Hindi yan tanggap na pangalan, subukan muli.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Utos na build '%s' ay bigo.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Ang Disc na ito ay nagngangalang: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Kinokopya ang Listahan ng mga Pakete"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Bigo ang prosesong anak"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Sinusulat ang bagong listahan ng pagkukunan\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Hindi makuha ang impormasyong build-dependency para sa %s"
+msgid "Wrote %i records.\n"
+msgstr "Nagsulat ng %i na record.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "Walang build depends ang %s.\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr ""
-"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi "
-"mahanap"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon "
-"ng paketeng %s na tumutugon sa kinakailangang bersyon"
+"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang "
+"mismatch\n"
-#: cmdline/apt-get.cc:2518
-#, 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."
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Nawawala ang directory ng talaan %spartial."
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s"
+msgid "Preparing %s"
+msgstr "Hinahanda ang %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Hindi mabuo ang build-dependencies para sa %s."
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Bigo sa pagproseso ng build dependencies"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Suportadong mga Module:"
+msgid "Unpacking %s"
+msgstr "Binubuklat ang %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Pag-gamit: apt-get [mga option] utos\n"
-" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n"
-" apt-get [mga option] source pkt1 [pkt2 ...]\n"
-"\n"
-"Ang apt-get ay payak na command line interface para sa pagkuha at\n"
-"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n"
-"at install.\n"
-"\n"
-"Mga utos:\n"
-" update - Kunin ang bagong listahan ng mga pakete\n"
-" upgrade - Gumawa ng upgrade\n"
-" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n"
-" remove - Mag-tanggal ng mga pakete\n"
-" source - Kumuha ng arkibong source\n"
-" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n"
-" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n"
-" dselect-upgrade - Sundan ang mga pinili sa dselect\n"
-" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n"
-" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n"
-" check - Tiyakin na walang mga sirang dependensiya\n"
-"\n"
-"Mga option:\n"
-" -h Itong tulong na ito.\n"
-" -q Output na maaaring itala - walang indikator ng progreso\n"
-" -qq Walang output maliban sa mga error\n"
-" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n"
-" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n"
-" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n"
-" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n"
-" -b Ibuo ang paketeng source matapos kunin ito\n"
-" -V Ipakita ng buo ang bilang ng bersyon\n"
-" -c=? Basahin itong talaksang pagkaayos\n"
-" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
-"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n"
-"para sa karagdagang impormasyon at mga option.\n"
-" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Hinahanda ang %s upang isaayos"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Tumama "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Isasaayos ang %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Kunin: "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Error sa pagproseso ng directory %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "DiPansin "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Iniluklok ang %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Err "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Naghahanda para sa pagtanggal ng %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Nakakuha ng %sB ng %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "Tinatanggal ang %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [May ginagawa]"
+msgid "Removed %s"
+msgstr "Tinanggal ang %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "Naghahanda upang tanggalin ng lubusan ang %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Di kilalang record ng pakete!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Natanggal ng lubusan ang %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Pag-gamit: apt-sortpkgs [mga option] talaksan1 [talaksan2 ...]\n"
-"\n"
-"Ang apt-sortpkgs ay payak na kagamitan upang makapag-sort ng talaksang "
-"pakete.\n"
-"Ang option -s ay ginagamit upang ipaalam kung anong klaseng talaksan ito.\n"
-"\n"
-"Mga option:\n"
-" -h Itong tulong na ito\n"
-" -s Gamitin ang pag-sort ng talaksang source\n"
-" -c=? Basahin ang talaksang pagkaayos na ito\n"
-" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Maling nakatakda na default!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Hindi mai-patch ang talaksan"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Pindutin ang enter upang magpatuloy."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Nagsara ng maaga ang koneksyon"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Labis ang haba ng linyang %d (max %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
-#: dselect/install:102
-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"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin "
-"muli ang [I]luklok/Instol."
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Naka-imbak na Label: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Pinagsasama ang magagamit na impormasyon"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na "
+#~ "signature\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: apt-all\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-07-29 15:57+0300\n"
"Last-Translator: Artem Bondarenko <artem.brz@gmail.com>\n"
"Language-Team: Українська <uk@li.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.1\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Неможливо прочитати базу %s з cdrom'у"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Будь-ласка використовуйте apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get "
-"update не може бути використаним для додання нових CD"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "Невірний CD-ROM"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Пакунок %s версії %s має незадоволену залежність:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Неможливо демонтувати CDROM в %s, можливо він все ще використовується."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Диск не знайдено."
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Файл не знайдено"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Не вдалося одержати атрибути"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Не вдалося встановити час модифікації"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Невірне посилання, локальні посилання повинні починатися з //"
+msgid "Unable to locate package %s"
+msgstr "Не можу знайти пакунок %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Логінюсь в"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Всього імен пакунків : "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Неможливо визначити назву вузла"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Нормальних пакунків: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Неможливо визначити локальну назву"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Чисто віртуальних пакунків: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Сервер розірвав з'єднання і мовив: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Окремих віртуальних пакунків: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER невдало, сервер мовив: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Змішаних віртуальних пакунків: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS невдало, сервер мовив: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Пропущено: "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin "
-"пустий."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Всього унікальних версій: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Ð\9aоманда '%s'Ñ\81кÑ\80ипÑ\82Ñ\83 логÑ\96на не вдалаÑ\81Ñ\8f, Ñ\81еÑ\80веÑ\80 мовив: %s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "Ð\92Ñ\81Ñ\8cого Ñ\83нÑ\96калÑ\8cниÑ\85 веÑ\80Ñ\81Ñ\96й: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE невдало, сервер мовив: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Всього залежностей: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "ЧаÑ\81 з'Ñ\94днаннÑ\8f виÑ\87еÑ\80павÑ\81Ñ\8f"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Ð\92Ñ\81Ñ\8cого вÑ\96дноÑ\81ин Ð\92еÑ\80Ñ\81Ñ\96Ñ\8f/Файл: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Сервер закрив з'єднання"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "Всього відносин Версія/Файл: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Ð\9fомилка Ñ\87иÑ\82аннÑ\8f"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Ð\92Ñ\81Ñ\8cого вÑ\96дноÑ\81ин Provides: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Ð\92Ñ\96дповÑ\96дÑ\8c пеÑ\80еповнила бÑ\83Ñ\84еÑ\80."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Ð\92Ñ\81Ñ\8cого Ñ\80озгоÑ\80нÑ\83Ñ\82иÑ\85 Ñ\80Ñ\8fдкÑ\96в: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "СпоÑ\82воÑ\80ений пÑ\80оÑ\82окол"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Ð\92Ñ\81Ñ\8cого Ñ\96нÑ\84оÑ\80маÑ\86Ñ\96Ñ\97 пÑ\80о залежноÑ\81Ñ\82Ñ\96: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Помилка запису"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Порожнього місця в кеші: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Ð\9dеможливо Ñ\81Ñ\82воÑ\80иÑ\82и Ñ\81океÑ\82 (socket)"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Ð\97агалÑ\8cний пÑ\80оÑ\81Ñ\82Ñ\96Ñ\80 полÑ\96Ñ\87ений длÑ\8f: "
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Перелік пакунків %s розсинхронізований."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Ð\9dевдаÑ\87а"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Ð\92и повиннÑ\96 задаÑ\82и Ñ\80Ñ\96вно один Ñ\88аблон"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Неможливо під'єднати пасивний сокет (passive socket)."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Не знайдено жодного пакунка"
-#: methods/ftp.cc:722
-#, fuzzy
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "Виклик getaddrinfo не зміг отримати сокет"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Переліки пакунків:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Ð\9dеможливо пÑ\80иÑ\94днаÑ\82иÑ\81Ñ\8f до Ñ\81океÑ\82а"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "Ð\9aеÑ\88 не Ñ\81инÑ\85Ñ\80онÑ\96зований, неможливо знайÑ\82и поÑ\81иланнÑ\8f на пеÑ\80елÑ\96к пакÑ\83нкÑ\96в"
-#: methods/ftp.cc:740
-#, fuzzy
-msgid "Could not listen on the socket"
-msgstr "Не можливо утримувати з'єднання на сокеті"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Не вдалося визначити назву сокета"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Зафіксовані пакунки:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Неможливо відіслати команду PORT"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(не знайдено)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Невідоме адресове сімейство %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Встановлено: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT невдало, сервер мовив: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(відсутній)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Час з'єднання з сокетом даних вичерпався"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Кандидат: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Неможливо прийняти з'єднання"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Фіксатор(pin) пакунка: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Проблема хешування файла"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Таблиця версій:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Неможливо завантажити файл, сервер мовив: '%s'"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Час з'єднання з сокетом (socket) з даними вичерпався"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s для %s %s скомпільовано %s %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Передача даних обірвалася, сервер мовив '%s'"
-
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Черга"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Неможливо викликати "
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Використання: apt-cache [options] command\n"
+" або: apt-cache [options] add file1 [file1 ...]\n"
+" або: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" або: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache - низькорівневий інструмент, що використається для керування\n"
+"двійковими кеш-файлами APT'а, а також для добування інформації з них\n"
+"Команди:\n"
+" add - додати файл пакунка в кеш джерел\n"
+" gencaches - побудувати обидва кеша пакунків - бінарних і з вихідними "
+"текстами\n"
+" showpkg - загальна інформація про конкретний пакунок\n"
+" stats - основна статистика\n"
+" dump - показати весь файл у стислій формі\n"
+" dumpavail - видати на stdout список доступних пакунків\n"
+" unmet - показати незадоволені залежності\n"
+" search - знайти пакунки, назва яких задовольняє регулярний вираз\n"
+" show - показати інформацію про пакунок в зрозумілій формі\n"
+" depends - показати інформацію про залежності пакунка построково\n"
+" rdepends - показати інформацію про зворотні залежності пакунка\n"
+" pkgnames - показати імена всіх пакунків\n"
+" dotty - генерувати граф залежностей пакунків у форматі GraphVis\n"
+" xvcg - генерувати граф залежностей пакунків у форматі xvcg\n"
+" policy - показати поточну політику вибору пакунків\n"
+"\n"
+"Опції:\n"
+" -h Цей текст.\n"
+" -p=? Кеш пакунків.\n"
+" -s=? Кеш джерел.\n"
+" -q Не показувати індикатор прогресу.\n"
+" -i Показувати тільки важливі залежності для команди unmet.\n"
+" -c=? Читати зазначений файл конфігурації.\n"
+" -o=? Встановити довільну опцію конфігурації, наприклад, -o dir::cache=/"
+"tmp\n"
+"Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n"
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "З'єднання з %s (%s)"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Задайте назву для цього диска, наприклад 'Debian 2.1r1 Disk 1'"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Вставте диск у пристрій і натисніть Ввід"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "Повторіть цей процес для інших наявних CD."
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Неможливо ініціалізувати з'єднання з %s:%s (%s)."
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Непарні аргументи"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Використання: apt-config [options] command\n"
+"\n"
+"apt-config - простий інструмент для читання конфігураційного файлу APT\n"
+"\n"
+"Команди:\n"
+" shell - режим shell\n"
+" dump - показати конфігурацію\n"
+"\n"
+"Опції:\n"
+" -h Цей текст.\n"
+" -с=? Читати зазначений конфігураційний файл.\n"
+" -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
-#: methods/connect.cc:108
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Не можливо під'єднатися до %s:%s (%s)."
+msgid "%s not a valid DEB package."
+msgstr "%s не є правильним DEB-пакунком."
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "З'єднання з %s"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Використання: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates витягує з пакунків Debian конфігураційні скрипти\n"
+"і файли-шаблони\n"
+"\n"
+"Опції:\n"
+" -h Цей текст\n"
+" -t Встановити теку для тимчасових файлів\n"
+" -c=? Читати зазначений конфігураційний файл\n"
+" -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n"
-#: methods/connect.cc:167
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Не можу знайти IP адрес для %s"
+msgid "Unable to write to %s"
+msgstr "Неможливо записати в %s"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Тимчасова помилка при отриманні IP адреси '%s'"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Неможливо визначити версію debconf. Він встановлений?"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i)"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Список розширень, припустимих для пакунків, занадто довгий"
-#: methods/connect.cc:223
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Не можливо під'єднатися до %s %s:"
-
-#: methods/gpgv.cc:65
-#, fuzzy, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Неможливо отримати доступ до keyring: '%s'"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr ""
-"E: Перелік аргументів з Acquire::gpgv::Options занадто довгий. Відміна."
+msgid "Error processing directory %s"
+msgstr "Помилка обробки течи %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
msgstr ""
-"Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка: Ð\92Ñ\96Ñ\80ний пÑ\96дпиÑ\81 (signature), але не можливо визнаÑ\87иÑ\82и його "
-"вÑ\96дбиÑ\82ок?!"
+"СпиÑ\81ок Ñ\80озÑ\88иÑ\80енÑ\8c, пÑ\80ипÑ\83Ñ\81Ñ\82имиÑ\85 длÑ\8f пакÑ\83нкÑ\96в з виÑ\85Ñ\96дними Ñ\82екÑ\81Ñ\82ами, занадÑ\82о "
+"довгий"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Ð\97найдено Ñ\8fк мÑ\96нÑ\96мÑ\83м один невÑ\96Ñ\80ний пÑ\96дпиÑ\81."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Ð\9fомилка запиÑ\81Ñ\83 заголовка в повний пеÑ\80елÑ\96к вмÑ\96Ñ\81Ñ\82Ñ\83 пакÑ\83нкÑ\96в (Contents)"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "Неможливо виконати '%s' для перевірки підпису, gnupg встановлено?"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Невідома помилка виконання gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Слідуючі підписи були невірними:\n"
+msgid "Error processing contents %s"
+msgstr "помилка обробки повного переліку вмісту пакунків (Contents) %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Слідуючі підписи не можуть бути перевірені, тому що, публічний ключ "
-"відсутній:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Не вдалося одержати атрибути %s"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Неможливо відкрити канал (pipe) для %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Помилка читання з процесу %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Використання: apt-ftparchive [параметри] команда\n"
+"Команди: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive генерує індексні файли архівів Debian. Він підтримує\n"
+"безліч стилів генерації: від повністю автоматичного до функціональної "
+"заміни\n"
+"програм dpkg-scanpackages і dpkg-scansources\n"
+"\n"
+"apt-ftparchive генерує файли Package (переліки пакунків) для дерева\n"
+"тек, що містять файли .deb. Файл Package містить у собі керуючі\n"
+"поля кожного пакунка, а також хеш MD5 і розмір файлу. Значення керуючих\n"
+"полів \"пріоритет\" (Priority) і \"секція\" (Section) можуть бути змінені з\n"
+"допомогою файлу override.\n"
+"\n"
+"Крім того, apt-ftparchive може генерувати файли Sources з дерева\n"
+"тек, що містять файли .dsc. Для вказівки файлу override у цьому \n"
+"режимі можна використати параметр --source-override.\n"
+"\n"
+"Команди 'packages' і 'sources' треба виконувати, перебуваючи в кореневій "
+"теці\n"
+"дерева, що ви хочете обробити. BinaryPath повинен вказувати на місце,\n"
+"з якого починається рекурсивний обхід, а файл перепризначень (override)\n"
+"повинен містити запис про перепризначення керуючих полів. Якщо був "
+"зазначений\n"
+"Pathprefix, то його значення додається до керуючих полів, що містять\n"
+"імена файлів. Приклад використання для архіву Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Параметри:\n"
+" -h Цей текст\n"
+" --md5 Керування генерацією MD5-хешів\n"
+" -s=? Вказати файл перепризначень (override) для пакунків з вихідними "
+"текстами\n"
+" -q Не виводити повідомлення в процесі роботи\n"
+" -d=? Вказати кешуючу базу даних (не обов'язково)\n"
+" --no-delink Включити режим налагодження процесу видалення файлів\n"
+" --contents Керування генерацією повного переліку вмісту пакунків\n"
+" (файлу Contents)\n"
+" -c=? Використати зазначений конфігураційний файл\n"
+" -o=? Вказати довільний параметр конфігурації"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Ð\9eÑ\87Ñ\96кÑ\83ваннÑ\8f на заголовки"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Ð\97бÑ\96гÑ\96в не виÑ\8fвлено"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Отримано одну заголовкову лінію понад %u символів"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Невірна лінія заголовку"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "У групі пакунків '%s' відсутні деякі файли"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "HTTP сервер відіслав невірний заголовок 'reply'"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "БД була пошкоджена, файл перейменований в %s.old"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB застаріла, намагаюсь оновити %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"Формати DB не є правильним. Якщо ви оновилися зі старої версії apt, будь-"
+"ласка видаліть і наново створіть базу."
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Цей HTTP сервер має поламану підтримку 'range'"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Не вдалося відкрити DB файл %s: %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Невідомий формат дати"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Не вдалося одержати атрибути %s"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Вибір не вдався"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "В архіві немає поля control"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "ЧаÑ\81 оÑ\87Ñ\96кÑ\83ваннÑ\8f з'Ñ\94днаннÑ\8f вийÑ\88ов"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Ð\9dеможливо одеÑ\80жаÑ\82и кÑ\83Ñ\80Ñ\81оÑ\80"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Помилка запису в вихідний файл"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Не вдалося прочитати теку %s\n"
-#: methods/http.cc:833
-#, fuzzy
-msgid "Error writing to file"
-msgstr "Помилка запису в файл"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Неможливо прочитати атрибути %s\n"
-#: methods/http.cc:861
-#, fuzzy
-msgid "Error writing to the file"
-msgstr "Помилка запису в файл"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Помилка читання з сервера. Віддалена сторона закрила з'єднання"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Помилка читання з сервера"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: Помилки відносяться до файлу"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Погана заголовкова інформація"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "Не вдалося піти по посиланню %s"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Ð\97'Ñ\94днаннÑ\8f не вдалоÑ\81Ñ\8f"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f зÑ\80обиÑ\82и обÑ\85Ñ\96д деÑ\80ева"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Внутрішня помилка"
+#: ftparchive/writer.cc:195
+#, c-format
+msgid "Failed to open %s"
+msgstr "Не вдалося відкрити %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Неможливо відобразити в пам'яті пустий файл"
+#: ftparchive/writer.cc:254
+#, c-format
+msgid " DeLink %s [%s]\n"
+msgstr "DeLink %s [%s]\n"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Неможливо відобразити в пам'яті %lu байт"
+msgid "Failed to readlink %s"
+msgstr "Не вдалося прочитати посилання %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Selection %s not found"
-msgstr "Ð\92ибÑ\96Ñ\80 %s не знайдено"
+msgid "Failed to unlink %s"
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f видалиÑ\82и %s"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Нерозпізнаваний тип абревіатури: '%c'"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Не вдалося створити посилання %s на %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Ð\92Ñ\96дкÑ\80иваÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f конÑ\84Ñ\96гÑ\83Ñ\80аÑ\86Ñ\96йний Ñ\84айл %s"
+msgid " DeLink limit of %sB hit.\n"
+msgstr "Ð\9fеÑ\80евиÑ\89ено лÑ\96мÑ\96Ñ\82 в %s в DeLink.\n"
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Лінія %d занадто довга (максимум %d)"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "В архіві немає поля package"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "Синтаксова помилка %s:%u: Блок починається без назви."
+msgid " %s has no override entry\n"
+msgstr " Відсутній запис про перепризначення для %s\n"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Синтаксова помилка %s:%u: спотворений тег"
+msgid " %s maintainer is %s not %s\n"
+msgstr " пакунок %s супроводжує %s, а не %s\n"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Синтаксова помилка %s:%u: зайві символи після величини"
+msgid " %s has no source override entry\n"
+msgstr ""
-#: apt-pkg/contrib/configuration.cc:682
-#, fuzzy, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
+#: ftparchive/writer.cc:624
+#, c-format
+msgid " %s has no binary override entry either\n"
msgstr ""
-"Синтаксова помилка %s:%u: Директиви можуть бути виконані тільки на "
-"найвищому рівні"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "СинÑ\82акÑ\81ова помилка %s:%u: Ð\97абагаÑ\82о вмонÑ\82ованиÑ\85 вклÑ\8eÑ\87енÑ\8c"
+msgid "Internal error, could not locate member %s"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, не можÑ\83 знайÑ\82и Ñ\81кладовÑ\83 Ñ\87аÑ\81Ñ\82инÑ\83 %s"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
-#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Синтаксова помилка %s:%u: Включена звідси"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - не вдалося виділити пам'ять"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "СинÑ\82акÑ\81ова помилка %s:%u: Ð\94иÑ\80екÑ\82ива '%s' не пÑ\96дÑ\82Ñ\80имÑ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f"
+msgid "Unable to open %s"
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f вÑ\96дкÑ\80иÑ\82и %s"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "СинÑ\82акÑ\81ова помилка %s:%u: зайвÑ\96 Ñ\81имволи в кÑ\96нÑ\86Ñ\96 Ñ\84айла"
+msgid "Malformed override %s line %lu #1"
+msgstr "СпоÑ\82воÑ\80ений запиÑ\81 пÑ\80о пеÑ\80епÑ\80изнаÑ\87еннÑ\8f (override) %s на Ñ\80Ñ\8fдкÑ\83 %lu #1"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Unable to read %s"
-msgstr "Ð\9dеможливо пÑ\80оÑ\87иÑ\82аÑ\82и %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "СпоÑ\82воÑ\80ений запиÑ\81 пÑ\80о пеÑ\80епÑ\80изнаÑ\87еннÑ\8f (override) %s на Ñ\80Ñ\8fдкÑ\83 %lu #2"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Помилка!"
+msgid "Malformed override %s line %lu #3"
+msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #3"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Виконано"
+msgid "Failed to read the override file %s"
+msgstr "Не вдалося прочитати файл перепризначень (override)%s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Ð\9dевÑ\96домий паÑ\80амеÑ\82Ñ\80 '%c' [з %s] командного Ñ\80Ñ\8fдка."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Ð\9dевÑ\96домий алгоÑ\80иÑ\82м Ñ\81Ñ\82иÑ\81неннÑ\8f '%s'"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Ð\9dезÑ\80озÑ\83мÑ\96лий паÑ\80амеÑ\82Ñ\80 %s командного Ñ\80Ñ\8fдка"
+msgid "Compressed output %s needs a compression set"
+msgstr "Ð\94лÑ\8f оÑ\82Ñ\80иманнÑ\8f Ñ\81Ñ\82иÑ\81нÑ\83Ñ\82ого виводÑ\83 %s необÑ\85Ñ\96дно ввÑ\96мкнÑ\83Ñ\82и пакÑ\83ваннÑ\8f"
-#: apt-pkg/contrib/cmndline.cc:124
-#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Не логічний параметр %s командного рядка"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Не вдалося створити IPC-канал для породженого процесу"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
-#, c-format
-msgid "Option %s requires an argument."
-msgstr "Параметр %s потребує аргумента."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Не вдалося створити FILE*"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
-#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr ""
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Не вдалося виконати породжений процес"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Параметр %s потребує integer аргумент, але не '%s'"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Процес-нащадок, що виконує пакування"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Option '%s' is too long"
-msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80 '%s' занадÑ\82о довгий"
+msgid "Internal error, failed to create %s"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, не вдалоÑ\81Ñ\8f Ñ\81Ñ\82воÑ\80иÑ\82и %s"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "Незрозумілий вираз %s , спробуйте true чи false."
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "Не вдалося створити IPC з породженим процесом"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Невірна дія %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Не вдалося виконати компресор "
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Неможливо прочитати атрибути точки монтування %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "декомпресор"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "Неможливо зробити зміни у %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "Помилка уведення/виводу в підпроцес/файл"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Ð\9dе вдалоÑ\81Ñ\8f пÑ\80оÑ\87иÑ\82аÑ\82и аÑ\82Ñ\80ибÑ\83Ñ\82и cdrom"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Ð\9fомилка Ñ\87иÑ\82аннÑ\8f пÑ\96д Ñ\87аÑ\81 обÑ\87иÑ\81леннÑ\8f MD5"
-#: apt-pkg/contrib/fileutl.cc:82
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr ""
-"Блокування не використовується, так як файл блокування %s доступний тільки "
-"для читання"
+msgid "Problem unlinking %s"
+msgstr "Не вдалося видалити %s"
-#: apt-pkg/contrib/fileutl.cc:87
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Could not open lock file %s"
-msgstr "Ð\9dе можливо вÑ\96дкÑ\80иÑ\82и lock Ñ\84айл %s"
+msgid "Failed to rename %s to %s"
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f пеÑ\80ейменÑ\83ваÑ\82и %s в %s"
-#: apt-pkg/contrib/fileutl.cc:105
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Т"
+
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr ""
-"Блокування не використовується, так як файл блокування %s знаходиться на "
-"файловій системі nfs"
+msgid "Regex compilation error - %s"
+msgstr "Помилка компіляції регулярного виразу - %s"
-#: apt-pkg/contrib/fileutl.cc:109
-#, fuzzy, c-format
-msgid "Could not get lock %s"
-msgstr "Не можливо отримати lock %s"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Пакунки, що мають незадоволені залежності:"
-#: apt-pkg/contrib/fileutl.cc:377
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Ð\9eÑ\87Ñ\96кÑ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f на %s але його Ñ\82Ñ\83Ñ\82 немаÑ\94"
+msgid "but %s is installed"
+msgstr "але %s вже вÑ\81Ñ\82ановлений"
-#: apt-pkg/contrib/fileutl.cc:387
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Ð\9fÑ\96дпÑ\80оÑ\86еÑ\81 %s оÑ\82Ñ\80имав segmentation fault."
+msgid "but %s is to be installed"
+msgstr "але %s бÑ\83де вÑ\81Ñ\82ановлений"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Підпроцес %s повернув код помилки (%u)"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "але він не може бути встановлений"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Підпроцес %s раптово завершився"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "але це віртуальний пакунок"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Не можливо відкрити файл %s"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "але він не встановлений"
-#: apt-pkg/contrib/fileutl.cc:492
-#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr ""
-"помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "але він не буде встановлений"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "помилка при записі, мали прочитати ще %lu байт, але не змогли"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " чи"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Ð\9fÑ\80облема з закÑ\80иÑ\82Ñ\82Ñ\8fм Ñ\84айла"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Ð\9dÐ\9eÐ\92Ð\86 пакÑ\83нки, Ñ\8fкÑ\96 бÑ\83дÑ\83Ñ\82Ñ\8c вÑ\81Ñ\82ановленÑ\96:"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Проблема з роз'єднанням файла"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Пакунки, які будуть ВИДАЛЕНІ:"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Проблема з синхронізацією файла"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Пакунки, які будуть залишені в незмінному вигляді:"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Ð\9aеÑ\88 пакÑ\83нкÑ\96в пÑ\83Ñ\81Ñ\82ий"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Ð\9fакÑ\83нки, Ñ\8fкÑ\96 бÑ\83дÑ\83Ñ\82Ñ\8c Ð\9eÐ\9dÐ\9eÐ\92Ð\9bÐ\95Ð\9dÐ\86:"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Файл кеÑ\88Ñ\83 пакÑ\83нкÑ\96в поÑ\88коджений"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Ð\9fакÑ\83нки, бÑ\83дÑ\83Ñ\82Ñ\8c замÑ\96ненÑ\96 на бÑ\96лÑ\8cÑ\88 СТÐ\90Ð Ð\86 веÑ\80Ñ\81Ñ\96Ñ\97:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Файл кеÑ\88Ñ\83 пакÑ\83нкÑ\96в маÑ\94 неÑ\81Ñ\83мÑ\96Ñ\81нÑ\83 веÑ\80Ñ\81Ñ\96Ñ\8e"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Ð\9fакÑ\83нки, Ñ\8fкÑ\96 повиннÑ\96 бÑ\83ли б залиÑ\88иÑ\82иÑ\81Ñ\8f без змÑ\96н, але бÑ\83дÑ\83Ñ\82Ñ\8c замÑ\96ненÑ\96:"
-#: apt-pkg/pkgcache.cc:148
+#: cmdline/apt-get.cc:542
#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "APT не підтримує систему призначення версій '%s'"
+msgid "%s (due to %s) "
+msgstr "%s (внаслідок %s) "
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Кеш пакунків був побудований для іншої архітектури"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"УВАГА: Ці істотно важливі пакунки будуть вилучені.\n"
+"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Залежності (Depends)"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "оновлено %lu, встановлено %lu нових пакунків, "
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Пре-Залежності (PreDepends)"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr " %lu перевстановлено, "
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Пропонує (Suggests)"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu пакунків замінено на старі версії, "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Рекомендує"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "для видалення відмічено %lu пакунків, і %lu пакунків не оновлено.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Конфлікти"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "не встановлено до кінця чи видалено %lu пакунків.\n"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Заміняє (Replaces)"
-
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Застарілі (Obsoletes)"
-
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Виправлення залежностей..."
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "Важливі (Important)"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " невдача."
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "Ð\9dеобÑ\85Ñ\96днÑ\96 (Required)"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Ð\9dеможливо Ñ\81коÑ\80игÑ\83ваÑ\82и залежноÑ\81Ñ\82Ñ\96"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "СÑ\82андаÑ\80Ñ\82нÑ\96 (Standard)"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Ð\9dеможливо мÑ\96нÑ\96мÑ\96зÑ\83ваÑ\82и набÑ\96Ñ\80 оновленÑ\8c"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "Необов'язкові (Optional)"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Виконано"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "Додаткові (Extra)"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr ""
+"Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f "
+"install'."
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Ð\9fобÑ\83дова деÑ\80ева залежноÑ\81Ñ\82ей"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "Ð\9dезадоволенÑ\96 залежноÑ\81Ñ\82Ñ\96. СпÑ\80обÑ\83йÑ\82е викоÑ\80иÑ\81Ñ\82аÑ\82и -f."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Ð\92еÑ\80Ñ\81Ñ\96Ñ\97 кандидаÑ\82Ñ\96в"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "УÐ\92Ð\90Ð\93Ð\90: Ð\9dаÑ\81Ñ\82Ñ\83пнÑ\96 пакÑ\83нки неможливо авÑ\82енÑ\82иÑ\84Ñ\96кÑ\83ваÑ\82и!"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Ґенерація залежностей"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Автентифікаційне попередження не прийнято до уваги.\n"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "Об'єднання інформації про доступні пакунки"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Встановити ці пакунки без перевірки [т/Н]? "
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Не вдалося відкрити %s"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Деякі пакунки неможливо автентифікувати"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Не вдалося записати файл %s"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Існують проблеми, а опція -y використана без --force-yes"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Неможливо обробити файл %s пакунку (1)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr ""
+"Внутрішня помилка, InstallPackages була викликана з непрацездатними "
+"пакунками!"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Неможливо обробити файл %s пакунку (2)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Пакунки необхідно видалити, але видалення заборонене."
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Спотворена лінія %lu у переліку джерел %s (проблема в URI)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Внутрішня помилка, Ordering не завершилася"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr ""
-"Спотворена лінія %lu у переліку джерел %s (проблема в назві дистрибутиву)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Неможливо заблокувати теку для завантаження"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "СпоÑ\82воÑ\80ена лÑ\96нÑ\96Ñ\8f %lu Ñ\83 пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s (обÑ\80обка URI)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Ð\9dеможливо пÑ\80оÑ\87иÑ\82аÑ\82и пеÑ\80елÑ\96к джеÑ\80ел."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "Спотворена лінія %lu у переліку джерел %s (absolute dist)"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "Дивно.. Розбіжність розмірів, напишіть на apt@packages.debian.org"
-#: apt-pkg/sourcelist.cc:108
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "СпоÑ\82воÑ\80ена лÑ\96нÑ\96Ñ\8f %lu Ñ\83 пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s (dist parse)"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Ð\9dеобÑ\85Ñ\96дно заванÑ\82ажиÑ\82и %sB/%sB аÑ\80Ñ\85Ñ\96вÑ\96в.\n"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Opening %s"
-msgstr "Ð\92Ñ\96дкÑ\80иÑ\82Ñ\82Ñ\8f %s"
+msgid "Need to get %sB of archives.\n"
+msgstr "Ð\9dеобÑ\85Ñ\96дно заванÑ\82ажиÑ\82и %sB аÑ\80Ñ\85Ñ\96вÑ\96в.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
-#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Ð\9bÑ\96нÑ\96Ñ\8f %u занадÑ\82о довга в пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s."
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Ð\9fÑ\96Ñ\81лÑ\8f Ñ\80озпакÑ\83ваннÑ\8f об'Ñ\94м зайнÑ\8fÑ\82ого диÑ\81кового пÑ\80оÑ\81Ñ\82оÑ\80Ñ\83 зÑ\80оÑ\81Ñ\82е на %sB.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Спотворена лінія %u у переліку джерел %s (тип)"
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr ""
+"Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Невідомий тип '%s' в лінії %u в переліку джерел %s"
+msgid "Couldn't determine free space in %s"
+msgstr "Не вдалося визначити кількість вільного місця в %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "СпоÑ\82воÑ\80ена лÑ\96нÑ\96Ñ\8f %u Ñ\83 пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s (vendor id)"
+msgid "You don't have enough free space in %s."
+msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82нÑ\8cо вÑ\96лÑ\8cного мÑ\96Ñ\81Ñ\86Ñ\8f в %s."
-#: apt-pkg/packagemanager.cc:399
-#, c-format
-msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
msgstr ""
-"Для виконання даного встановлення потрібне тимчасове видалення важливого "
-"пакету %s через конфлікти/петлеві пре-залежності (Pre-Depends loop). Це "
-"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-"
-"LoopBreak."
+"Запитане виконання тільки тривіальних операцій, але це не тривіальна "
+"операція."
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Тип '%s' індексного файлу не підтримується"
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Так, робити, як я скажу!"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Пакунок %s повинен бути перевстановленим, але я не можу знайти архіву для "
-"нього."
+"Те, що ви хочете зробити, може мати небажані наслідки.\n"
+"Щоб продовжити, введіть фразу: '%s'\n"
+" ?] "
-#: apt-pkg/algorithms.cc:1105
-msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr ""
-"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути "
-"пов'язано з зафіксованими пакунками."
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Перервано."
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Ð\9dеможливо Ñ\83Ñ\81Ñ\83нÑ\83Ñ\82и пÑ\80облеми, Ð\92и маÑ\94Ñ\82е поламанÑ\96 заÑ\84Ñ\96кÑ\81ованÑ\96 пакÑ\83нки."
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Ð\91ажаÑ\94Ñ\82е пÑ\80одовжиÑ\82и [Т/н]? "
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Lists тека %spartial відсутня."
+msgid "Failed to fetch %s %s\n"
+msgstr "Не вдалося завантажити %s %s\n"
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Архівна тека %spartial відсутня."
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Деякі файли не вдалося завантажити"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Завантажується файл %li з %li (%s залишилось)"
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено"
-#: apt-pkg/acquire.cc:829
-#, fuzzy, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Завантажується файл %li з %li"
+#: cmdline/apt-get.cc:1009
+msgid ""
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update "
+"або спробувати повторити запуск з ключем --fix-missing?"
-#: apt-pkg/acquire-worker.cc:110
-#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Драйвер для метода %s не знайдено."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "--fix-missing і зміна носія в даний момент не підтримується"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Неможливо виправити втрачені пакунки."
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Переривається встановлення."
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Ð\9cеÑ\82од %s не Ñ\81Ñ\82аÑ\80Ñ\82Ñ\83вав коÑ\80екÑ\82но"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Ð\9fомÑ\96Ñ\82Ñ\8cÑ\82е, замÑ\96Ñ\81Ñ\82Ñ\8c %2$s вибиÑ\80аÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f %1$s\n"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
msgstr ""
-"Будь-ласка, вставте диск з поміткою: '%s' в CD привід '%s' і натисніть Enter."
+"Пропускається %s - пакунок вже встановлений, і опція upgrade не "
+"встановлена.\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "Система пакування '%s' не підтримується"
-
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Неможливо визначити тип необхідної системи пакування "
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Пакунок %s не встановлений, тому не може бути видалений\n"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Unable to stat %s."
-msgstr "Неможливо прочитати атрибути %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "Ви повинні записати певні 'source' посилання в твій sources.list"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Неможливо прочитати перелік джерел."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Не можу обробити чи відкрити перелік пакунків чи status файл."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Пакунок %s - віртуальний, його функції надаються пакунками:\n"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "Можливо, для виправлення цих помилок Ви захочете запустити apt-get"
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Встановлено]"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "Ð\9dевÑ\96Ñ\80ний запиÑ\81 в preferences Ñ\84айлÑ\96, вÑ\96дÑ\81Ñ\83Ñ\82нÑ\96й заголовок Package"
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Ð\92и повиннÑ\96 Ñ\8fвно вказаÑ\82и, Ñ\8fкий Ñ\81аме ви Ñ\85оÑ\87еÑ\82е вÑ\81Ñ\82ановиÑ\82и."
-#: apt-pkg/policy.cc:289
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Не зрозумів тип %s для pin"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Не встановлено пріоритету (або встановлено 0) для pin"
+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"
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Ð\9aеÑ\88 маÑ\94 неÑ\81Ñ\83мÑ\96Ñ\81нÑ\83 Ñ\81иÑ\81Ñ\82емÑ\83 пÑ\80изнаÑ\87еннÑ\8f веÑ\80Ñ\81Ñ\96й"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Ð\9eднак наÑ\81Ñ\82Ñ\83пнÑ\96 пакÑ\83нки можÑ\83Ñ\82Ñ\8c його замÑ\96ниÑ\82и:"
-#: apt-pkg/pkgcachegen.cc:115
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewPackage)"
+msgid "Package %s has no installation candidate"
+msgstr "Ð\94лÑ\8f пакÑ\83нка %s не знайденÑ\96 кандидаÑ\82и на вÑ\81Ñ\82ановленнÑ\8f"
-#: apt-pkg/pkgcachegen.cc:130
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage1)"
-
-#: apt-pkg/pkgcachegen.cc:153
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (UsePackage2)"
+msgid "%s is already the newest version.\n"
+msgstr "Ð\92же вÑ\81Ñ\82ановлена найновÑ\96Ñ\88а веÑ\80Ñ\81Ñ\96Ñ\8f %s.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewFileVer1)"
+msgid "Release '%s' for '%s' was not found"
+msgstr "РелÑ\96з '%s' длÑ\8f '%s' не знайдений"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewVersion1)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Ð\92еÑ\80Ñ\81Ñ\96Ñ\8f '%s' длÑ\8f '%s' не знайдена"
-#: apt-pkg/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (UsePackage3)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Ð\9eбÑ\80ана веÑ\80Ñ\81Ñ\96Ñ\8f %s (%s) длÑ\8f %s\n"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Команді update не потрібні аргументи"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Неможливо заблокувати теку з переліками пакунків"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Ви перевищили кількість імен пакунків, які APT може обробити."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"Деякі індексні файли не завантажилися, вони були зігноровані або замість них "
+"були використані старі версії."
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Ви перевищили кількість версій, які APT може обробити."
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:257
+#: cmdline/apt-get.cc:1473
#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Ви перевищили кількість версій, які APT може обробити."
-
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Ви перевищили кількість залежностей які APT може обробити."
-
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (FindPkg)"
-
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "Помилка, яка була викликана внаслідок обробки %s (CollectFileProvides)"
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "НОВІ пакунки, які будуть встановлені:"
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Пакунок %s %s не був знайдений під час обробки залежностей файла"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Читання переліків пакетів"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Наступна інформація можливо допоможе Вам:"
-#: apt-pkg/pkgcachegen.cc:763
+#: cmdline/apt-get.cc:1487
#, fuzzy
-msgid "Collecting File Provides"
-msgstr "Ð\97биÑ\80аннÑ\8f Ñ\96нÑ\84оÑ\80маÑ\86Ñ\96Ñ\97 пÑ\80о Ñ\84айлÑ\96в "
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, виÑ\80Ñ\96Ñ\88Ñ\83ваÑ\87 пÑ\80облем вÑ\81е поламав"
-#: apt-pkg/pkgcachegen.cc:815
-#, c-format
-msgid "Unable to write to %s"
-msgstr "Неможливо записати в %s"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Внутрішня помилка, AllUpgrade все поламав"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Помилка IO під час збереження джерельного кешу"
+#: cmdline/apt-get.cc:1553
+#, fuzzy, c-format
+msgid "Couldn't find task %s"
+msgstr "Не можу знайти пакунок %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "Не вдалося перейменувати, %s (%s -> %s)."
-
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "Невідповідність MD5Sum"
+msgid "Couldn't find package %s"
+msgstr "Не можу знайти пакунок %s"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "Ð\9dевÑ\96дповÑ\96днÑ\96Ñ\81Ñ\82Ñ\8c MD5Sum"
+#: cmdline/apt-get.cc:1691
+#, c-format
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "Ð\9fомÑ\96Ñ\82Ñ\8cÑ\82е, Ñ\80егÑ\83лÑ\8fÑ\80ний виÑ\80аз %2$s пÑ\80изводиÑ\82Ñ\8c до вибоÑ\80Ñ\83 %1$s\n"
-#: apt-pkg/acquire-item.cc:1091
-#, fuzzy
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Ð\92Ñ\96дÑ\81Ñ\83Ñ\82нÑ\96й пÑ\83блÑ\96Ñ\87ний клÑ\8eÑ\87 длÑ\8f заданиÑ\85 ID клÑ\8eÑ\87а:\n"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "але %s бÑ\83де вÑ\81Ñ\82ановлений"
-#: apt-pkg/acquire-item.cc:1204
-#, 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)"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
msgstr ""
-"Я не можÑ\83 знайÑ\82и Ñ\84айл длÑ\8f пакÑ\83нкÑ\83 %s. Ð\9cожливо, Ð\92и заÑ\85оÑ\87еÑ\82е влаÑ\81ноÑ\80Ñ\83Ñ\87 "
-"виправити цей пакунок. (due to missing arch)"
+"Ð\9cожливо, длÑ\8f випÑ\80авленнÑ\8f Ñ\86иÑ\85 помилок Ð\92и заÑ\85оÑ\87еÑ\82е Ñ\81коÑ\80иÑ\81Ñ\82аÑ\82иÑ\81Ñ\8f 'apt-get -f "
+"install':"
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1738
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
msgstr ""
-"Я не можÑ\83 знайÑ\82и Ñ\84айл длÑ\8f пакÑ\83нкÑ\83 %s. Ð\9cожливо, Ð\92и заÑ\85оÑ\87еÑ\82е влаÑ\81ноÑ\80Ñ\83Ñ\87 "
-"випÑ\80авиÑ\82и Ñ\86ей пакÑ\83нок."
+"Ð\9dезадоволенÑ\96 залежноÑ\81Ñ\82Ñ\96. СпÑ\80обÑ\83йÑ\82е виконаÑ\82и 'apt-get -f install', не "
+"вказÑ\83Ñ\8eÑ\87и Ñ\96менÑ\96 пакÑ\83нка (або знайдÑ\96Ñ\82Ñ\8c Ñ\96нÑ\88е Ñ\80Ñ\96Ñ\88еннÑ\8f)."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
msgstr ""
-"Індексні файли пакунків пошкоджені. Немає поля Filename для пакунку %s."
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "Невідповідність розміру"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Блок постачальника %s не містить відбитку (fingerprint)"
+"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n"
+"або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n"
+"ще не створені або були вилучені з Incoming."
-#: apt-pkg/cdrom.cc:529
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"Використовується точка монтування CDROM: %s\n"
-"Монтування CD-ROM\n"
+"Так як Ви просили виконати тільки одну операцію, те найімовірніше, що\n"
+"пакунок просто не може бути встановлений через помилки в самому пакунку.\n"
+"Необхідно відіслати звіт про цю помилку."
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Ð\86денÑ\82иÑ\84Ñ\96каÑ\86Ñ\96Ñ\8f.. "
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Ð\97ламанÑ\96 пакÑ\83нки"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Записано мітку: %s \n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Будуть встановлені наступні додаткові пакунки:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Використовується точка монтування CDROM: %s\n"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Пропоновані пакунки:"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Ð\94емонÑ\82Ñ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f CD-ROM\n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "РекомендованÑ\96 пакÑ\83нки:"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Чекаю на диск...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Монтується CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Диск сканується на індексні файли..\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Обчислення оновлень... "
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Невдача"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "Записано мітку: %s \n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Виконано"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Ð\9dе Ñ\94 вÑ\96Ñ\80ноÑ\8e назвоÑ\8e, Ñ\81пÑ\80обÑ\83йÑ\82е Ñ\89е.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, виÑ\80Ñ\96Ñ\88Ñ\83ваÑ\87 пÑ\80облем вÑ\81е поламав"
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
msgstr ""
-"Цей диск зветься: \n"
-"'%s'\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Копіюються переліки пакунків..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Записується новий перелік джерел\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Перелік джерел для цього диску:\n"
-
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "Демонтується CD-ROM..."
-
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Записано %i записів.\n"
-
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Записано %i записів з %i відсутніми файлами.\n"
+"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні "
+"тексти"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Ð\97апиÑ\81ано %i запиÑ\81Ñ\96в з %i невÑ\96дповÑ\96дними Ñ\84айлам\n"
+msgid "Unable to find a source package for %s"
+msgstr "Ð\9dеможливо знайÑ\82и пакÑ\83нок з виÑ\85Ñ\96дними Ñ\82екÑ\81Ñ\82ами длÑ\8f %s"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n"
-
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "Lists тека %spartial відсутня."
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Пропускаємо вже завантажений файл '%s'\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "Ð\9fÑ\96дгоÑ\82овка %s"
+msgid "You don't have enough free space in %s"
+msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82нÑ\8cо мÑ\96Ñ\81Ñ\86Ñ\8f в %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "РозпакÑ\83ваннÑ\8f %s"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Ð\9dеобÑ\85Ñ\96дно заванÑ\82ажиÑ\82и %sB/%sB з аÑ\80Ñ\85Ñ\96вÑ\96в виÑ\85Ñ\96дниÑ\85 Ñ\82екÑ\81Ñ\82Ñ\96в.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Підготовка до конфігурації %s"
+msgid "Need to get %sB of source archives.\n"
+msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "Конфігурація %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Помилка обробки течи %s"
+msgid "Fetch source %s\n"
+msgstr "Завантаження вихідних текстів %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Встановлено %s"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Деякі архіви не вдалося завантажити."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Підготовка до видалення %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr ""
+"Розпакування вихідних текстів пропущено, тому що в %s вже перебувають "
+"розпаковані вихідні тексти\n"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "Ð\92идалÑ\8fÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f %s"
+msgid "Unpack command '%s' failed.\n"
+msgstr "Ð\9aоманда Ñ\80озпакÑ\83ваннÑ\8f '%s' завеÑ\80Ñ\88илаÑ\81Ñ\8f невдало.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "Ð\92идалено %s"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Ð\9fеÑ\80евÑ\96Ñ\80Ñ\82е, Ñ\87и вÑ\81Ñ\82ановлений пакÑ\83нок 'dpkg-dev'.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Ð\9fÑ\96дгоÑ\82овка до повного видаленнÑ\8f %s"
+msgid "Build command '%s' failed.\n"
+msgstr "Ð\9aоманда побÑ\83дови '%s' закÑ\96нÑ\87илаÑ\81Ñ\8f невдало.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Повністю видалено %s"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Породжений процес завершився невдало"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
msgstr ""
+"Для перевірки залежностей для побудови необхідно вказати як мінімум один "
+"пакунок"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Неможливо накласти латку на файл"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Не вдалося створити IPC-канал для породженого процесу"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "З'єднання завершено передчасно"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Не вдалося створити канали (pipes)"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Не вдалося виконати компресор gzip"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Пошкоджений архів"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Контрольна сума tar архіва невірна, архів пошкоджений"
-
-#: apt-inst/contrib/extracttar.cc:296
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Невідомий тип заголовку TAR %u, член %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Невірний підпис архіву"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Неможливо прочитати заголовок \"member\" архіву"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Невірний заголовок \"member\" архіву"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Архів занадто малий"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Не вдалося прочитати заголовки архіву"
-
-#: apt-inst/filelist.cc:380
-#, fuzzy
-msgid "DropNode called on still linked node"
-msgstr "DropNode викликаний для вузла, який ще використовується"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Не вдалося знайти елемент хешу!"
-
-#: apt-inst/filelist.cc:459
-#, fuzzy
-msgid "Failed to allocate diversion"
-msgstr "Не вдалося створити diversion"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Внутрішня помилка в AddDiversion"
-
-#: apt-inst/filelist.cc:477
-#, fuzzy, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Спроба зміни diversion, %s -> %s і %s/%s"
+msgid "Unable to get build-dependency information for %s"
+msgstr "Неможливо одержати інформацію про залежності для побудови %s"
-#: apt-inst/filelist.cc:506
-#, fuzzy, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Подвійне додавання diversion %s -> %s"
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s не має залежностей для побудови.\n"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Копія конфігураційного файлу %s/%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr ""
+"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to write file %s"
-msgstr "Не вдалося записати файл %s"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"Залежність типу %s для %s не може бути задоволена, бо ні одна з версій "
+"пакунка %s не задовольняє умови"
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Failed to close file %s"
-msgstr "Не вдалося закрити файл %s"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений "
+"пакунок %s новіше, аніж треба"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "The path %s is too long"
-msgstr "ШлÑ\8fÑ\85 %s занадÑ\82о довгий"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "Ð\9dеможливо задоволÑ\8cниÑ\82и залежнÑ\96Ñ\81Ñ\82Ñ\8c Ñ\82ипÑ\83 %s длÑ\8f пакÑ\83нка %s: %s"
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "РозпакÑ\83ваннÑ\8f %s бÑ\96лÑ\8cÑ\88 нÑ\96ж один Ñ\80аз"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "Ð\97алежноÑ\81Ñ\82Ñ\96 длÑ\8f побÑ\83дови %s не можÑ\83Ñ\82Ñ\8c бÑ\83Ñ\82и задоволенÑ\96."
-#: apt-inst/extract.cc:134
-#, fuzzy, c-format
-msgid "The directory %s is diverted"
-msgstr "Тека %s входить до переліку diverted"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Обробка залежностей для побудови закінчилася невдало"
-#: apt-inst/extract.cc:144
-#, fuzzy, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Пакет пробує писати у diversion %s/%s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Підтримувані модулі:"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+#: cmdline/apt-get.cc:2647
#, fuzzy
-msgid "The diversion path is too long"
-msgstr "Шлях diversion занадто довгий"
-
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Не вдалося перейменувати %s в %s"
-
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Тека %s замінюється не текою"
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Використання: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get - простий інтерфейс командного рядка для завантаження й\n"
+"встановлення пакунків. Найбільш часто використовувані команди - update \n"
+"і install.\n"
+"\n"
+"Команди:\n"
+" update - завантажити нові переліки пакунків\n"
+" upgrade - виконати оновлення пакунків\n"
+" install - встановити нові пакунки (назва пакунка вказується\n"
+" як libc6, а не libc6.deb)\n"
+" remove - видалити пакунок\n"
+" source - завантажити архіви з вихідними текстами\n"
+" build-dep - завантажити все необхідне для побудови зазначеного\n"
+" пакунку з вихідних текстів\n"
+" dist-upgrade - оновити всю систему, докладніше - в apt-get(8)\n"
+" dselect-upgrade - керуватися вибором, зробленим в dselect'і\n"
+" clean - видалити завантажені архіви\n"
+" autoclean - видалити старі завантажені архіви\n"
+" check - перевірити наявність порушених залежностей\n"
+"\n"
+"Опції:\n"
+" -h Цей текст.\n"
+" -q Виводити повідомлення, придатні для запису у файл журналу.\n"
+" Не виводити індикатор прогресу\n"
+" -qq Виводити тільки повідомлення про помилки\n"
+" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n"
+" -s Не виконувати дії насправді. Імітація роботи\n"
+" -y Відповідати \"Так\" на всі питання. Самі питання при цьому не "
+"виводяться\n"
+" -f Продовжувати, навіть якщо перевірка цілісності не пройшла\n"
+" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n"
+" -u Показувати список оновлюваних пакунків\n"
+" -b Компілювати пакунок з вихідних текстів після їхнього завантаження\n"
+" -V Показувати версії пакунків\n"
+" -c=? Читати зазначений файл конфігурації\n"
+" -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
+"Сторінки керівництва apt-get(8), sources.list(5) і apt.conf(5)\n"
+"містять більше інформації.\n"
+" This APT has Super Cow Powers.\n"
-#: apt-inst/extract.cc:280
-#, fuzzy
-msgid "Failed to locate node in its hash bucket"
-msgstr "Не вдалося розмістити вузол у хеші"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "В кеші "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "ШлÑ\8fÑ\85 занадÑ\82о довгий"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Ð\9eÑ\82Ñ\80:"
-#: apt-inst/extract.cc:414
-#, fuzzy, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Файли заміняються вмістом пакета %s без версії"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Ігн "
-#: apt-inst/extract.cc:431
-#, fuzzy, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Файл %s/%s перезаписує інший з пакету %s"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Пом "
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Unable to stat %s"
-msgstr "Ð\9dеможливо пÑ\80оÑ\87иÑ\82аÑ\82и аÑ\82Ñ\80ибÑ\83Ñ\82и %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Ð\9eÑ\82Ñ\80имано %sB за %sB (%sB/s)\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "Failed to remove %s"
-msgstr "Невдача видалення %s"
+msgid " [Working]"
+msgstr " [Йде робота]"
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to create %s"
-msgstr "Неможливо створити %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Зміна носія: вставте диск з міткою '%s' у пристрій '%s' і натисніть Ввід\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Не вдалося прочитати атрибути %sinfo"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Запис про невідомий пакунок!"
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr "Теки info і temp повинні бути на тій самій файловій системі"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Використання: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs - простий інструмент для сортування переліків пакунків. Опція -"
+"s\n"
+"використається, щоб вказати тип списку.\n"
+"\n"
+"Опції:\n"
+" -h цей текст\n"
+" -s сортувати список файлів з вихідними текстами\n"
+" -c=? читати зазначений файл конфігурації\n"
+" -o=? встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Невдача зміни до адмінової теки %sinfo"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Неправильне значення по замовчуванню!"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка оÑ\82Ñ\80иманнÑ\8f назви пакÑ\83нкÑ\83"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Ð\94лÑ\8f пÑ\80одовженнÑ\8f наÑ\82иÑ\81нÑ\96Ñ\82Ñ\8c Ð\92вÑ\96д."
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Читання переліку файлів"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr ""
+"Під час розпакування виникли помилки. Буде продовжено процес налаштування"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "встановлених пакунків. Це може призвести до повторення помилок або"
+
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "виникненню нових через незадоволені залежності. Це нормально,"
+
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Не вдалося відкрити list файл '%sinfo/%s'. Якщо Ви не можете відновити цей "
-"файл, тоді зробіть його пустим і негайно реінсталюйте ту ж саму версію "
-"пакунка!"
+"важливі тільки помилки, зазначені вище. Виправте їх і виконаєте установку ще "
+"раз"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Невдача читання list файла %sinfo/%s"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Об'єднання інформації про доступні пакунки"
-#: apt-inst/deb/dpkgdb.cc:262
-#, fuzzy
-msgid "Internal error getting a node"
-msgstr "Внутрішня помилка при отриманні Node"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Не вдалося створити канали (pipes)"
-#: apt-inst/deb/dpkgdb.cc:305
-#, fuzzy, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Не вдалося відкрити файл diversions %sdiversions"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Не вдалося виконати компресор gzip"
-#: apt-inst/deb/dpkgdb.cc:320
-#, fuzzy
-msgid "The diversion file is corrupted"
-msgstr "Файл diversions пошкоджений"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Пошкоджений архів"
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, fuzzy, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Невірна лінія в файлі diversions: %s"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Контрольна сума tar архіва невірна, архів пошкоджений"
-#: apt-inst/deb/dpkgdb.cc:358
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Невідомий тип заголовку TAR %u, член %s"
+
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Невірний підпис архіву"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Неможливо прочитати заголовок \"member\" архіву"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Невірний заголовок \"member\" архіву"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Архів занадто малий"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Не вдалося прочитати заголовки архіву"
+
+#: apt-inst/filelist.cc:380
+#, fuzzy
+msgid "DropNode called on still linked node"
+msgstr "DropNode викликаний для вузла, який ще використовується"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Не вдалося знайти елемент хешу!"
+
+#: apt-inst/filelist.cc:459
+#, fuzzy
+msgid "Failed to allocate diversion"
+msgstr "Не вдалося створити diversion"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Внутрішня помилка в AddDiversion"
+
+#: apt-inst/filelist.cc:477
+#, fuzzy, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Спроба зміни diversion, %s -> %s і %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, fuzzy, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Подвійне додавання diversion %s -> %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Копія конфігураційного файлу %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Не вдалося записати файл %s"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Не вдалося закрити файл %s"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Шлях %s занадто довгий"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Розпакування %s більш ніж один раз"
+
+#: apt-inst/extract.cc:134
+#, fuzzy, c-format
+msgid "The directory %s is diverted"
+msgstr "Тека %s входить до переліку diverted"
+
+#: apt-inst/extract.cc:144
+#, fuzzy, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Пакет пробує писати у diversion %s/%s"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+#, fuzzy
+msgid "The diversion path is too long"
+msgstr "Шлях diversion занадто довгий"
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Тека %s замінюється не текою"
+
+#: apt-inst/extract.cc:280
+#, fuzzy
+msgid "Failed to locate node in its hash bucket"
+msgstr "Не вдалося розмістити вузол у хеші"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Шлях занадто довгий"
+
+#: apt-inst/extract.cc:414
+#, fuzzy, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Файли заміняються вмістом пакета %s без версії"
+
+#: apt-inst/extract.cc:431
+#, fuzzy, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Файл %s/%s перезаписує інший з пакету %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Неможливо прочитати %s"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Неможливо прочитати атрибути %s"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Невдача видалення %s"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Неможливо створити %s"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Не вдалося прочитати атрибути %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr "Теки info і temp повинні бути на тій самій файловій системі"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Читання переліків пакетів"
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Невдача зміни до адмінової теки %sinfo"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Внутрішня помилка отримання назви пакунку"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Читання переліку файлів"
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Не вдалося відкрити list файл '%sinfo/%s'. Якщо Ви не можете відновити цей "
+"файл, тоді зробіть його пустим і негайно реінсталюйте ту ж саму версію "
+"пакунка!"
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Невдача читання list файла %sinfo/%s"
+
+#: apt-inst/deb/dpkgdb.cc:262
+#, fuzzy
+msgid "Internal error getting a node"
+msgstr "Внутрішня помилка при отриманні Node"
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, fuzzy, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Не вдалося відкрити файл diversions %sdiversions"
+
+#: apt-inst/deb/dpkgdb.cc:320
+#, fuzzy
+msgid "The diversion file is corrupted"
+msgstr "Файл diversions пошкоджений"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, fuzzy, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Невірна лінія в файлі diversions: %s"
+
+#: apt-inst/deb/dpkgdb.cc:358
#, fuzzy
msgid "Internal error adding a diversion"
msgstr "Внутрішня помилка при додаванні diversion"
msgid "Unparsable control file"
msgstr "Контрольний файл не можливо обробити"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Ð\9fакÑ\83нок %s веÑ\80Ñ\81Ñ\96Ñ\97 %s маÑ\94 незадоволенÑ\83 залежнÑ\96Ñ\81Ñ\82Ñ\8c:\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Ð\9dеможливо пÑ\80оÑ\87иÑ\82аÑ\82и базÑ\83 %s з cdrom'Ñ\83"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Не можу знайти пакунок %s"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Будь-ласка використовуйте apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get "
+"update не може бути використаним для додання нових CD"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Ð\92Ñ\81Ñ\8cого Ñ\96мен пакÑ\83нкÑ\96в : "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "Ð\9dевÑ\96Ñ\80ний CD-ROM"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Нормальних пакунків: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Неможливо демонтувати CDROM в %s, можливо він все ще використовується."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Чисто віртуальних пакунків: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Диск не знайдено."
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Окремих віртуальних пакунків: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Файл не знайдено"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Змішаних віртуальних пакунків: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Не вдалося одержати атрибути"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Пропущено: "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Не вдалося встановити час модифікації"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Всього унікальних версій: "
-
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "Всього унікальних версій: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Невірне посилання, локальні посилання повинні починатися з //"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Всього залежностей: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Логінюсь в"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Ð\92Ñ\81Ñ\8cого вÑ\96дноÑ\81ин Ð\92еÑ\80Ñ\81Ñ\96Ñ\8f/Файл: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Ð\9dеможливо визнаÑ\87иÑ\82и назвÑ\83 вÑ\83зла"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "Всього відносин Версія/Файл: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Неможливо визначити локальну назву"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Всього відносин Provides: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Сервер розірвав з'єднання і мовив: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Всього розгорнутих рядків: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER невдало, сервер мовив: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Всього інформації про залежності: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS невдало, сервер мовив: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Порожнього місця в кеші: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin "
+"пустий."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Загальний простір полічений для: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Команда '%s'скрипту логіна не вдалася, сервер мовив: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Перелік пакунків %s розсинхронізований."
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE невдало, сервер мовив: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Ð\92и повиннÑ\96 задаÑ\82и Ñ\80Ñ\96вно один Ñ\88аблон"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "ЧаÑ\81 з'Ñ\94днаннÑ\8f виÑ\87еÑ\80павÑ\81Ñ\8f"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Ð\9dе знайдено жодного пакÑ\83нка"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "СеÑ\80веÑ\80 закÑ\80ив з'Ñ\94днаннÑ\8f"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Ð\9fеÑ\80елÑ\96ки пакÑ\83нкÑ\96в:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Ð\9fомилка Ñ\87иÑ\82аннÑ\8f"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "Ð\9aеÑ\88 не Ñ\81инÑ\85Ñ\80онÑ\96зований, неможливо знайÑ\82и поÑ\81иланнÑ\8f на пеÑ\80елÑ\96к пакÑ\83нкÑ\96в"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Ð\92Ñ\96дповÑ\96дÑ\8c пеÑ\80еповнила бÑ\83Ñ\84еÑ\80."
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Спотворений протокол"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Зафіксовані пакунки:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Помилка запису"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(не знайдено)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Неможливо створити сокет (socket)"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Встановлено: "
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(відсутній)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Неможливо під'єднати пасивний сокет (passive socket)."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Кандидат: "
+#: methods/ftp.cc:722
+#, fuzzy
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "Виклик getaddrinfo не зміг отримати сокет"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Фіксатор(pin) пакунка: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Неможливо приєднатися до сокета"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Таблиця версій:"
+#: methods/ftp.cc:740
+#, fuzzy
+msgid "Could not listen on the socket"
+msgstr "Не можливо утримувати з'єднання на сокеті"
-#: cmdline/apt-cache.cc:1618
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Не вдалося визначити назву сокета"
+
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Неможливо відіслати команду PORT"
+
+#: methods/ftp.cc:789
#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Невідоме адресове сімейство %u (AF_*)"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s для %s %s скомпільовано %s %s\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT невдало, сервер мовив: %s"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Використання: apt-cache [options] command\n"
-" або: apt-cache [options] add file1 [file1 ...]\n"
-" або: apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" або: apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache - низькорівневий інструмент, що використається для керування\n"
-"двійковими кеш-файлами APT'а, а також для добування інформації з них\n"
-"Команди:\n"
-" add - додати файл пакунка в кеш джерел\n"
-" gencaches - побудувати обидва кеша пакунків - бінарних і з вихідними "
-"текстами\n"
-" showpkg - загальна інформація про конкретний пакунок\n"
-" stats - основна статистика\n"
-" dump - показати весь файл у стислій формі\n"
-" dumpavail - видати на stdout список доступних пакунків\n"
-" unmet - показати незадоволені залежності\n"
-" search - знайти пакунки, назва яких задовольняє регулярний вираз\n"
-" show - показати інформацію про пакунок в зрозумілій формі\n"
-" depends - показати інформацію про залежності пакунка построково\n"
-" rdepends - показати інформацію про зворотні залежності пакунка\n"
-" pkgnames - показати імена всіх пакунків\n"
-" dotty - генерувати граф залежностей пакунків у форматі GraphVis\n"
-" xvcg - генерувати граф залежностей пакунків у форматі xvcg\n"
-" policy - показати поточну політику вибору пакунків\n"
-"\n"
-"Опції:\n"
-" -h Цей текст.\n"
-" -p=? Кеш пакунків.\n"
-" -s=? Кеш джерел.\n"
-" -q Не показувати індикатор прогресу.\n"
-" -i Показувати тільки важливі залежності для команди unmet.\n"
-" -c=? Читати зазначений файл конфігурації.\n"
-" -o=? Встановити довільну опцію конфігурації, наприклад, -o dir::cache=/"
-"tmp\n"
-"Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Час з'єднання з сокетом даних вичерпався"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Ð\97адайÑ\82е назвÑ\83 длÑ\8f Ñ\86Ñ\8cого диÑ\81ка, напÑ\80иклад 'Debian 2.1r1 Disk 1'"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Ð\9dеможливо пÑ\80ийнÑ\8fÑ\82и з'Ñ\94днаннÑ\8f"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Ð\92Ñ\81Ñ\82авÑ\82е диÑ\81к Ñ\83 пÑ\80иÑ\81Ñ\82Ñ\80Ñ\96й Ñ\96 наÑ\82иÑ\81нÑ\96Ñ\82Ñ\8c Ð\92вÑ\96д"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Ð\9fÑ\80облема Ñ\85еÑ\88Ñ\83ваннÑ\8f Ñ\84айла"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "Повторіть цей процес для інших наявних CD."
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Неможливо завантажити файл, сервер мовив: '%s'"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Ð\9dепаÑ\80нÑ\96 аÑ\80гÑ\83менÑ\82и"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "ЧаÑ\81 з'Ñ\94днаннÑ\8f з Ñ\81океÑ\82ом (socket) з даними виÑ\87еÑ\80павÑ\81Ñ\8f"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Використання: apt-config [options] command\n"
-"\n"
-"apt-config - простий інструмент для читання конфігураційного файлу APT\n"
-"\n"
-"Команди:\n"
-" shell - режим shell\n"
-" dump - показати конфігурацію\n"
-"\n"
-"Опції:\n"
-" -h Цей текст.\n"
-" -с=? Читати зазначений конфігураційний файл.\n"
-" -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
+#: methods/ftp.cc:922
+#, c-format
+msgid "Data transfer failed, server said '%s'"
+msgstr "Передача даних обірвалася, сервер мовив '%s'"
-#: cmdline/apt-extracttemplates.cc:98
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Черга"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Неможливо викликати "
+
+#: methods/connect.cc:64
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s не є правильним DEB-пакунком."
+msgid "Connecting to %s (%s)"
+msgstr "З'єднання з %s (%s)"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Використання: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates витягує з пакунків Debian конфігураційні скрипти\n"
-"і файли-шаблони\n"
-"\n"
-"Опції:\n"
-" -h Цей текст\n"
-" -t Встановити теку для тимчасових файлів\n"
-" -c=? Читати зазначений конфігураційний файл\n"
-" -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n"
+#: methods/connect.cc:71
+#, c-format
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Неможливо визначити версію debconf. Він встановлений?"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Список розширень, припустимих для пакунків, занадто довгий"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Неможливо ініціалізувати з'єднання з %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing directory %s"
-msgstr "Ð\9fомилка обÑ\80обки Ñ\82еÑ\87и %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Ð\9dеможливо з'Ñ\94днаÑ\82иÑ\81Ñ\8f з %s:%s (%s), Ñ\87аÑ\81 з'Ñ\94днаннÑ\8f виÑ\87еÑ\80павÑ\81Ñ\8f"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr ""
-"Список розширень, припустимих для пакунків з вихідними текстами, занадто "
-"довгий"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Не можливо під'єднатися до %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Помилка запису заголовка в повний перелік вмісту пакунків (Contents)"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "З'єднання з %s"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:167
#, c-format
-msgid "Error processing contents %s"
-msgstr "помилка обÑ\80обки повного пеÑ\80елÑ\96кÑ\83 вмÑ\96Ñ\81Ñ\82Ñ\83 пакÑ\83нкÑ\96в (Contents) %s"
+msgid "Could not resolve '%s'"
+msgstr "Ð\9dе можÑ\83 знайÑ\82и IP адÑ\80еÑ\81 длÑ\8f %s"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Використання: apt-ftparchive [параметри] команда\n"
-"Команди: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive генерує індексні файли архівів Debian. Він підтримує\n"
-"безліч стилів генерації: від повністю автоматичного до функціональної "
-"заміни\n"
-"програм dpkg-scanpackages і dpkg-scansources\n"
-"\n"
-"apt-ftparchive генерує файли Package (переліки пакунків) для дерева\n"
-"тек, що містять файли .deb. Файл Package містить у собі керуючі\n"
-"поля кожного пакунка, а також хеш MD5 і розмір файлу. Значення керуючих\n"
-"полів \"пріоритет\" (Priority) і \"секція\" (Section) можуть бути змінені з\n"
-"допомогою файлу override.\n"
-"\n"
-"Крім того, apt-ftparchive може генерувати файли Sources з дерева\n"
-"тек, що містять файли .dsc. Для вказівки файлу override у цьому \n"
-"режимі можна використати параметр --source-override.\n"
-"\n"
-"Команди 'packages' і 'sources' треба виконувати, перебуваючи в кореневій "
-"теці\n"
-"дерева, що ви хочете обробити. BinaryPath повинен вказувати на місце,\n"
-"з якого починається рекурсивний обхід, а файл перепризначень (override)\n"
-"повинен містити запис про перепризначення керуючих полів. Якщо був "
-"зазначений\n"
-"Pathprefix, то його значення додається до керуючих полів, що містять\n"
-"імена файлів. Приклад використання для архіву Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Параметри:\n"
-" -h Цей текст\n"
-" --md5 Керування генерацією MD5-хешів\n"
-" -s=? Вказати файл перепризначень (override) для пакунків з вихідними "
-"текстами\n"
-" -q Не виводити повідомлення в процесі роботи\n"
-" -d=? Вказати кешуючу базу даних (не обов'язково)\n"
-" --no-delink Включити режим налагодження процесу видалення файлів\n"
-" --contents Керування генерацією повного переліку вмісту пакунків\n"
-" (файлу Contents)\n"
-" -c=? Використати зазначений конфігураційний файл\n"
-" -o=? Вказати довільний параметр конфігурації"
+#: methods/connect.cc:173
+#, c-format
+msgid "Temporary failure resolving '%s'"
+msgstr "Тимчасова помилка при отриманні IP адреси '%s'"
+
+#: methods/connect.cc:176
+#, c-format
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i)"
+
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "Не можливо під'єднатися до %s %s:"
+
+#: methods/gpgv.cc:65
+#, fuzzy, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Неможливо отримати доступ до keyring: '%s'"
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Збігів не виявлено"
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr ""
+"E: Перелік аргументів з Acquire::gpgv::Options занадто довгий. Відміна."
-#: ftparchive/apt-ftparchive.cc:832
-#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "У групі пакунків '%s' відсутні деякі файли"
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr ""
+"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його "
+"відбиток?!"
-#: ftparchive/cachedb.cc:43
-#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "БД була пошкоджена, файл перейменований в %s.old"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Знайдено як мінімум один невірний підпис."
-#: ftparchive/cachedb.cc:61
+#: methods/gpgv.cc:214
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB застаріла, намагаюсь оновити %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "Неможливо виконати '%s' для перевірки підпису, gnupg встановлено?"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Невідома помилка виконання gpgv"
+
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Слідуючі підписи були невірними:\n"
+
+#: methods/gpgv.cc:257
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
msgstr ""
-"ФоÑ\80маÑ\82и DB не Ñ\94 пÑ\80авилÑ\8cним. ЯкÑ\89о ви оновилиÑ\81Ñ\8f зÑ\96 Ñ\81Ñ\82аÑ\80оÑ\97 веÑ\80Ñ\81Ñ\96Ñ\97 apt, бÑ\83дÑ\8c-"
-"лаÑ\81ка видалÑ\96Ñ\82Ñ\8c Ñ\96 наново Ñ\81Ñ\82воÑ\80Ñ\96Ñ\82Ñ\8c базÑ\83."
+"СлÑ\96дÑ\83Ñ\8eÑ\87Ñ\96 пÑ\96дпиÑ\81и не можÑ\83Ñ\82Ñ\8c бÑ\83Ñ\82и пеÑ\80евÑ\96Ñ\80енÑ\96, Ñ\82омÑ\83 Ñ\89о, пÑ\83блÑ\96Ñ\87ний клÑ\8eÑ\87 "
+"вÑ\96дÑ\81Ñ\83Ñ\82нÑ\96й:\n"
-#: ftparchive/cachedb.cc:77
+#: methods/gzip.cc:64
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Не вдалося відкрити DB файл %s: %s"
+msgid "Couldn't open pipe for %s"
+msgstr "Неможливо відкрити канал (pipe) для %s"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "В архіві немає поля control"
+#: methods/gzip.cc:109
+#, c-format
+msgid "Read error from %s process"
+msgstr "Помилка читання з процесу %s"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Ð\9dеможливо одеÑ\80жаÑ\82и кÑ\83Ñ\80Ñ\81оÑ\80"
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Ð\9eÑ\87Ñ\96кÑ\83ваннÑ\8f на заголовки"
-#: ftparchive/writer.cc:76
+#: methods/http.cc:523
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Не вдалося прочитати теку %s\n"
+msgid "Got a single header line over %u chars"
+msgstr "Отримано одну заголовкову лінію понад %u символів"
-#: ftparchive/writer.cc:81
-#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Неможливо прочитати атрибути %s\n"
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Невірна лінія заголовку"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "HTTP сервер відіслав невірний заголовок 'reply'"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: Помилки відносяться до файлу"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Цей HTTP сервер має поламану підтримку 'range'"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Невідомий формат дати"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Вибір не вдався"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Час очікування з'єднання вийшов"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Помилка запису в вихідний файл"
+
+#: methods/http.cc:833
+#, fuzzy
+msgid "Error writing to file"
+msgstr "Помилка запису в файл"
+
+#: methods/http.cc:861
+#, fuzzy
+msgid "Error writing to the file"
+msgstr "Помилка запису в файл"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Помилка читання з сервера. Віддалена сторона закрила з'єднання"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Помилка читання з сервера"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Погана заголовкова інформація"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "З'єднання не вдалося"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Внутрішня помилка"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Неможливо відобразити в пам'яті пустий файл"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to resolve %s"
-msgstr "Не вдалося піти по посиланню %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Неможливо відобразити в пам'яті %lu байт"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Не вдалося зробити обхід дерева"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "Вибір %s не знайдено"
-#: ftparchive/writer.cc:195
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Failed to open %s"
-msgstr "Не вдалося відкрити %s"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Нерозпізнаваний тип абревіатури: '%c'"
-#: ftparchive/writer.cc:254
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr "DeLink %s [%s]\n"
+msgid "Opening configuration file %s"
+msgstr "Відкривається конфігураційний файл %s"
-#: ftparchive/writer.cc:262
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "Лінія %d занадто довга (максимум %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Failed to readlink %s"
-msgstr "Ð\9dе вдалоÑ\81Ñ\8f пÑ\80оÑ\87иÑ\82аÑ\82и поÑ\81иланнÑ\8f %s"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "СинÑ\82акÑ\81ова помилка %s:%u: Ð\91лок поÑ\87инаÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f без назви."
-#: ftparchive/writer.cc:266
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid "Failed to unlink %s"
-msgstr "Ð\9dе вдалоÑ\81Ñ\8f видалиÑ\82и %s"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "СинÑ\82акÑ\81ова помилка %s:%u: Ñ\81поÑ\82воÑ\80ений Ñ\82ег"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Не вдалося створити посилання %s на %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Синтаксова помилка %s:%u: зайві символи після величини"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:687
+#, fuzzy, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr ""
+"Синтаксова помилка %s:%u: Директиви можуть бути виконані тільки на "
+"найвищому рівні"
+
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr "Ð\9fеÑ\80евиÑ\89ено лÑ\96мÑ\96Ñ\82 в %s в DeLink.\n"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "СинÑ\82акÑ\81ова помилка %s:%u: Ð\97абагаÑ\82о вмонÑ\82ованиÑ\85 вклÑ\8eÑ\87енÑ\8c"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "В архіві немає поля package"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Синтаксова помилка %s:%u: Включена звідси"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid " %s has no override entry\n"
-msgstr " Відсутній запис про перепризначення для %s\n"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "Синтаксова помилка %s:%u: Директива '%s' не підтримується"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " пакунок %s супроводжує %s, а не %s\n"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Синтаксова помилка %s:%u: зайві символи в кінці файла"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid " %s has no source override entry\n"
-msgstr ""
+msgid "%c%s... Error!"
+msgstr "%c%s... Помилка!"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr ""
+msgid "%c%s... Done"
+msgstr "%c%s... Виконано"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, не можÑ\83 знайÑ\82и Ñ\81кладовÑ\83 Ñ\87аÑ\81Ñ\82инÑ\83 %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Ð\9dевÑ\96домий паÑ\80амеÑ\82Ñ\80 '%c' [з %s] командного Ñ\80Ñ\8fдка."
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - не вдалося виділити пам'ять"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Незрозумілий параметр %s командного рядка"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Unable to open %s"
-msgstr "Ð\9dе вдалоÑ\81Ñ\8f вÑ\96дкÑ\80иÑ\82и %s"
+msgid "Command line option %s is not boolean"
+msgstr "Ð\9dе логÑ\96Ñ\87ний паÑ\80амеÑ\82Ñ\80 %s командного Ñ\80Ñ\8fдка"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Спотворений запис про перепризначення (override) %s на рядку %lu #1"
+msgid "Option %s requires an argument."
+msgstr "Параметр %s потребує аргумента."
+
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr ""
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "СпоÑ\82воÑ\80ений запиÑ\81 пÑ\80о пеÑ\80епÑ\80изнаÑ\87еннÑ\8f (override) %s на Ñ\80Ñ\8fдкÑ\83 %lu #2"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80 %s поÑ\82Ñ\80ебÑ\83Ñ\94 integer аÑ\80гÑ\83менÑ\82, але не '%s'"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "СпоÑ\82воÑ\80ений запиÑ\81 пÑ\80о пеÑ\80епÑ\80изнаÑ\87еннÑ\8f (override) %s на Ñ\80Ñ\8fдкÑ\83 %lu #3"
+msgid "Option '%s' is too long"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80 '%s' занадÑ\82о довгий"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:298
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Не вдалося прочитати файл перепризначень (override)%s"
+msgid "Sense %s is not understood, try true or false."
+msgstr "Незрозумілий вираз %s , спробуйте true чи false."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:348
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Невідомий алгоритм стиснення '%s'"
+msgid "Invalid operation %s"
+msgstr "Невірна дія %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cdromutl.cc:52
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Для отримання стиснутого виводу %s необхідно ввімкнути пакування"
-
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Не вдалося створити FILE*"
+msgid "Unable to stat the mount point %s"
+msgstr "Неможливо прочитати атрибути точки монтування %s"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Не вдалося виконати породжений процес"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Неможливо зробити зміни у %s"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Ð\9fÑ\80оÑ\86еÑ\81-наÑ\89адок, Ñ\89о виконÑ\83Ñ\94 пакÑ\83ваннÑ\8f"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f пÑ\80оÑ\87иÑ\82аÑ\82и аÑ\82Ñ\80ибÑ\83Ñ\82и cdrom"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Внутрішня помилка, не вдалося створити %s"
-
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Не вдалося створити IPC з породженим процесом"
+msgid "Not using locking for read only lock file %s"
+msgstr ""
+"Блокування не використовується, так як файл блокування %s доступний тільки "
+"для читання"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Не вдалося виконати компресор "
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Не можливо відкрити lock файл %s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "декомпресор"
+#: apt-pkg/contrib/fileutl.cc:105
+#, c-format
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr ""
+"Блокування не використовується, так як файл блокування %s знаходиться на "
+"файловій системі nfs"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "Помилка уведення/виводу в підпроцес/файл"
+#: apt-pkg/contrib/fileutl.cc:109
+#, fuzzy, c-format
+msgid "Could not get lock %s"
+msgstr "Не можливо отримати lock %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Помилка читання під час обчислення MD5"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Очікується на %s але його тут немає"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Ð\9dе вдалоÑ\81Ñ\8f видалиÑ\82и %s"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Ð\9fÑ\96дпÑ\80оÑ\86еÑ\81 %s оÑ\82Ñ\80имав segmentation fault."
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Т"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Підпроцес %s повернув код помилки (%u)"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Помилка компіляції регулярного виразу - %s"
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Підпроцес %s раптово завершився"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Пакунки, що мають незадоволені залежності:"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "Не можливо відкрити файл %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
-msgid "but %s is installed"
-msgstr "але %s вже встановлений"
+msgid "read, still have %lu to read but none left"
+msgstr ""
+"помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:522
#, c-format
-msgid "but %s is to be installed"
-msgstr "але %s бÑ\83де вÑ\81Ñ\82ановлений"
+msgid "write, still have %lu to write but couldn't"
+msgstr "помилка пÑ\80и запиÑ\81Ñ\96, мали пÑ\80оÑ\87иÑ\82аÑ\82и Ñ\89е %lu байÑ\82, але не змогли"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "але вÑ\96н не може бÑ\83Ñ\82и вÑ\81Ñ\82ановлений"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Ð\9fÑ\80облема з закÑ\80иÑ\82Ñ\82Ñ\8fм Ñ\84айла"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "але Ñ\86е вÑ\96Ñ\80Ñ\82Ñ\83алÑ\8cний пакÑ\83нок"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Ð\9fÑ\80облема з Ñ\80оз'Ñ\94днаннÑ\8fм Ñ\84айла"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "але вÑ\96н не вÑ\81Ñ\82ановлений"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Ð\9fÑ\80облема з Ñ\81инÑ\85Ñ\80онÑ\96заÑ\86Ñ\96Ñ\94Ñ\8e Ñ\84айла"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "але вÑ\96н не бÑ\83де вÑ\81Ñ\82ановлений"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Ð\9aеÑ\88 пакÑ\83нкÑ\96в пÑ\83Ñ\81Ñ\82ий"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " чи"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Файл кешу пакунків пошкоджений"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Ð\9dÐ\9eÐ\92Ð\86 пакÑ\83нки, Ñ\8fкÑ\96 бÑ\83дÑ\83Ñ\82Ñ\8c вÑ\81Ñ\82ановленÑ\96:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Файл кеÑ\88Ñ\83 пакÑ\83нкÑ\96в маÑ\94 неÑ\81Ñ\83мÑ\96Ñ\81нÑ\83 веÑ\80Ñ\81Ñ\96Ñ\8e"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Пакунки, які будуть ВИДАЛЕНІ:"
+#: apt-pkg/pkgcache.cc:148
+#, c-format
+msgid "This APT does not support the versioning system '%s'"
+msgstr "APT не підтримує систему призначення версій '%s'"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Ð\9fакÑ\83нки, Ñ\8fкÑ\96 бÑ\83дÑ\83Ñ\82Ñ\8c залиÑ\88енÑ\96 в незмÑ\96нномÑ\83 виглÑ\8fдÑ\96:"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Ð\9aеÑ\88 пакÑ\83нкÑ\96в бÑ\83в побÑ\83дований длÑ\8f Ñ\96нÑ\88оÑ\97 аÑ\80Ñ\85Ñ\96Ñ\82екÑ\82Ñ\83Ñ\80и"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Ð\9fакÑ\83нки, Ñ\8fкÑ\96 бÑ\83дÑ\83Ñ\82Ñ\8c Ð\9eÐ\9dÐ\9eÐ\92Ð\9bÐ\95Ð\9dÐ\86:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Ð\97алежноÑ\81Ñ\82Ñ\96 (Depends)"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Пакунки, будуть замінені на більш СТАРІ версії:"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Пре-Залежності (PreDepends)"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Пакунки, які повинні були б залишитися без змін, але будуть замінені:"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Пропонує (Suggests)"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (внаслідок %s) "
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Рекомендує"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"УВАГА: Ці істотно важливі пакунки будуть вилучені.\n"
-"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Конфлікти"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "оновлено %lu, встановлено %lu нових пакунків, "
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Заміняє (Replaces)"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr " %lu перевстановлено, "
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Застарілі (Obsoletes)"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu пакунків замінено на старі версії, "
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "для видалення відмічено %lu пакунків, і %lu пакунків не оновлено.\n"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "Важливі (Important)"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "не встановлено до кінця чи видалено %lu пакунків.\n"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "Необхідні (Required)"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Ð\92ипÑ\80авленнÑ\8f залежноÑ\81Ñ\82ей..."
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "СÑ\82андаÑ\80Ñ\82нÑ\96 (Standard)"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " невдача."
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "Необов'язкові (Optional)"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Ð\9dеможливо Ñ\81коÑ\80игÑ\83ваÑ\82и залежноÑ\81Ñ\82Ñ\96"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "Ð\94одаÑ\82ковÑ\96 (Extra)"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Ð\9dеможливо мÑ\96нÑ\96мÑ\96зÑ\83ваÑ\82и набÑ\96Ñ\80 оновленÑ\8c"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Ð\9fобÑ\83дова деÑ\80ева залежноÑ\81Ñ\82ей"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Виконано"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Версії кандидатів"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr ""
-"Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f "
-"install'."
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Ґенерація залежностей"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "Незадоволені залежності. Спробуйте використати -f."
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "Об'єднання інформації про доступні пакунки"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "Не вдалося відкрити %s"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Автентифікаційне попередження не прийнято до уваги.\n"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "Не вдалося записати файл %s"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Встановити ці пакунки без перевірки [т/Н]? "
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "Неможливо обробити файл %s пакунку (1)"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Деякі пакунки неможливо автентифікувати"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "Неможливо обробити файл %s пакунку (2)"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Існують проблеми, а опція -y використана без --force-yes"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Спотворена лінія %lu у переліку джерел %s (проблема в URI)"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
+#: apt-pkg/sourcelist.cc:92
+#, c-format
+msgid "Malformed line %lu in source list %s (dist)"
msgstr ""
-"Внутрішня помилка, InstallPackages була викликана з непрацездатними "
-"пакунками!"
-
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Пакунки необхідно видалити, але видалення заборонене."
-
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Внутрішня помилка, Ordering не завершилася"
+"Спотворена лінія %lu у переліку джерел %s (проблема в назві дистрибутиву)"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Неможливо заблокувати теку для завантаження"
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "Спотворена лінія %lu у переліку джерел %s (обробка URI)"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "Дивно.. Розбіжність розмірів, напишіть на apt@packages.debian.org"
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "Спотворена лінія %lu у переліку джерел %s (absolute dist)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Ð\9dеобÑ\85Ñ\96дно заванÑ\82ажиÑ\82и %sB/%sB аÑ\80Ñ\85Ñ\96вÑ\96в.\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "СпоÑ\82воÑ\80ена лÑ\96нÑ\96Ñ\8f %lu Ñ\83 пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s (dist parse)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Ð\9dеобÑ\85Ñ\96дно заванÑ\82ажиÑ\82и %sB аÑ\80Ñ\85Ñ\96вÑ\96в.\n"
+msgid "Opening %s"
+msgstr "Ð\92Ñ\96дкÑ\80иÑ\82Ñ\82Ñ\8f %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Ð\9fÑ\96Ñ\81лÑ\8f Ñ\80озпакÑ\83ваннÑ\8f об'Ñ\94м зайнÑ\8fÑ\82ого диÑ\81кового пÑ\80оÑ\81Ñ\82оÑ\80Ñ\83 зÑ\80оÑ\81Ñ\82е на %sB.\n"
+msgid "Line %u too long in source list %s."
+msgstr "Ð\9bÑ\96нÑ\96Ñ\8f %u занадÑ\82о довга в пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s."
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr ""
-"Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Спотворена лінія %u у переліку джерел %s (тип)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:240
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Не вдалося визначити кількість вільного місця в %s"
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Невідомий тип '%s' в лінії %u в переліку джерел %s"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82нÑ\8cо вÑ\96лÑ\8cного мÑ\96Ñ\81Ñ\86Ñ\8f в %s."
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "СпоÑ\82воÑ\80ена лÑ\96нÑ\96Ñ\8f %u Ñ\83 пеÑ\80елÑ\96кÑ\83 джеÑ\80ел %s (vendor id)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/packagemanager.cc:399
+#, c-format
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Запитане виконання тільки тривіальних операцій, але це не тривіальна "
-"операція."
+"Для виконання даного встановлення потрібне тимчасове видалення важливого "
+"пакету %s через конфлікти/петлеві пре-залежності (Pre-Depends loop). Це "
+"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-"
+"LoopBreak."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Так, робити, як я скажу!"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Тип '%s' індексного файлу не підтримується"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/algorithms.cc:247
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"The package %s needs to be reinstalled, but I can't find an archive for it."
msgstr ""
-"Те, що ви хочете зробити, може мати небажані наслідки.\n"
-"Щоб продовжити, введіть фразу: '%s'\n"
-" ?] "
+"Пакунок %s повинен бути перевстановленим, але я не можу знайти архіву для "
+"нього."
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Перервано."
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr ""
+"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути "
+"пов'язано з зафіксованими пакунками."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Ð\91ажаÑ\94Ñ\82е пÑ\80одовжиÑ\82и [Т/н]? "
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Ð\9dеможливо Ñ\83Ñ\81Ñ\83нÑ\83Ñ\82и пÑ\80облеми, Ð\92и маÑ\94Ñ\82е поламанÑ\96 заÑ\84Ñ\96кÑ\81ованÑ\96 пакÑ\83нки."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/acquire.cc:59
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Не вдалося завантажити %s %s\n"
-
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Деякі файли не вдалося завантажити"
-
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено"
+msgid "Lists directory %spartial is missing."
+msgstr "Lists тека %spartial відсутня."
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update "
-"або спробувати повторити запуск з ключем --fix-missing?"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "Архівна тека %spartial відсутня."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "--fix-missing і зміна носія в даний момент не підтримується"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Завантажується файл %li з %li (%s залишилось)"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Неможливо виправити втрачені пакунки."
+#: apt-pkg/acquire.cc:829
+#, fuzzy, c-format
+msgid "Retrieving file %li of %li"
+msgstr "Завантажується файл %li з %li"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Переривається встановлення."
+#: apt-pkg/acquire-worker.cc:110
+#, c-format
+msgid "The method driver %s could not be found."
+msgstr "Драйвер для метода %s не знайдено."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Ð\9fомÑ\96Ñ\82Ñ\8cÑ\82е, замÑ\96Ñ\81Ñ\82Ñ\8c %2$s вибиÑ\80аÑ\94Ñ\82Ñ\8cÑ\81Ñ\8f %1$s\n"
+msgid "Method %s did not start correctly"
+msgstr "Ð\9cеÑ\82од %s не Ñ\81Ñ\82аÑ\80Ñ\82Ñ\83вав коÑ\80екÑ\82но"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
msgstr ""
-"Пропускається %s - пакунок вже встановлений, і опція upgrade не "
-"встановлена.\n"
+"Будь-ласка, вставте диск з поміткою: '%s' в CD привід '%s' і натисніть Enter."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Пакунок %s не встановлений, тому не може бути видалений\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "Система пакування '%s' не підтримується"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Неможливо визначити тип необхідної системи пакування "
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/clean.cc:57
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Ð\9fакÑ\83нок %s - вÑ\96Ñ\80Ñ\82Ñ\83алÑ\8cний, його Ñ\84Ñ\83нкÑ\86Ñ\96Ñ\97 надаÑ\8eÑ\82Ñ\8cÑ\81Ñ\8f пакÑ\83нками:\n"
+msgid "Unable to stat %s."
+msgstr "Ð\9dеможливо пÑ\80оÑ\87иÑ\82аÑ\82и аÑ\82Ñ\80ибÑ\83Ñ\82и %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Встановлено]"
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "Ви повинні записати певні 'source' посилання в твій sources.list"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Ви повинні явно вказати, який саме ви хочете встановити."
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Не можу обробити чи відкрити перелік пакунків чи status файл."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "Можливо, для виправлення цих помилок Ви захочете запустити apt-get"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "Невірний запис в preferences файлі, відсутній заголовок Package"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "Не зрозумів тип %s для pin"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Однак наступні пакунки можуть його замінити:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Не встановлено пріоритету (або встановлено 0) для pin"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Кеш має несумісну систему призначення версій"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Ð\94лÑ\8f пакÑ\83нка %s не знайденÑ\96 кандидаÑ\82и на вÑ\81Ñ\82ановленнÑ\8f"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewPackage)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Ð\9fеÑ\80евÑ\81Ñ\82ановленнÑ\8f %s неможливе, бо вÑ\96н не може бÑ\83Ñ\82и заванÑ\82аженим.\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (UsePackage1)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "Ð\92же вÑ\81Ñ\82ановлена найновÑ\96Ñ\88а веÑ\80Ñ\81Ñ\96Ñ\8f %s.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (UsePackage2)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "РелÑ\96з '%s' длÑ\8f '%s' не знайдений"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Ð\92еÑ\80Ñ\81Ñ\96Ñ\8f '%s' длÑ\8f '%s' не знайдена"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (NewVersion1)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Ð\9eбÑ\80ана веÑ\80Ñ\81Ñ\96Ñ\8f %s (%s) длÑ\8f %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Ð\9fомилка, Ñ\8fка бÑ\83ла викликана внаÑ\81лÑ\96док обÑ\80обки %s (UsePackage3)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Команді update не потрібні аргументи"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Неможливо заблокувати теку з переліками пакунків"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"Деякі індексні файли не завантажилися, вони були зігноровані або замість них "
-"були використані старі версії."
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Ви перевищили кількість імен пакунків, які APT може обробити."
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Ви перевищили кількість версій, які APT може обробити."
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "НОВІ пакунки, які будуть встановлені:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Ви перевищили кількість версій, які APT може обробити."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Ви перевищили кількість залежностей які APT може обробити."
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Помилка, яка була викликана внаслідок обробки %s (FindPkg)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Наступна інформація можливо допоможе Вам:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "Помилка, яка була викликана внаслідок обробки %s (CollectFileProvides)"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Ð\92нÑ\83Ñ\82Ñ\80Ñ\96Ñ\88нÑ\8f помилка, виÑ\80Ñ\96Ñ\88Ñ\83ваÑ\87 пÑ\80облем вÑ\81е поламав"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Ð\9fакÑ\83нок %s %s не бÑ\83в знайдений пÑ\96д Ñ\87аÑ\81 обÑ\80обки залежноÑ\81Ñ\82ей Ñ\84айла"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Внутрішня помилка, AllUpgrade все поламав"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "Ð\9dе можÑ\83 знайÑ\82и пакÑ\83нок %s"
+#: apt-pkg/pkgcachegen.cc:763
+#, fuzzy
+msgid "Collecting File Provides"
+msgstr "Ð\97биÑ\80аннÑ\8f Ñ\96нÑ\84оÑ\80маÑ\86Ñ\96Ñ\97 пÑ\80о Ñ\84айлÑ\96в "
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "Не можу знайти пакунок %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Помилка IO під час збереження джерельного кешу"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "Ð\9fомÑ\96Ñ\82Ñ\8cÑ\82е, Ñ\80егÑ\83лÑ\8fÑ\80ний виÑ\80аз %2$s пÑ\80изводиÑ\82Ñ\8c до вибоÑ\80Ñ\83 %1$s\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "Ð\9dе вдалоÑ\81Ñ\8f пеÑ\80ейменÑ\83ваÑ\82и, %s (%s -> %s)."
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "але %s буде встановлений"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "Невідповідність MD5Sum"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr ""
-"Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f "
-"install':"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "Невідповідність MD5Sum"
-#: cmdline/apt-get.cc:1730
-msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не "
-"вказуючи імені пакунка (або знайдіть інше рішення)."
+#: apt-pkg/acquire-item.cc:1100
+#, fuzzy
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Відсутній публічний ключ для заданих ID ключа:\n"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
msgstr ""
-"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n"
-"або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n"
-"ще не створені або були вилучені з Incoming."
+"Я не можу знайти файл для пакунку %s. Можливо, Ви захочете власноруч "
+"виправити цей пакунок. (due to missing arch)"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"Так як Ви просили виконати тільки одну операцію, те найімовірніше, що\n"
-"пакунок просто не може бути встановлений через помилки в самому пакунку.\n"
-"Необхідно відіслати звіт про цю помилку."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Зламані пакунки"
-
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "Будуть встановлені наступні додаткові пакунки:"
-
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "Пропоновані пакунки:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Рекомендовані пакунки:"
-
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Обчислення оновлень... "
-
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Виконано"
-
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Внутрішня помилка, вирішувач проблем все поламав"
-
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Ð\92кажÑ\96Ñ\82Ñ\8c Ñ\8fк мÑ\96нÑ\96мÑ\83м один пакÑ\83нок, длÑ\8f Ñ\8fкого необÑ\85Ñ\96дно заванÑ\82ажиÑ\82и виÑ\85Ñ\96днÑ\96 "
-"тексти"
+"Я не можÑ\83 знайÑ\82и Ñ\84айл длÑ\8f пакÑ\83нкÑ\83 %s. Ð\9cожливо, Ð\92и заÑ\85оÑ\87еÑ\82е влаÑ\81ноÑ\80Ñ\83Ñ\87 "
+"виправити цей пакунок."
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/acquire-item.cc:1313
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Неможливо знайти пакунок з вихідними текстами для %s"
+msgid ""
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr ""
+"Індексні файли пакунків пошкоджені. Немає поля Filename для пакунку %s."
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Пропускаємо вже завантажений файл '%s'\n"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Невідповідність розміру"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/vendorlist.cc:66
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Ð\9dедоÑ\81Ñ\82аÑ\82нÑ\8cо мÑ\96Ñ\81Ñ\86Ñ\8f в %s"
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Ð\91лок поÑ\81Ñ\82аÑ\87алÑ\8cника %s не мÑ\96Ñ\81Ñ\82иÑ\82Ñ\8c вÑ\96дбиÑ\82кÑ\83 (fingerprint)"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:529
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n"
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Використовується точка монтування CDROM: %s\n"
+"Монтування CD-ROM\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Ідентифікація.. "
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Fetch source %s\n"
-msgstr "Ð\97аванÑ\82аженнÑ\8f виÑ\85Ñ\96дниÑ\85 Ñ\82екÑ\81Ñ\82Ñ\96в %s\n"
+msgid "Stored label: %s\n"
+msgstr "Ð\97апиÑ\81ано мÑ\96Ñ\82кÑ\83: %s \n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Деякі архіви не вдалося завантажити."
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "Демонтується CD-ROM..."
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr ""
-"Розпакування вихідних текстів пропущено, тому що в %s вже перебувають "
-"розпаковані вихідні тексти\n"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Використовується точка монтування CDROM: %s\n"
-#: cmdline/apt-get.cc:2276
-#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Команда розпакування '%s' завершилася невдало.\n"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Демонтується CD-ROM\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Чекаю на диск...\n"
-#: cmdline/apt-get.cc:2294
-#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Ð\9aоманда побÑ\83дови '%s' закÑ\96нÑ\87илаÑ\81Ñ\8f невдало.\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Ð\9cонÑ\82Ñ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f CD-ROM...\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Ð\9fоÑ\80оджений пÑ\80оÑ\86еÑ\81 завеÑ\80Ñ\88ивÑ\81Ñ\8f невдало"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Ð\94иÑ\81к Ñ\81канÑ\83Ñ\94Ñ\82Ñ\8cÑ\81Ñ\8f на Ñ\96ндекÑ\81нÑ\96 Ñ\84айли..\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr ""
-"Для перевірки залежностей для побудови необхідно вказати як мінімум один "
-"пакунок"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
-#: cmdline/apt-get.cc:2357
-#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "Ð\9dеможливо одеÑ\80жаÑ\82и Ñ\96нÑ\84оÑ\80маÑ\86Ñ\96Ñ\8e пÑ\80о залежноÑ\81Ñ\82Ñ\96 длÑ\8f побÑ\83дови %s"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "Ð\97апиÑ\81ано мÑ\96Ñ\82кÑ\83: %s \n"
-#: cmdline/apt-get.cc:2377
-#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s не має залежностей для побудови.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Не є вірною назвою, спробуйте ще.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/cdrom.cc:760
#, c-format
msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
+"This disc is called: \n"
+"'%s'\n"
msgstr ""
-"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено"
+"Цей диск зветься: \n"
+"'%s'\n"
+
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Копіюються переліки пакунків..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Записується новий перелік джерел\n"
+
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Перелік джерел для цього диску:\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"Залежність типу %s для %s не може бути задоволена, бо ні одна з версій "
-"пакунка %s не задовольняє умови"
+msgid "Wrote %i records.\n"
+msgstr "Записано %i записів.\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений "
-"пакунок %s новіше, аніж треба"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Записано %i записів з %i відсутніми файлами.\n"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "Ð\9dеможливо задоволÑ\8cниÑ\82и залежнÑ\96Ñ\81Ñ\82Ñ\8c Ñ\82ипÑ\83 %s длÑ\8f пакÑ\83нка %s: %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Ð\97апиÑ\81ано %i запиÑ\81Ñ\96в з %i невÑ\96дповÑ\96дними Ñ\84айлам\n"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "Ð\97алежноÑ\81Ñ\82Ñ\96 длÑ\8f побÑ\83дови %s не можÑ\83Ñ\82Ñ\8c бÑ\83Ñ\82и задоволенÑ\96."
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "Ð\97апиÑ\81ано %i запиÑ\81Ñ\96в з %i вÑ\96дÑ\81Ñ\83Ñ\82нÑ\96ми Ñ\96 %i невÑ\96дповÑ\96дними Ñ\84айлами\n"
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "Обробка залежностей для побудови закінчилася невдало"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "Lists тека %spartial відсутня."
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "Підтримувані модулі:"
+#: apt-pkg/deb/dpkgpm.cc:596
+#, c-format
+msgid "Preparing %s"
+msgstr "Підготовка %s"
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Використання: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get - простий інтерфейс командного рядка для завантаження й\n"
-"встановлення пакунків. Найбільш часто використовувані команди - update \n"
-"і install.\n"
-"\n"
-"Команди:\n"
-" update - завантажити нові переліки пакунків\n"
-" upgrade - виконати оновлення пакунків\n"
-" install - встановити нові пакунки (назва пакунка вказується\n"
-" як libc6, а не libc6.deb)\n"
-" remove - видалити пакунок\n"
-" source - завантажити архіви з вихідними текстами\n"
-" build-dep - завантажити все необхідне для побудови зазначеного\n"
-" пакунку з вихідних текстів\n"
-" dist-upgrade - оновити всю систему, докладніше - в apt-get(8)\n"
-" dselect-upgrade - керуватися вибором, зробленим в dselect'і\n"
-" clean - видалити завантажені архіви\n"
-" autoclean - видалити старі завантажені архіви\n"
-" check - перевірити наявність порушених залежностей\n"
-"\n"
-"Опції:\n"
-" -h Цей текст.\n"
-" -q Виводити повідомлення, придатні для запису у файл журналу.\n"
-" Не виводити індикатор прогресу\n"
-" -qq Виводити тільки повідомлення про помилки\n"
-" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n"
-" -s Не виконувати дії насправді. Імітація роботи\n"
-" -y Відповідати \"Так\" на всі питання. Самі питання при цьому не "
-"виводяться\n"
-" -f Продовжувати, навіть якщо перевірка цілісності не пройшла\n"
-" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n"
-" -u Показувати список оновлюваних пакунків\n"
-" -b Компілювати пакунок з вихідних текстів після їхнього завантаження\n"
-" -V Показувати версії пакунків\n"
-" -c=? Читати зазначений файл конфігурації\n"
-" -o=? Встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
-"Сторінки керівництва apt-get(8), sources.list(5) і apt.conf(5)\n"
-"містять більше інформації.\n"
-" This APT has Super Cow Powers.\n"
+#: apt-pkg/deb/dpkgpm.cc:597
+#, c-format
+msgid "Unpacking %s"
+msgstr "Розпакування %s"
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "В кеші "
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Підготовка до конфігурації %s"
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Отр:"
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Конфігурація %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Ігн "
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "Помилка обробки течи %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Пом "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Встановлено %s"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Ð\9eÑ\82Ñ\80имано %sB за %sB (%sB/s)\n"
+msgid "Preparing for removal of %s"
+msgstr "Ð\9fÑ\96дгоÑ\82овка до видаленнÑ\8f %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid " [Working]"
-msgstr " [Йде робота]"
+msgid "Removing %s"
+msgstr "Видаляється %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid ""
-"Media change: please insert the disc labeled\n"
-" '%s'\n"
-"in the drive '%s' and press enter\n"
-msgstr ""
-"Зміна носія: вставте диск з міткою '%s' у пристрій '%s' і натисніть Ввід\n"
+msgid "Removed %s"
+msgstr "Видалено %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Запис про невідомий пакунок!"
+#: apt-pkg/deb/dpkgpm.cc:624
+#, c-format
+msgid "Preparing to completely remove %s"
+msgstr "Підготовка до повного видалення %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Повністю видалено %s"
+
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"Використання: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs - простий інструмент для сортування переліків пакунків. Опція -"
-"s\n"
-"використається, щоб вказати тип списку.\n"
-"\n"
-"Опції:\n"
-" -h цей текст\n"
-" -s сортувати список файлів з вихідними текстами\n"
-" -c=? читати зазначений файл конфігурації\n"
-" -o=? встановити довільну опцію, наприклад, -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Ð\9dепÑ\80авилÑ\8cне знаÑ\87еннÑ\8f по замовÑ\87Ñ\83ваннÑ\8e!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Ð\9dеможливо наклаÑ\81Ñ\82и лаÑ\82кÑ\83 на Ñ\84айл"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Для продовження натисніть Ввід."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "З'єднання завершено передчасно"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr ""
-"Під час розпакування виникли помилки. Буде продовжено процес налаштування"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Лінія %d занадто довга (максимум %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "встановлених пакунків. Це може призвести до повторення помилок або"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "виникненню нових через незадоволені залежності. Це нормально,"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"важливі тільки помилки, зазначені вище. Виправте їх і виконаєте установку ще "
-"раз"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Записано мітку: %s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Об'єднання інформації про доступні пакунки"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n"
#, fuzzy
#~ msgid "openpty failed\n"
# Vietnamese Translation for Apt.
# This file is put in the public domain.
# Clytie Siddall <clytie@riverland.net.au>, 2005, 2006, 2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
-"PO-Revision-Date: 2007-09-03 16:36+0930\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
+"PO-Revision-Date: 2007-12-01 15:37+1030\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LocFactoryEditor 1.7b1\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"Hãy sử dụng lệnh « apt-cdrom » để làm cho APT chấp nhận đĩa CD này. Không "
-"thể sử dụng lệnh « apt-get update » (lấy cập nhật) để thêm đĩa CD mới."
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "CD không đúng"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "Gói %s phiên bản %s phụ thuộc vào phần mềm chưa có :\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "Không thể tháo gắn kết đĩa CD-ROM trong %s. Có lẽ nó còn dùng."
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "Không tìm thấy đĩa"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "Không tìm thấy tập tin"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "Việc lấy các thông tin bị lỗi"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "Việc lập giờ sửa đổi bị lỗi"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "Địa chỉ Mạng (URI) không hợp lệ: URI không thể bắt đầu với « // »"
+msgid "Unable to locate package %s"
+msgstr "Không thể định vị gói %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "Đang đăng nhập..."
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "Tổng số tên gói: "
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "Không thể quyết định tên ngang hàng"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " Gói chuẩn: "
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "Không thể quyết định tên cục bộ"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " Gói ảo nguyên chất: "
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "Máy phục vụ đã từ chối kết nối, và nói: %s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " Gói ảo đơn: "
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "Lệnh USER (người dùng) đã thất bại: máy phục vụ nói: %s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " Gói ảo hỗn hợp: "
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy phục vụ nói: %s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " Thiếu : "
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. « "
-"Acquire::ftp::ProxyLogin » là rỗng."
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "Tổng phiên bản riêng: "
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "Lệnh tập lệnh đăng nhập « %s » đã thất bại: máy phục vụ nói: %s"
+#: cmdline/apt-cache.cc:295
+msgid "Total Distinct Descriptions: "
+msgstr "Tổng mô tả riêng: "
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "Lệnh TYPE (kiểu) đã thất bại: máy phục vụ nói: %s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "Tổng đồ phụ thuộc: "
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "Thời hạn kết nối"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "Tổng liên quan phiên bản và tập tin: "
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "Máy phục vụ đã đóng kết nối"
+#: cmdline/apt-cache.cc:302
+msgid "Total Desc/File relations: "
+msgstr "Tổng liên quan mô tả/tập tin: "
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "Lỗi đọc"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "Tổng ảnh xạ Miễn là: "
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "Một trả lời đã tràn bộ đệm."
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: "
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "Giao thức bị hỏng"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "Tổng chỗ phiên bản phụ thuộc: "
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "Lỗi ghi"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Tổng chỗ nghỉ: "
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "Không thể tạo ổ cắm"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "Tổng chỗ đã tính: "
-#: methods/ftp.cc:698
-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ờ"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "Tập tin gói %s không đồng bộ được."
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "Bá»\8b lá»\97i"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "Bạn phải Ä\91ưa ra Ä\91úng má»\99t mẫu"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "Không thể kết nối ổ cắm bị động."
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "Không tìm thấy gói"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "Tập tin gói:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "Không thể đóng kết ổ cắm"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+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"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "Không thể lắng nghe trên ổ cắm đó"
+# Variable: do not translate/ biến: đừng dịch
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "Không thể quyết định tên ổ cắm đó"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "Các gói đã ghim:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "Không thể gởi lệnh PORT (cổng)"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(không tìm thấy)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "Không biết nhóm địa chỉ %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " Đã cài đặt: "
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy phục vụ nói: %s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(không có)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Kết nối ổ cắm dữ liệu đã quá giờ"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " Ứng cử: "
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "Không thể chấp nhận kết nối"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " Ghim gói: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "Gặp khó khăn băm tập tin"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " Bảng phiên bản:"
-#: methods/ftp.cc:877
+# Variable: do not translate/ biến: đừng dịch
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "Không thể lấy tập tin: máy phục vụ nói « %s »"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Ổ cắm dữ liệu đã quá giờ"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói « %s »"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s cho %s được biên dịch vào %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "Truy vấn"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "Không thể gọi "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "Đang kết nối đến %s (%s)..."
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"Cách sử dụng: apt-cache [tùy_chọn...] lệnh\n"
+" apt-cache [tùy_chọn...] add tập_tin1 [tập_tin2 ...]\n"
+" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n"
+" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n"
+"(cache: \tbộ nhớ tạm;\n"
+"add: \tthêm;\n"
+"showpkg: hiển thị gói;\n"
+"showsrc: \thiển thị nguồn)\n"
+"\n"
+"apt-cache là một công cụ mức thấp dùng để thao tác\n"
+"những tập tin bộ nhớ tạm nhị phân của APT,\n"
+"và cũng để truy vấn thông tin từ những tập tin đó.\n"
+"\n"
+"Lệnh:\n"
+" add\t\t_Thêm_ gói vào bộ nhớ tạm nguồn\n"
+" gencaches\tXây dung (_tạo ra_) cả gói lẫn _bộ nhớ tạm_ nguồn đều\n"
+" showpkg\t_Hiện_ một phần thông tin chung về một _gói_ riêng lẻ\n"
+" showsrc\t_Hiện_ các mục ghi _nguồn_\n"
+" stats\t\tHiện một phần _thống kê_ cơ bản\n"
+" dump\t\tHiện toàn bộ tập tin dạng ngắn (_đổ_)\n"
+" dumpavail\tIn ra một tập tin _sẵn sàng_ vào thiết bị xuất chuẩn (_đổ_)\n"
+" unmet\t\tHiện các cách phụ thuộc _chưa thực hiện_\n"
+" search\t\t_Tìm kiếm_ mẫu biểu thức chính quy trong danh sách gói\n"
+" show\t\t_Hiệnị_ mục ghi có thể đọc, cho những gói đó\n"
+" depends\tHiện thông tin cách _phụ thuộc_ thô cho gói\n"
+" rdepends\tHiện thông tin cách _phụ thuộc ngược lại_, cho gói\n"
+" pkgnames\tHiện danh sách _tên_ mọi _gói_\n"
+" dotty\t\tTạo ra đồ thị gói cho GraphVis (_nhiều chấm_)\n"
+" xvcg\t\tTạo ra đồ thị gói cho _xvcg_\n"
+" policy\t\tHiển thị các thiết lập _chính thức_\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t\t_Trợ giúp_ này\n"
+" -p=? \t\tBộ nhớ tạm _gói_.\n"
+" -s=? \t\tBộ nhớ tạm _nguồn_.\n"
+" -q \t\tTắt cái chỉ tiến trình (_im_).\n"
+" -i \t\tHiện chỉ những cách phụ thuộc _quan trọng_\n"
+"\t\t\tcho lệnh chưa thực hiện.\n"
+" -c=? \t\tĐọc tập tin _cấu hình_ này\n"
+" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
+"Để tìm thông tin thêm thì bạn hãy xem hai trang « man » (hướng dẫn)\n"
+"\t\t\tapt-cache(8) và apt.conf(5).\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[Địa chỉ IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "Hãy cung cấp tên cho Đĩa này, như « Debian 2.1r1 Đĩa 1 »"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "Không thể tạo ổ cắm cho %s (f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "Hãy nạp đĩa vào ổ và bấm nút Enter"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "Không thể sở khởi kết nối đến %s:%s (%s)."
+#: cmdline/apt-cdrom.cc:117
+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."
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "Không thể kết nối đến %s:%s (%s), kết nối đã quá giờ"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "Không có các đối số dạng cặp"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "Không thể kết nối đến %s:%s (%s)."
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Cách sử dụng: apt-config [tùy_chọn...] lệnh\n"
+"\n"
+"[config: viết tắt cho từ configuration: cấu hình]\n"
+"\n"
+"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n"
+"\n"
+"Lệnh:\n"
+" shell\t\tChế độ _hệ vỏ_\n"
+" dump\t\tHiển thị cấu hình (_đổ_)\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t\t_Trợ giúp_ này\n"
+" -c=? \t\tĐọc tập tin cấu hình này\n"
+" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "Đang kết nối đến %s..."
+msgid "%s not a valid DEB package."
+msgstr "%s không phải là một gói DEB hợp lệ."
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "Không thể tháo gỡ « %s »"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Cách sử dụng: apt-extracttemplates tập_tin1 [tập_tin2 ...]\n"
+"\n"
+"[extract: \t\trút;\n"
+"templates: \tnhững biểu mẫu]\n"
+"\n"
+"apt-extracttemplates là một công cụ rút thông tin kiểu cấu hình\n"
+"\tvà biểu mẫu đều từ gói Debian\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t\t_Trợ giúp_ này\n"
+" -t \t\tLập thư muc tạm thời\n"
+"\t\t[temp, tmp: viết tắt cho từ « temporary »: tạm thời]\n"
+" -c=? \t\tĐọc tập tin cấu hình này\n"
+" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "Việc tháo gỡ « %s » bị lỗi tạm thời"
+msgid "Unable to write to %s"
+msgstr "Không thể ghi vào %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ « %s:%s » (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "Không thể lấy phiên bản debconf. Debconf có được cài đặt chưa?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "Không thể kết nối đến %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "Danh sách mở rộng gói quá dài"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "Không thể truy cập vòng khoá « %s »"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "E: Danh sách lệnh từ « Acquire::gpgv::Options » quá dài nên thoát."
+msgid "Error processing directory %s"
+msgstr "Gặp lỗi khi xử lý thư mục %s"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "Lỗi nội bộ: chữ ký đúng, nhưng không thể quyết định vân tay khóa ?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "Danh sách mở rộng nguồn quá dài"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "Gặp ít nhất một chữ ký không hợp lệ."
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "Gặp lỗi khi ghi phần đầu vào tập tin nộị dung"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr ""
-"Không thể thực hiện « %s » để kiểm chứng chữ ký (gnupg có được cài đặt chưa?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "Gặp lỗi lạ khi thực hiện gpgv"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "Những chữ ký theo đây là không hợp lệ:\n"
+msgid "Error processing contents %s"
+msgstr "Gặp lỗi khi xử lý nội dung %s"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr ""
-"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn sàng:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "Việc lấy thông tin toàn bộ cho %s bị lỗi"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "Không thể mở ống dẫn cho %s"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "Gặp lỗi đọc từ tiến trình %s"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"Cách sử dụng: apt-ftparchive [tùy_chọn...] lệnh\n"
+"\n"
+"[ftparchive: FTP archive: kho FTP]\n"
+"\n"
+"Lệnh: \tpackages binarypath [tập_tin_đè [tiền_tố_đường_dẫn]]\n"
+" \tsources srcpath [tập_tin_đè[tiền_tố_đường_dẫn]]\n"
+" \tcontents path\n"
+" \trelease path\n"
+" \tgenerate config [groups]\n"
+" \tclean config\n"
+"\n"
+"[packages: \tnhững gói;\n"
+"binarypath: \tđường dẫn nhị phân;\n"
+"sources: \t\tnhững nguồn;\n"
+"srcpath: \t\tđường dẫn nguồn;\n"
+"contents path: đường dẫn nội dụng;\n"
+"release path: \tđường dẫn bản đã phát hành;\n"
+"generate config [groups]: tạo ra cấu hình [nhóm];\n"
+"clean config: \tcấu hình toàn mới)\n"
+"\n"
+"apt-ftparchive (kho ftp) thì tạo ra tập tin chỉ mục cho kho Debian.\n"
+"Nó hỗ trợ nhiều cách tạo ra, từ cách tự động toàn bộ\n"
+"đến cách thay thế điều hoặt động cho dpkg-scanpackages (dpkg-quét_gói)\n"
+"và dpkg-scansources (dpkg-quét_nguồn).\n"
+"\n"
+"apt-ftparchive tạo ra tập tin Gói ra cây các .deb.\n"
+"Tập tin gói chứa nội dung các trường điều khiển từ mỗi gói,\n"
+"cùng với băm MD5 và kích cỡ tập tin.\n"
+"Hỗ trợ tập tin đè để buộc giá trị Ưu tiên và Phần\n"
+"\n"
+"Tương tự, apt-ftparchive tạo ra tập tin Nguồn ra cây các .dsc\n"
+"Có thể sử dụng tùy chọn « --source-override » (đè nguồn)\n"
+"để ghi rõ tập tin đè nguồn\n"
+"\n"
+"Lnh « packages » (gói) và « sources » (nguồn) nên chạy tại gốc cây.\n"
+"BinaryPath (đường dẫn nhị phân) nên chỉ tới cơ bản của việc tìm kiếm đệ "
+"quy,\n"
+"và tập tin đè nên chứa những cờ đè.\n"
+"Pathprefix (tiền tố đường dẫn) được phụ thêm vào\n"
+"những trường tên tập tin nếu có.\n"
+"Cách sử dụng thí dụ từ kho Debian:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t\t_Trợ giúp_ này\n"
+" --md5 \t\tĐiều khiển cách tạo ra MD5\n"
+" -s=? \t\tTập tin đè nguồn\n"
+" -q \t\t_Im_ (không xuất chi tiết)\n"
+" -d=? \t\tChọn _cơ sở dữ liệu_ nhớ tạm tùy chọn\n"
+" --no-delink \tMở chế độ gỡ lỗi _bỏ liên kết_\n"
+" --contents \tĐiều khiển cách tạo ra tập tin _nội dung_\n"
+" -c=? \t\tĐọc tập tin cấu hình này\n"
+" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "Đang đợi những phần đầu..."
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "Không có điều đã chọn khớp được"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:832
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "Đã lấy một dòng đầu riêng lẻ chứa hơn %u ky tự"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "Dòng đầu sai"
+msgid "Some files are missing in the package file group `%s'"
+msgstr "Thiếu một số tập tin trong nhóm tập tin gói « %s »."
-#: methods/http.cc:550 methods/http.cc:557
-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ệ"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "Cơ sở dữ liệu bị hỏng nên đã đổi tên tâp tin thành %s.old (old: cũ)."
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr ""
-"Máy phục vụ HTTP đã gởi một dòng đầu Content-Length (độ dài nội dụng) không "
-"hợp lệ"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "Cơ sở dữ liệu cũ nên đang cố nâng cấp lên %s"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
msgstr ""
-"Máy phục vụ HTTP đã gởi một dòng đầu Content-Range (phạm vị nội dụng) không "
-"hợp lệ"
-
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "Máy phục vụ HTTP đã ngắt cách hỗ trợ phạm vị"
-
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "Không biết dạng ngày"
-
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Việc chọn bị lỗi"
-
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "Kết nối đã quá giờ"
+"Dạng thức co sở dữ liệu không hợp lệ. Nếu bạn đã nâng cấp từ một phiên bản "
+"apt cũ, hãy gỡ bỏ rồi tạo lại co sở dữ liệu này."
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "Gặp lỗi khi ghi vào tập tin xuất"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "Không thể mở tập tin cơ sở dữ liệu %s: %s."
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "Gặp lỗi khi ghi vào tập tin"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "Việc lấy thông tin toàn bộ cho %s bị lỗi"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "Gặp lỗi khi ghi vào tập tin đó"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "Kho không có mục ghi điều khiển"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "Gặp lỗi khi đọc từ máy phục vụ : cuối ở xa đã đóng kết nối"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "Không thể lấy con chạy"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "Gặp lỗi khi đọc từ máy phục vụ"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W: Không thể đọc thư mục %s\n"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "Dữ liệu dòng đầu sai"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W: Không thể lấy thông tin toàn bộ cho %s\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "Kết nối bị ngắt"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "E: "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "Gặp lỗi nội bộ"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "W: "
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "Không thể mmap (ảnh xạ bộ nhớ) tâp tin rỗng"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E: có lỗi áp dụng vào tập tin "
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "Không thể tạo mmap (ảnh xạ bộ nhớ) kích cỡ %lu byte"
+msgid "Failed to resolve %s"
+msgstr "Việc quyết định %s bị lỗi"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "Không tìm thấy vùng chọn %s"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "Việc di chuyển qua cây bị lỗi"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "Không nhận biết viết tắt kiểu: « %c »"
+msgid "Failed to open %s"
+msgstr "Việc mở %s bị lỗi"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "Đang mở tập tin cấu hình %s..."
+msgid " DeLink %s [%s]\n"
+msgstr " Bỏ liên kết %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:510
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Line %d too long (max %u)"
-msgstr "Dòng %d quá dài (tối đa %u)"
+msgid "Failed to readlink %s"
+msgstr "Việc tạo liên kết lại %s bị lỗi"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:266
#, 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."
+msgid "Failed to unlink %s"
+msgstr "Việc bỏ liên kết %s bị lỗi"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "Gặp lỗi cú pháp %s:%u: thẻ dạng sai"
+msgid "*** Failed to link %s to %s"
+msgstr "*** Việc liên kết %s đến %s bị lỗi"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "Gặp lỗi cú pháp %s:%u: có rác thêm sau giá trị"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " Hết hạn bỏ liên kết của %sB.\n"
-#: apt-pkg/contrib/configuration.cc:682
-#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "Gặp lỗi cú pháp %s:%u: có thể thực hiện chỉ thị chỉ tại mức đầu"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "Kho không có trường gói"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "Gặp lỗi cú pháp %s:%u: quá nhiều điều bao gồm lồng nhau"
+msgid " %s has no override entry\n"
+msgstr " %s không có mục ghi đè\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "Gặp lỗi cú pháp %s:%u: đã bao gồm từ đây"
+msgid " %s maintainer is %s not %s\n"
+msgstr " người bảo quản %s là %s không phải %s\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:620
#, 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 »"
+msgid " %s has no source override entry\n"
+msgstr " %s không có mục ghi đè nguồn\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "Gặp lỗi cú pháp %s:%u: rác thêm tại kết thúc tập tin"
+msgid " %s has no binary override entry either\n"
+msgstr " %s cũng không có mục ghi đè nhị phân\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Unable to read %s"
-msgstr "Không thể đọc %s"
+msgid "Internal error, could not locate member %s"
+msgstr "Gặp lỗi nội bộ, không thể định vị bộ phạn %s"
-#: apt-pkg/contrib/progress.cc:153
-#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... Lỗi."
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc (cấp phát lại) - việc cấp phát bộ nhớ bị lỗi"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... Xong"
+msgid "Unable to open %s"
+msgstr "Không thể mở %s"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "Không biết tùy chọn dòng lệnh « %c » [từ %s]."
+msgid "Malformed override %s line %lu #1"
+msgstr "Điều đè dạng sai %s dòng %lu #1"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "Không hiểu tùy chọn dòng lệnh %s"
+msgid "Malformed override %s line %lu #2"
+msgstr "Điều đè dạng sai %s dòng %lu #2"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "Tùy chọn dòng lệnh %s không phải bun (đúng/không đúng)"
+msgid "Malformed override %s line %lu #3"
+msgstr "Điều đè dạng sai %s dòng %lu #3"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s requires an argument."
-msgstr "Tùy chọn %s cần đến một đối số."
+msgid "Failed to read the override file %s"
+msgstr "Việc đọc tập tin đè %s bị lỗi"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:72
#, 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ị> »."
+msgid "Unknown compression algorithm '%s'"
+msgstr "Không biết thuật toán nén « %s »"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "Tùy chọn %s cần đến một đối số số nguyên, không phải « %s »"
+msgid "Compressed output %s needs a compression set"
+msgstr "Dữ liệu xuất đã nén %s cần một bộ nén"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "Tùy chọn « %s » quá dài"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "Việc tạo ống IPC đến tiến trình con bị lỗi"
-#: apt-pkg/contrib/cmndline.cc:298
-#, 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 (không đúng)."
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "Việc tạo TẬP_TIN* bị lỗi"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "Thao tác không hợp lệ %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "Việc tạo tiến trình con bị lỗi"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "Không thể lấy các thông tin cho điểm gắn kết %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "Nén điều con"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "Không thể chuyển đổi sang %s"
+msgid "Internal error, failed to create %s"
+msgstr "Lỗi nội bộ, việc tạo %s bị lỗi"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "Việc lấy cac thông tin cho đĩa CD-ROM bị lỗi"
+#: ftparchive/multicompress.cc:286
+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:82
-#, 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"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "Việc thực hiện bô nén bị lỗi "
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "Không thể mở tập tin khóa %s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "bộ giải nén"
-#: apt-pkg/contrib/fileutl.cc:105
-#, 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"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "việc nhập/xuất vào tiến trình con/tập tin bị lỗi"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "Không thể lấy khóa %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "Việc đọc khi tính MD5 bị lỗi"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "Đã đợi %s nhưng mà chưa gặp nó"
+msgid "Problem unlinking %s"
+msgstr "Gặp lỗi khi bỏ liên kết %s"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "Tiến trình con %s đã nhận một lỗi chia ra từng đoạn."
+msgid "Failed to rename %s to %s"
+msgstr "Việc đổi tên %s thành %s bị lỗi"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "Tiến trình con %s đã trả lời mã lỗi (%u)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "C"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "Tiến trình con %s đã thoát bất ngờ"
+msgid "Regex compilation error - %s"
+msgstr "Lỗi biên dich biểu thức chính quy - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "Không thể mở tập tin %s"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "Những gói theo đây phụ thuộc vào phần mềm chưa có :"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "đọc, còn cần đọc %lu nhưng mà không có điều còn lại"
+msgid "but %s is installed"
+msgstr "nhưng mà %s đã được cài đặt"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "ghi, còn cần ghi %lu nhưng mà không thể"
+msgid "but %s is to be installed"
+msgstr "nhưng mà %s sẽ được cài đặt"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "Gặp lỗi khi đóng tập tin đó"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "nhưng mà nó không có khả năng cài đặt"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "Gặp lỗi khi bỏ liên kết tập tin đó"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "nhưng mà nó là gói ảo"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "Gặp lỗi khi đồng bộ hóa tập tin đó"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "nhưng mà nó chưa được cài đặt"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "Bộ nhớ tạm gói rỗng"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "nhưng mà nó sẽ không được cài đặt"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "Tập tin bộ nhớ tạm gói bị hỏng"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " hay"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "Tập tin bộ nhớ tạm gói là một phiên bản không tương thích"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "Theo đây có những gói MỚI sẽ được cài đặt:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản « %s »"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "Theo đây có những gói sẽ bị GỠ BỎ :"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "Bộ nhớ tạm gói được xây dụng cho kiến trức khác"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "Theo đây có những gói đã được giữ lại:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "Phụ thuộc"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "Theo đây có những gói sẽ được nâng cấp:"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "Phụ thuộc trước"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "Theo đây có những gói sẽ được HẠ CẤP:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "Đệ nghị"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "Theo đây có những gói sẽ được thay đổi:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "Khuyên"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (do %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "Xung đột"
+#: cmdline/apt-get.cc:550
+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 : theo đây có những gói chủ yếu sẽ bị gỡ bỏ.\n"
+"ĐỪNG làm như thế trừ khi bạn biết làm gì ở đây nó một cách chính xác."
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "Thay thế"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "%lu đã nâng cấp, %lu mới được cài đặt, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "Làm cũ"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "%lu được cài đặt lại, "
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr "Làm hư"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "%lu được hạ cấp, "
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "quan trọng"
+#: cmdline/apt-get.cc:589
+#, 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-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "cần"
+#: cmdline/apt-get.cc:593
+#, 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"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "chuẩn"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "Đang sửa cách phụ thuộc..."
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "tùy chọn"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " đã thất bại."
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "thêm"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "Không thể sửa cách phụ thuộc"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "Đang xây dụng cây cách phụ thuộc..."
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "Không thể cực tiểu hóa bộ nâng cấp"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "Phiên bản ứng cử"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " Đã xong"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "Tạo ra cách phụ thuộc"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "Có lẽ bạn hãy chay lệnh « apt-get -f install » để sửa hết."
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-msgid "Reading state information"
-msgstr "Đang đọc thông tin tình trạng"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr ""
+"Còn có cách phụ thuộc vào phần mềm chưa có. Như thế thì bạn hãy cố dùng tùy "
+"chọn « -f »."
-#: apt-pkg/depcache.cc:219
-#, c-format
-msgid "Failed to open StateFile %s"
-msgstr "Lỗi mở tập tin tình trạng StateFile %s"
+#: cmdline/apt-get.cc:707
+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-pkg/depcache.cc:225
-#, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "Lỗi ghi tập tin tình trạng StateFile tạm thời %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "Cảnh báo xác thực bị đè.\n"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "Không thể phân tách tập tin gói %s (1)"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "Cài đặt những gói này mà không kiểm chứng không? [y/N] [c/K] "
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "Không thể phân tách tập tin gói %s (2)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "Một số gói không thể được xác thực"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s (địa chỉ Mạng)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "Gập lỗi và đã dùng tùy chọn « -y » mà không có « --force-yes »"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s (bản phân phối)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng."
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr ""
-"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách địa chỉ Mạng)."
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "Cần phải gỡ bỏ một số gói, nhưng mà khả năng Gỡ bỏ (Remove) đã bị tắt."
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr ""
-"Gặp dòng dạng sai %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "Gặp lỗi nội bộ: tiến trình Sắp xếp chưa xong"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "Không thể khóa thư mục tải về"
+
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "Không thể đọc danh sách nguồn."
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
msgstr ""
-"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)"
+"Lạ... Hai kích cỡ không khớp được. Hãy gởi thư cho <apt@packages.debian.org>"
-#: apt-pkg/sourcelist.cc:199
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Opening %s"
-msgstr "Đang mở %s..."
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "Cần phải lấy %sB/%sB kho.\n"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "Dòng %u quá dài trong danh sách nguồn %s."
+msgid "Need to get %sB of archives.\n"
+msgstr "Cần phải lấy %sB kho.\n"
-#: apt-pkg/sourcelist.cc:236
-#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)."
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "Sau khi đã giải nén, sẻ chiếm %sB sức chứa đĩa thêm.\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "Sau khi đã giải nén, sẽ giải phóng %sB sức chữa đĩa thêm.\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "Không biết kiểu « %s » trên dòng %u trong danh sách nguồn %s."
+msgid "Couldn't determine free space in %s"
+msgstr "Không thể quyết định chỗ rảnh trong %s"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (mã nhận biết nhà bán)"
+msgid "You don't have enough free space in %s."
+msgstr "Bạn chưa có đủ sức chức còn rảnh trong %s."
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr ""
+"Xác đinh « Chỉ không đáng kể » (Trivial Only) nhưng mà thao tác này đáng kể."
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Có, làm đi."
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do "
-"vong lăp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu "
-"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn « APT::Force-LoopBreak "
-"» (buộc ngắt vòng lặp)."
+"Bạn sắp làm gì có thể có hai.\n"
+"Để tiếp tục thì hãy gõ cụm từ « %s »\n"
+"?]"
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "Không hỗ trợ kiểu tập tin chỉ mục « %s »"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "Hủy bỏ."
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "Bạn có muốn tiếp tục không? [Y/n] [C/k] "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó."
+msgid "Failed to fetch %s %s\n"
+msgstr "Việc gói %s bị lỗi %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "Một số tập tin không tải về được"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "Mới tải về xong và trong chế độ chỉ tải về"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
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."
+"Không thể lấy một số kho, có lẽ hãy chạy lệnh « apt-get update » (apt lấy cập "
+"nhật) hay cố với « --fix-missing » (sửa các điều còn thiếu) không?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "Không thể sửa vấn đề, bạn đã giữ lại một số gói bị ngắt."
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr ""
+"Chưa hô trợ tùy chọn « --fix-missing » (sửa khi thiếu điều) và trao đổi "
+"phương tiện."
-#: apt-pkg/acquire.cc:59
-#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "Thiếu thư mục danh sách « %spartial »."
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "Không thể sửa những gói còn thiếu."
-#: apt-pkg/acquire.cc:63
-#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "Thiếu thư mục kho « %spartial »."
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "Đang hủy bỏ cài đặt."
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "Đang lấy tập tin %li trên %li (%s còn lại)..."
+msgid "Note, selecting %s instead of %s\n"
+msgstr "Ghi chú : đang chọn %s thay vì %s\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "Đang lấy tập tin %li trên %li..."
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa lập tùy chọn Nâng cấp.\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "Không tìm thấy trình điều khiển phương pháp %s."
+msgid "Package %s is not installed, so not removed\n"
+msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó\n"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "Phương pháp %s đã không bắt đầu cho đúng."
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "Gói %s là gói ảo được cung cấp do :\n"
-#: apt-pkg/acquire-worker.cc:398
-#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "Hãy nạp đĩa có nhãn « %s » vào ổ « %s » và bấm nút Enter."
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [Đã cài đặt]"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "Bạn nên chọn một cách dứt khoát gói cần cài."
+
+#: cmdline/apt-get.cc:1114
#, 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:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp"
-
-#: apt-pkg/clean.cc:57
-#, c-format
-msgid "Unable to stat %s."
-msgstr "Không thể lấy các thông tin về %s."
-
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr ""
-"Bạn phải để một số địa chỉ Mạng « nguồn » vào « sources.list » (danh sách "
-"nguồn)"
-
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "Không thể đọc danh sách nguồn."
-
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "Không thể phân tách hay mở danh sách gói hay tâp tin trạng thái."
-
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr ""
-"Có lẽ bạn muốn chạy « apt-get update » (lấy cập nhật) để sửa các vấn đề này"
-
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
+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ặp mục ghi không hợp lệ trong tập tin tùy thích: không có phần đầu Package "
-"(Gói)."
-
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "Không hiểu kiểu ghim %s"
-
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim"
-
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "Bộ nhớ tạm có hệ thống điêu khiển phiên bản không tương thích"
-
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "Gặp lỗi khi xử lý %s (NewPackage - gói mới)"
+"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ó nghĩa là gói còn thiếu,\n"
+"đã trở thành cũ, hay chỉ sẵn sàng từ nguồn khác.\n"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "Gặp lỗi khi xử lý %s (UsePackage1 - dùng gói 1)"
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "Tuy nhiên, những gói theo đây thay thế nó :"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "Gặp lỗi khi xử lý %s (NewFileDesc1 - tập tin mô tả mới 1)"
+msgid "Package %s has no installation candidate"
+msgstr "Gói %s không có ứng cử cài đặt"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "Gặp lỗi khi xử lý %s (UsePackage2 - dùng gói 2)"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "Không thể cài đặt lại %s vì không thể tải về nó.\n"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "Gặp lỗi khi xử lý %s (NewFileVer1 - tập tin mới, phiên bản 1)"
+msgid "%s is already the newest version.\n"
+msgstr "%s là phiên bản mơi nhất.\n"
-#: apt-pkg/pkgcachegen.cc:213
+#: cmdline/apt-get.cc:1193
#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "Gặp lỗi khi xử lý %s (NewVersion1 - phiên bản mới 1)"
+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/pkgcachegen.cc:217
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "Gặp lỗi khi xử lý %s (UsePackage3 - dùng gói 3)"
+msgid "Version '%s' for '%s' was not found"
+msgstr "Không tìm thấy phiên bản « %s » cho « %s »"
-#: apt-pkg/pkgcachegen.cc:221
+#: cmdline/apt-get.cc:1201
#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "Gặp lỗi khi xử lý %s (NewVersion2 - phiên ban mới 2)"
+msgid "Selected version %s (%s) for %s\n"
+msgstr "Đã chọn phiên bản %s (%s) cho %s\n"
-#: apt-pkg/pkgcachegen.cc:245
-#, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "Gặp lỗi khi xử lý %s (NewFileDesc2 - tập tin mô tả mới 2)"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "Lệnh cập nhật không chấp nhật đối số"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý."
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "Không thể khóa thư mục danh sách"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý."
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+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, đã bỏ qua chúng, hoặc điều cũ được "
+"dùng thay thế."
-#: apt-pkg/pkgcachegen.cc:257
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý."
+#: cmdline/apt-get.cc:1441
+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-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý."
+#: cmdline/apt-get.cc:1473
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr ""
+"Theo đây có những gói đã được cài đặt tự động nên không còn cần thiết lại:"
-#: apt-pkg/pkgcachegen.cc:288
-#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "Gặp lỗi khi xử lý %s (FindPkg - tìm gói)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr "Hãy sử dụng lệnh « apt-get autoremove » để gỡ bỏ chúng."
-#: apt-pkg/pkgcachegen.cc:301
-#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
msgstr ""
-"Gặp lỗi khi xử lý %s (CollectFileProvides - tập hợp các trường hợp miễn là "
-"một tập tin)"
-
-#: apt-pkg/pkgcachegen.cc:307
-#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "Không tìm thấy gói %s %s khi xử lý cách phụ thuộc của/vào tập tin"
+"Ừ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."
-#: apt-pkg/pkgcachegen.cc:678
-#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ quyết định trường hợp:"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "Đang đọc các danh sách gói..."
+#: cmdline/apt-get.cc:1487
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "Lỗi nội bộ : Bộ Gỡ bỏ Tự động đã làm hư gì."
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "Đang tập hợp các trường hợp « tập tin miễn là »"
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "Lỗi nội bộ: AllUpgrade (toàn bộ nâng cấp) đã ngắt gì"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:1553
#, c-format
-msgid "Unable to write to %s"
-msgstr "Không thể ghi vào %s"
-
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn"
+msgid "Couldn't find task %s"
+msgstr "Không tìm thấy tác vụ %s"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "việc thay đổi tên bị lỗi, %s (%s → %s)."
+msgid "Couldn't find package %s"
+msgstr "Không tìm thấy gói %s"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5Sum (tổng kiểm) không khớp được"
+#: cmdline/apt-get.cc:1691
+#, 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"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-msgid "Hash Sum mismatch"
-msgstr "Sai khớp tổng băm (hash sum)"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "%s được đặt thành « được cài đặt thủ công ».\n"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "Không có khóa công sẵn sàng cho những ID khóa theo đây:\n"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "Có lẽ bạn hãy chạy lênh « apt-get -f install » để sửa hết:"
-#: apt-pkg/acquire-item.cc:1204
-#, c-format
+#: cmdline/apt-get.cc:1738
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)"
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
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."
+"Gói còn phụ thuộc vào phần mềm chưa có. Hãy cố chạy lệnh « apt-get -f install "
+"» mà không có gói nào (hoặc ghi rõ cách quyết định)."
-#: apt-pkg/acquire-item.cc:1263
-#, c-format
+#: cmdline/apt-get.cc:1750
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
+"Some 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 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."
+"Không thể cài đặt một số gói. Có lẽ có nghĩa là bạn đa yêu cầu\n"
+"một trường hợp không thể, hoặc nếu bạn sử dụng bản phân phối\n"
+"bất định, có lẽ chưa tạo một số gói cần thiết,\n"
+"hoặc chưa di chuyển chúng ra phần Incoming (Đến)."
-#: apt-pkg/acquire-item.cc:1304
-#, c-format
+#: cmdline/apt-get.cc:1758
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
msgstr ""
-"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:1391
-msgid "Size mismatch"
-msgstr "Kích cỡ không khớp được"
+"Vì bạn đã yêu cầu chỉ một thao tác riêng lẻ, rât có thể là\n"
+"gói này đơn giản không có khả năng cài đặt, thì bạn hay\n"
+"thông báo lỗi về gói này."
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "Khối nhà bán %s không chứa vân tay"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "Gói bị ngắt"
-#: apt-pkg/cdrom.cc:529
-#, c-format
-msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
-msgstr ""
-"Đang dùng điểm lắp đĩa CD-ROM %s\n"
-"Đang lắp đĩa CD-ROM...\n"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "Những gói thêm theo đây sẽ được cài đặt:"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "Đang nhận diện... "
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "Gói được đệ nghị:"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "Nhãn đã lưu : %s\n"
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "Gói được khuyên:"
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "Đang dùng điểm lắp đĩa CD-ROM %s\n"
-
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "Đang tháo lắp đĩa CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "Đang đợi đĩa...\n"
-
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "Đang lắp đĩa CD-ROM...\n"
-
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n"
-
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-#| msgid ""
-#| "Found %i package indexes, %i source indexes, %i translation indexes and %"
-#| "i signatures\n"
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr ""
-"Tìm thấy %i chỉ mục gói, %i chỉ mục nguồn, %i chỉ mục dịch và %i chữ ký\n"
-
-#: apt-pkg/cdrom.cc:708
-#, c-format
-msgid "Found label '%s'\n"
-msgstr "Nhãn đã lưu : « %s »\n"
-
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n"
-
-#: apt-pkg/cdrom.cc:753
-#, c-format
-msgid ""
-"This disc is called: \n"
-"'%s'\n"
-msgstr ""
-"Tên đĩa này:\n"
-"%s\n"
-
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "Đang sao chép các danh sách gói..."
-
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "Đang ghi danh sách nguồn mới...\n"
-
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "Các mục nhập danh sách nguồn cho đĩa này:\n"
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "Đang tính nâng cấp... "
-#: apt-pkg/cdrom.cc:834
-msgid "Unmounting CD-ROM...\n"
-msgstr "Đang tháo lắp đĩa CD-ROM...\n"
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "Bị lỗi"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "Mới ghi %i mục ghi.\n"
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "Xong"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "Mới ghi %i mục ghi với %i tập tin còn thiếu.\n"
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "Mới ghi %i mục ghi với %i tập tin không khớp với nhau\n"
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "Phải ghi rõ ít nhất một gói cần lấy nguồn cho nó"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr ""
-"Mới ghi %i mục ghi với %i tập tin còn thiếu và %i tập tin không khớp với "
-"nhau\n"
+msgid "Unable to find a source package for %s"
+msgstr "Không tìm thấy gói nguồn cho %s"
-#: apt-pkg/deb/dpkgpm.cc:510
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Directory '%s' missing"
-msgstr "Thiếu thư mục « %s »"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "Đang bỏ qua tập tin đã được tải về « %s »\n"
-#: apt-pkg/deb/dpkgpm.cc:572
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Preparing %s"
-msgstr "Đang chuẩn bị %s..."
+msgid "You don't have enough free space in %s"
+msgstr "Không đủ sức chứa còn rảnh trong %s"
-#: apt-pkg/deb/dpkgpm.cc:573
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Unpacking %s"
-msgstr "Đang mở gói %s..."
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "Cần phải lấy %sB/%sB kho nguồn.\n"
-#: apt-pkg/deb/dpkgpm.cc:578
+#: cmdline/apt-get.cc:2212
#, c-format
-msgid "Preparing to configure %s"
-msgstr "Đang chuẩn bị cấu hình %s..."
+msgid "Need to get %sB of source archives.\n"
+msgstr "Cần phải lấy %sB kho nguồn.\n"
-#: apt-pkg/deb/dpkgpm.cc:579
+#: cmdline/apt-get.cc:2218
#, c-format
-msgid "Configuring %s"
-msgstr "Đang cấu hình %s..."
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "Gặp lỗi khi xử lý thư mục %s"
+msgid "Fetch source %s\n"
+msgstr "Lấy nguồn %s\n"
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "Đã cài đặt %s"
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "Việc lấy một số kho bị lỗi."
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Preparing for removal of %s"
-msgstr "Đang chuẩn bị gỡ bỏ %s..."
+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"
-#: apt-pkg/deb/dpkgpm.cc:594
+#: cmdline/apt-get.cc:2289
#, c-format
-msgid "Removing %s"
-msgstr "Đang gỡ bỏ %s..."
+msgid "Unpack command '%s' failed.\n"
+msgstr "Lệnh giải nén « %s » bị lỗi.\n"
-#: apt-pkg/deb/dpkgpm.cc:595
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "Removed %s"
-msgstr "Đã gỡ bỏ %s"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "Hãy kiểm tra xem gói « dpkg-dev » có được cài đặt chưa.\n"
-#: apt-pkg/deb/dpkgpm.cc:600
+#: cmdline/apt-get.cc:2307
#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s..."
+msgid "Build command '%s' failed.\n"
+msgstr "Lệnh xây dụng « %s » bị lỗi.\n"
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "Mới gỡ bỏ hoàn toàn %s"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "Tiến trình con bị lỗi"
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+#: cmdline/apt-get.cc:2342
+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ó"
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "Không thể vá lỗi trong tập tin %s"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "Việc tạo ống IPC đến tiến trình con bị lỗi"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "Kết nối bị đóng quá sớm."
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "Việc tạo những ống bị lỗi"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "Việc thực hiện gzip bị lỗi "
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "Kho bị hỏng."
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Tiến trình tar (kiểm tổng tar) thât bại: kho bị hỏng."
-
-#: apt-inst/contrib/extracttar.cc:296
-#, c-format
-msgid "Unknown TAR header type %u, member %s"
-msgstr "Không biết kiểu phần đầu tar %u, bộ phạn %s"
-
-#: apt-inst/contrib/arfile.cc:70
-msgid "Invalid archive signature"
-msgstr "Chữ ký kho không hợp lệ"
-
-#: apt-inst/contrib/arfile.cc:78
-msgid "Error reading archive member header"
-msgstr "Gặp lỗi khi đọc phần đầu bộ phạn kho"
-
-#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
-msgid "Invalid archive member header"
-msgstr "Phần đầu bộ phạn kho không hợp lê"
-
-#: apt-inst/contrib/arfile.cc:128
-msgid "Archive is too short"
-msgstr "Kho quá ngắn"
-
-#: apt-inst/contrib/arfile.cc:132
-msgid "Failed to read the archive headers"
-msgstr "Việc đọc phần đầu kho bị lỗi"
-
-#: apt-inst/filelist.cc:380
-msgid "DropNode called on still linked node"
-msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết"
-
-#: apt-inst/filelist.cc:412
-msgid "Failed to locate the hash element!"
-msgstr "Việc định vi phần tử băm bị lỗi"
-
-#: apt-inst/filelist.cc:459
-msgid "Failed to allocate diversion"
-msgstr "Việc cấp phát sự trệch đi bị lỗi"
-
-#: apt-inst/filelist.cc:464
-msgid "Internal error in AddDiversion"
-msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)"
-
-#: apt-inst/filelist.cc:477
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
-msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s"
+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"
-#: apt-inst/filelist.cc:506
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid "Double add of diversion %s -> %s"
-msgstr "Sự trệch đi được thêm hai lần %s → %s"
+msgid "%s has no build depends.\n"
+msgstr "%s không phụ thuộc vào gì khi xây dụng.\n"
-#: apt-inst/filelist.cc:549
+#: cmdline/apt-get.cc:2442
#, c-format
-msgid "Duplicate conf file %s/%s"
-msgstr "Tập tin cấu hình trùng %s/%s"
+msgid ""
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "cách phụ thuộc %s cho %s không thể được thỏa vì không tìm thấy gọi %s"
-#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#: cmdline/apt-get.cc:2495
#, c-format
-msgid "Failed to write file %s"
-msgstr "Việc ghi tập tin %s bị lỗi"
+msgid ""
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"cách phụ thuộc %s cho %s không thể được thỏa vì không có phiên bản sẵn sàng "
+"của gói %s có thể thỏa điều kiện phiên bản."
-#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#: cmdline/apt-get.cc:2531
#, c-format
-msgid "Failed to close file %s"
-msgstr "Việc đóng tập tin %s bị lỗi"
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr ""
+"Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s quá mới"
-#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "The path %s is too long"
-msgstr "Đường dẫn %s quá dài"
+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."
-#: apt-inst/extract.cc:124
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Unpacking %s more than once"
-msgstr "Đang giải nén %s nhiều lần"
+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."
-#: apt-inst/extract.cc:134
-#, c-format
-msgid "The directory %s is diverted"
-msgstr "Thư mục %s bị trệch hướng"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "Việc xử lý cách phụ thuộc khi xây dụng bị lỗi"
-#: apt-inst/extract.cc:144
-#, c-format
-msgid "The package is trying to write to the diversion target %s/%s"
-msgstr "Gói này đang cố ghi vào đích trệch đi %s/%s"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "Mô-đun đã hỗ trợ :"
-#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
-msgid "The diversion path is too long"
-msgstr "Đường dẫn trệch đi quá dài."
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"Sử dụng: apt-get [tùy_chọn...] lệnh\n"
+" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n"
+" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n"
+"\n"
+"[get: \tlấy\n"
+"install: \tcài đặt\n"
+"remove: \tgỡ bỏ\n"
+"source: \tnguồn]\n"
+"\n"
+"apt-get là một giao diện dòng lệnh đơn giản để tải về và cài đặt gói.\n"
+"Những lệnh đã dùng thường nhất là update (cập nhật) và install (cài đặt).\n"
+"\n"
+"Lệnh:\n"
+" update\t\tLấy danh sách gói mới (_cập nhật_)\n"
+" upgrade \t_Nâng cập_ \n"
+" install \t\t_Cài đặt_ gói mới (gói là libc6 không phải libc6.deb)\n"
+" remove \t_Gỡ bỏ_ gói\n"
+" autoremove\t\tGỡ bỏ tất cả các gói tự động không dùng\n"
+" purge\t\tGỡ bỏ và _tẩy_ gói\n"
+" source \t\tTải về kho _nguồn_\n"
+" build-dep \tĐịnh cấu hình _cách phụ thuộc khi xây dụng_, cho gói nguồn\n"
+" dist-upgrade \t_Nâng cấp bản phân phối_,\n"
+"\t\t\t\t\thãy xem trang hướng dẫn (man) apt-get(8)\n"
+" dselect-upgrade \t\tTheo cách chọn dselect (_nâng cấp_)\n"
+" clean \t\tXóa bỏ các tập tin kho đã tải về (_làm sạch_)\n"
+" autoclean \tXóa bỏ các tập tin kho cũ đã tải về (_tự động làm sạch_)\n"
+" check \t\t_Kiểm chứng_ không có cách phụ thuộc bị ngắt\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t_Trợ giúp_ này.\n"
+" -q \tDữ liệu xuất có thể ghi lưu - không có cái chỉ tiến trình (_im_)\n"
+" -qq \tKhông xuất thông tin nào, trừ lỗi (_im im_)\n"
+" -d \tChỉ _tải về_, ĐỪNG cài đặt hay giải nén kho\n"
+" -s \tKhông hoạt đông. _Mô phỏng_ sắp xếp\n"
+" -y \tGiả sử trả lời _Có_ (yes) mọi khi gặp câu hỏi;\n"
+"\t\t\t\t\tđừng nhắc người dùng gõ gì\n"
+" -f \t\tCố tiếp tục lại nếu việc kiểm tra tính nguyên vẹn _thất bại_\n"
+" -m \tCố tiếp tục lại nếu không thể định vị kho\n"
+" -u \tCũng hiện danh sách các gói đã _nâng cấp_\n"
+" -b \t_Xây dụng_ gói nguồn sau khi lấy nó\n"
+" -V \tHiện số thứ tự _phiên bản chi tiết_\n"
+" -c=? \tĐọc tập tin cấu hình ấy\n"
+" -o=? \tLập tùy chọn nhiệm ý, v.d. -o dir::cache=/tmp\n"
+"Để tim thông tin và tùy chọn thêm thì hãy xem trang hướng dẫn apt-get(8), "
+"sources.list(5) và apt.conf(5).\n"
+" Trình APT này có năng lực của bò siêu.\n"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "Việc đổi tên %s thành %s bị lỗi"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "Lần tìm "
-#: apt-inst/extract.cc:240
-#, c-format
-msgid "The directory %s is being replaced by a non-directory"
-msgstr "Thư mục %s đang được thay thế do điều không phải là thư mục"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "Lấy:"
-#: apt-inst/extract.cc:280
-msgid "Failed to locate node in its hash bucket"
-msgstr "Việc định vị điểm nút trong hộp băm nó bị lỗi"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "Bỏq "
-#: apt-inst/extract.cc:284
-msgid "The path is too long"
-msgstr "Đường dẫn quá dài"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "Lỗi "
-#: apt-inst/extract.cc:414
+#: cmdline/acqprogress.cc:135
#, c-format
-msgid "Overwrite package match with no version for %s"
-msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s"
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "Mới lấy %sB trong %s (%sB/g).\n"
-#: apt-inst/extract.cc:431
+#: cmdline/acqprogress.cc:225
#, c-format
-msgid "File %s/%s overwrites the one in the package %s"
-msgstr "Tập tin %s/%s ghi đè lên điều trong gói %s"
+msgid " [Working]"
+msgstr " [Hoạt động]"
-#: apt-inst/extract.cc:491
+#: cmdline/acqprogress.cc:271
#, c-format
-msgid "Unable to stat %s"
-msgstr "Không thể lấy các thông tin về %s"
+msgid ""
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"Chuyển đổi vật chứa: hãy nạp đĩa có nhãn\n"
+" « %s »\n"
+"vào ổ « %s » và bấm nút Enter\n"
-#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
-#, c-format
-msgid "Failed to remove %s"
-msgstr "Việc gỡ bỏ %s bị lỗi"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "Không biết mục ghi gói."
-#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
-#, c-format
-msgid "Unable to create %s"
-msgstr "Không thể tạo %s"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"Cách sử dụng: apt-sortpkgs [tùy_chọn...] tập_tin1 [tập_tin2 ...]\n"
+"\n"
+"[sortpkgs: sort packages: sắp xếp các gói]\n"
+"\n"
+"apt-sortpkgs là một công cụ đơn giản để sắp xếp tập tin gói.\n"
+"Tùy chon « -s » dùng để ngụ ý kiểu tập tin.\n"
+"\n"
+"Tùy chọn:\n"
+" -h \t_Trợ giúp_ này\n"
+" -s \tSắp xếp những tập tin _nguồn_\n"
+" -c=? \tĐọc tập tin cấu hình này\n"
+" -o=? \tLập tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
-#: apt-inst/deb/dpkgdb.cc:114
-#, c-format
-msgid "Failed to stat %sinfo"
-msgstr "Việc lấy các thông tin về %sinfo bị lỗi"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "Thiết lập mặc định sai."
-#: apt-inst/deb/dpkgdb.cc:119
-msgid "The info and temp directories need to be on the same filesystem"
-msgstr ""
-"Những thư mục info (thông tin) và temp (tạm thời) cần phải trong cùng một hệ "
-"thống tập tin"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "Hãy bấm phím Enter để tiếp tục lại."
-#: apt-inst/deb/dpkgdb.cc:176
-#, c-format
-msgid "Failed to change to the admin dir %sinfo"
-msgstr "Việc chuyển đổi sang thư mục quản lý %sinfo bị lỗi"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "Gập một số lỗi khi giải nén. Sẽ cấu hình"
-#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
-#: apt-inst/deb/dpkgdb.cc:444
-msgid "Internal error getting a package name"
-msgstr "Gặp lỗi nội bộ khi lấy tên gói"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "những gói đã đươc cài đặt. Có lẽ sẽ gây ra lỗi trùng"
-#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
-msgid "Reading file listing"
-msgstr "Đang đọc danh sách tập tin..."
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr ""
+"hoặc lỗi khi không có phần mềm mà gói khác phụ thuộc vào nó. Không có sao, "
+"chỉ những lỗi"
-#: apt-inst/deb/dpkgdb.cc:212
-#, c-format
+#: dselect/install:103
msgid ""
-"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
-"then make it empty and immediately re-install the same version of the "
-"package!"
+"above this message are important. Please fix them and run [I]nstall again"
msgstr ""
-"Việc mở tập tin danh sách « %sinfo/%s » bị lỗi. Nếu bạn không thể phục hồi "
-"tập tin này, bạn hãy làm cho nó rỗng và ngay cài đặt lại cùng phiên bản gói."
+"ở trên thông điệp này là quan trọng. Hãy sửa chúng và chạy lại [I]nstall "
+"(cài đặt)"
-#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
-#, c-format
-msgid "Failed reading the list file %sinfo/%s"
-msgstr "Việc đọc tập tin danh sách %sinfo/%s bị lỗi"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "Đang hợp nhất các thông tin sẵn sàng..."
-#: apt-inst/deb/dpkgdb.cc:262
-msgid "Internal error getting a node"
-msgstr "Gặp lỗi nội bộ khi lấy nút điểm..."
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "Việc tạo những ống bị lỗi"
-#: apt-inst/deb/dpkgdb.cc:305
-#, c-format
-msgid "Failed to open the diversions file %sdiversions"
-msgstr "Việc mở tập tin trệch đi %sdiversions bị lỗi"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "Việc thực hiện gzip bị lỗi "
-#: apt-inst/deb/dpkgdb.cc:320
-msgid "The diversion file is corrupted"
-msgstr "Tập tin trệch đi bị hỏng"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "Kho bị hỏng."
-#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
-#: apt-inst/deb/dpkgdb.cc:337
-#, c-format
-msgid "Invalid line in the diversion file: %s"
-msgstr "Gặp dòng không hợp lệ trong tập tin trệch đi: %s"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Tiến trình tar (kiểm tổng tar) thât bại: kho bị hỏng."
+
+#: apt-inst/contrib/extracttar.cc:296
+#, c-format
+msgid "Unknown TAR header type %u, member %s"
+msgstr "Không biết kiểu phần đầu tar %u, bộ phạn %s"
+
+#: apt-inst/contrib/arfile.cc:70
+msgid "Invalid archive signature"
+msgstr "Chữ ký kho không hợp lệ"
+
+#: apt-inst/contrib/arfile.cc:78
+msgid "Error reading archive member header"
+msgstr "Gặp lỗi khi đọc phần đầu bộ phạn kho"
+
+#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102
+msgid "Invalid archive member header"
+msgstr "Phần đầu bộ phạn kho không hợp lê"
+
+#: apt-inst/contrib/arfile.cc:128
+msgid "Archive is too short"
+msgstr "Kho quá ngắn"
+
+#: apt-inst/contrib/arfile.cc:132
+msgid "Failed to read the archive headers"
+msgstr "Việc đọc phần đầu kho bị lỗi"
+
+#: apt-inst/filelist.cc:380
+msgid "DropNode called on still linked node"
+msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết"
+
+#: apt-inst/filelist.cc:412
+msgid "Failed to locate the hash element!"
+msgstr "Việc định vi phần tử băm bị lỗi"
+
+#: apt-inst/filelist.cc:459
+msgid "Failed to allocate diversion"
+msgstr "Việc cấp phát sự trệch đi bị lỗi"
+
+#: apt-inst/filelist.cc:464
+msgid "Internal error in AddDiversion"
+msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)"
+
+#: apt-inst/filelist.cc:477
+#, c-format
+msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
+msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s"
+
+#: apt-inst/filelist.cc:506
+#, c-format
+msgid "Double add of diversion %s -> %s"
+msgstr "Sự trệch đi được thêm hai lần %s → %s"
+
+#: apt-inst/filelist.cc:549
+#, c-format
+msgid "Duplicate conf file %s/%s"
+msgstr "Tập tin cấu hình trùng %s/%s"
+
+#: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:46 apt-inst/dirstream.cc:49
+#, c-format
+msgid "Failed to write file %s"
+msgstr "Việc ghi tập tin %s bị lỗi"
+
+#: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100
+#, c-format
+msgid "Failed to close file %s"
+msgstr "Việc đóng tập tin %s bị lỗi"
+
+#: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+#, c-format
+msgid "The path %s is too long"
+msgstr "Đường dẫn %s quá dài"
+
+#: apt-inst/extract.cc:124
+#, c-format
+msgid "Unpacking %s more than once"
+msgstr "Đang giải nén %s nhiều lần"
+
+#: apt-inst/extract.cc:134
+#, c-format
+msgid "The directory %s is diverted"
+msgstr "Thư mục %s bị trệch hướng"
+
+#: apt-inst/extract.cc:144
+#, c-format
+msgid "The package is trying to write to the diversion target %s/%s"
+msgstr "Gói này đang cố ghi vào đích trệch đi %s/%s"
+
+#: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+msgid "The diversion path is too long"
+msgstr "Đường dẫn trệch đi quá dài."
+
+#: apt-inst/extract.cc:240
+#, c-format
+msgid "The directory %s is being replaced by a non-directory"
+msgstr "Thư mục %s đang được thay thế do điều không phải là thư mục"
+
+#: apt-inst/extract.cc:280
+msgid "Failed to locate node in its hash bucket"
+msgstr "Việc định vị điểm nút trong hộp băm nó bị lỗi"
+
+#: apt-inst/extract.cc:284
+msgid "The path is too long"
+msgstr "Đường dẫn quá dài"
+
+#: apt-inst/extract.cc:414
+#, c-format
+msgid "Overwrite package match with no version for %s"
+msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s"
+
+#: apt-inst/extract.cc:431
+#, c-format
+msgid "File %s/%s overwrites the one in the package %s"
+msgstr "Tập tin %s/%s ghi đè lên điều trong gói %s"
+
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "Không thể đọc %s"
+
+#: apt-inst/extract.cc:491
+#, c-format
+msgid "Unable to stat %s"
+msgstr "Không thể lấy các thông tin về %s"
+
+#: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+#, c-format
+msgid "Failed to remove %s"
+msgstr "Việc gỡ bỏ %s bị lỗi"
+
+#: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+#, c-format
+msgid "Unable to create %s"
+msgstr "Không thể tạo %s"
+
+#: apt-inst/deb/dpkgdb.cc:114
+#, c-format
+msgid "Failed to stat %sinfo"
+msgstr "Việc lấy các thông tin về %sinfo bị lỗi"
+
+#: apt-inst/deb/dpkgdb.cc:119
+msgid "The info and temp directories need to be on the same filesystem"
+msgstr ""
+"Những thư mục info (thông tin) và temp (tạm thời) cần phải trong cùng một hệ "
+"thống tập tin"
+
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "Đang đọc các danh sách gói..."
+
+#: apt-inst/deb/dpkgdb.cc:176
+#, c-format
+msgid "Failed to change to the admin dir %sinfo"
+msgstr "Việc chuyển đổi sang thư mục quản lý %sinfo bị lỗi"
+
+#: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
+#: apt-inst/deb/dpkgdb.cc:444
+msgid "Internal error getting a package name"
+msgstr "Gặp lỗi nội bộ khi lấy tên gói"
+
+#: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+msgid "Reading file listing"
+msgstr "Đang đọc danh sách tập tin..."
+
+#: apt-inst/deb/dpkgdb.cc:212
+#, c-format
+msgid ""
+"Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
+"then make it empty and immediately re-install the same version of the "
+"package!"
+msgstr ""
+"Việc mở tập tin danh sách « %sinfo/%s » bị lỗi. Nếu bạn không thể phục hồi "
+"tập tin này, bạn hãy làm cho nó rỗng và ngay cài đặt lại cùng phiên bản gói."
+
+#: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+#, c-format
+msgid "Failed reading the list file %sinfo/%s"
+msgstr "Việc đọc tập tin danh sách %sinfo/%s bị lỗi"
+
+#: apt-inst/deb/dpkgdb.cc:262
+msgid "Internal error getting a node"
+msgstr "Gặp lỗi nội bộ khi lấy nút điểm..."
+
+#: apt-inst/deb/dpkgdb.cc:305
+#, c-format
+msgid "Failed to open the diversions file %sdiversions"
+msgstr "Việc mở tập tin trệch đi %sdiversions bị lỗi"
+
+#: apt-inst/deb/dpkgdb.cc:320
+msgid "The diversion file is corrupted"
+msgstr "Tập tin trệch đi bị hỏng"
+
+#: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
+#: apt-inst/deb/dpkgdb.cc:337
+#, c-format
+msgid "Invalid line in the diversion file: %s"
+msgstr "Gặp dòng không hợp lệ trong tập tin trệch đi: %s"
#: apt-inst/deb/dpkgdb.cc:358
msgid "Internal error adding a diversion"
msgstr "Đây không phải là môt kho DEB hợp lệ vì còn thiếu bộ phạn « %s »"
#: apt-inst/deb/debfile.cc:50
-#, c-format
+#, fuzzy, 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ó bộ phạn « %s », « %s » hay "
-"« %s »"
+"Đây không phải là môt kho DEB hợp lệ vì không có bộ phạn « %s », « %s » hay « %"
+"s »"
#: apt-inst/deb/debfile.cc:110
#, c-format
msgid "Unparsable control file"
msgstr "Tập tin điều khiển không có khả năng phân tách"
-#: cmdline/apt-cache.cc:143
+#: methods/cdrom.cc:114
#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "Gói %s phiên bản %s phụ thuộc vào phần mềm chưa có :\n"
+msgid "Unable to read the cdrom database %s"
+msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s"
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
-#, c-format
-msgid "Unable to locate package %s"
-msgstr "Không thể định vị gói %s"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"Hãy sử dụng lệnh « apt-cdrom » để làm cho APT chấp nhận đĩa CD này. Không thể "
+"sử dụng lệnh « apt-get update » (lấy cập nhật) để thêm đĩa CD mới."
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "Tổng số tên gói: "
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "CD không đúng"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " Gói chuẩn: "
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "Không thể tháo gắn kết đĩa CD-ROM trong %s. Có lẽ nó còn dùng."
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " Gói ảo nguyên chất: "
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "Không tìm thấy đĩa"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " Gói ảo đơn: "
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "Không tìm thấy tập tin"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " Gói ảo hỗn hợp: "
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "Việc lấy các thông tin bị lỗi"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " Thiếu : "
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "Việc lập giờ sửa đổi bị lỗi"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "Tổng phiên bản riêng: "
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "Địa chỉ Mạng (URI) không hợp lệ: URI không thể bắt đầu với « // »"
-#: cmdline/apt-cache.cc:295
-msgid "Total Distinct Descriptions: "
-msgstr "Tổng mô tả riêng: "
-
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "Tổng đồ phụ thuộc: "
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "Đang đăng nhập..."
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "Tổng liên quan phiên bản và tập tin: "
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "Không thể quyết định tên ngang hàng"
-#: cmdline/apt-cache.cc:302
-msgid "Total Desc/File relations: "
-msgstr "Tổng liên quan mô tả/tập tin: "
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "Không thể quyết định tên cục bộ"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "Tổng ảnh xạ Miễn là: "
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "Máy phục vụ đã từ chối kết nối, và nói: %s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: "
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "Lệnh USER (người dùng) đã thất bại: máy phục vụ nói: %s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "Tổng chỗ phiên bản phụ thuộc: "
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy phục vụ nói: %s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Tổng chỗ nghỉ: "
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. « "
+"Acquire::ftp::ProxyLogin » là rỗng."
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "Tổng chỗ đã tính: "
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "Lệnh tập lệnh đăng nhập « %s » đã thất bại: máy phục vụ nói: %s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "Tập tin gói %s không đồng bộ được."
+msgid "TYPE failed, server said: %s"
+msgstr "Lệnh TYPE (kiểu) đã thất bại: máy phục vụ nói: %s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "Bạn phải đưa ra đúng một mẫu"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "Thời hạn kết nối"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "Không tìm thấy gói"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "Máy phục vụ đã đóng kết nối"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "Tập tin gói:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "Lỗi đọc"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-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"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "Một trả lời đã tràn bộ đệm."
-# Variable: do not translate/ biến: đừng dịch
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "Giao thức bị hỏng"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "Các gói đã ghim:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "Lỗi ghi"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(không tìm thấy)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "Không thể tạo ổ cắm"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " Đã cài đặt: "
+#: methods/ftp.cc:698
+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ờ"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(không có)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "Không thể kết nối ổ cắm bị động."
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " Ứng cử: "
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe"
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " Ghim gói: "
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "Không thể đóng kết ổ cắm"
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " Bảng phiên bản:"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "Không thể lắng nghe trên ổ cắm đó"
-# Variable: do not translate/ biến: đừng dịch
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "Không thể quyết định tên ổ cắm đó"
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "Không thể gởi lệnh PORT (cổng)"
+
+#: methods/ftp.cc:789
#, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s cho %s được biên dịch vào %s %s\n"
+msgid "Unknown address family %u (AF_*)"
+msgstr "Không biết nhóm địa chỉ %u (AF_*)"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"Cách sử dụng: apt-cache [tùy_chọn...] lệnh\n"
-" apt-cache [tùy_chọn...] add tập_tin1 [tập_tin2 ...]\n"
-" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n"
-" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n"
-"(cache: \tbộ nhớ tạm;\n"
-"add: \tthêm;\n"
-"showpkg: hiển thị gói;\n"
-"showsrc: \thiển thị nguồn)\n"
-"\n"
-"apt-cache là một công cụ mức thấp dùng để thao tác\n"
-"những tập tin bộ nhớ tạm nhị phân của APT,\n"
-"và cũng để truy vấn thông tin từ những tập tin đó.\n"
-"\n"
-"Lệnh:\n"
-" add\t\t_Thêm_ gói vào bộ nhớ tạm nguồn\n"
-" gencaches\tXây dung (_tạo ra_) cả gói lẫn _bộ nhớ tạm_ nguồn đều\n"
-" showpkg\t_Hiện_ một phần thông tin chung về một _gói_ riêng lẻ\n"
-" showsrc\t_Hiện_ các mục ghi _nguồn_\n"
-" stats\t\tHiện một phần _thống kê_ cơ bản\n"
-" dump\t\tHiện toàn bộ tập tin dạng ngắn (_đổ_)\n"
-" dumpavail\tIn ra một tập tin _sẵn sàng_ vào thiết bị xuất chuẩn (_đổ_)\n"
-" unmet\t\tHiện các cách phụ thuộc _chưa thực hiện_\n"
-" search\t\t_Tìm kiếm_ mẫu biểu thức chính quy trong danh sách gói\n"
-" show\t\t_Hiệnị_ mục ghi có thể đọc, cho những gói đó\n"
-" depends\tHiện thông tin cách _phụ thuộc_ thô cho gói\n"
-" rdepends\tHiện thông tin cách _phụ thuộc ngược lại_, cho gói\n"
-" pkgnames\tHiện danh sách _tên_ mọi _gói_\n"
-" dotty\t\tTạo ra đồ thị gói cho GraphVis (_nhiều chấm_)\n"
-" xvcg\t\tTạo ra đồ thị gói cho _xvcg_\n"
-" policy\t\tHiển thị các thiết lập _chính thức_\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t\t_Trợ giúp_ này\n"
-" -p=? \t\tBộ nhớ tạm _gói_.\n"
-" -s=? \t\tBộ nhớ tạm _nguồn_.\n"
-" -q \t\tTắt cái chỉ tiến trình (_im_).\n"
-" -i \t\tHiện chỉ những cách phụ thuộc _quan trọng_\n"
-"\t\t\tcho lệnh chưa thực hiện.\n"
-" -c=? \t\tĐọc tập tin _cấu hình_ này\n"
-" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
-"Để tìm thông tin thêm thì bạn hãy xem hai trang « man » (hướng dẫn)\n"
-"\t\t\tapt-cache(8) và apt.conf(5).\n"
+#: methods/ftp.cc:798
+#, c-format
+msgid "EPRT failed, server said: %s"
+msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy phục vụ nói: %s"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "Hãy cung cấp tên cho Đĩa này, như « Debian 2.1r1 Đĩa 1 »"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Kết nối ổ cắm dữ liệu đã quá giờ"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "Hãy nạp đĩa vào ổ và bấm nút Enter"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "Không thể chấp nhận kết nối"
-#: cmdline/apt-cdrom.cc:117
-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."
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "Gặp khó khăn băm tập tin"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "Không có các đối số dạng cặp"
+#: methods/ftp.cc:877
+#, c-format
+msgid "Unable to fetch file, server said '%s'"
+msgstr "Không thể lấy tập tin: máy phục vụ nói « %s »"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Cách sử dụng: apt-config [tùy_chọn...] lệnh\n"
-"\n"
-"[config: viết tắt cho từ configuration: cấu hình]\n"
-"\n"
-"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n"
-"\n"
-"Lệnh:\n"
-" shell\t\tChế độ _hệ vỏ_\n"
-" dump\t\tHiển thị cấu hình (_đổ_)\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t\t_Trợ giúp_ này\n"
-" -c=? \t\tĐọc tập tin cấu hình này\n"
-" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Ổ cắm dữ liệu đã quá giờ"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:922
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s không phải là một gói DEB hợp lệ."
+msgid "Data transfer failed, server said '%s'"
+msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói « %s »"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Cách sử dụng: apt-extracttemplates tập_tin1 [tập_tin2 ...]\n"
-"\n"
-"[extract: \t\trút;\n"
-"templates: \tnhững biểu mẫu]\n"
-"\n"
-"apt-extracttemplates là một công cụ rút thông tin kiểu cấu hình\n"
-"\tvà biểu mẫu đều từ gói Debian\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t\t_Trợ giúp_ này\n"
-" -t \t\tLập thư muc tạm thời\n"
-"\t\t[temp, tmp: viết tắt cho từ « temporary »: tạm thời]\n"
-" -c=? \t\tĐọc tập tin cấu hình này\n"
-" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "Truy vấn"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "Không thể lấy phiên bản debconf. Debconf có được cài đặt chưa?"
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "Không thể gọi "
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "Danh sách mở rộng gói quá dài"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "Đang kết nối đến %s (%s)..."
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/connect.cc:71
#, c-format
-msgid "Error processing directory %s"
-msgstr "Gặp lỗi khi xử lý thư mục %s"
+msgid "[IP: %s %s]"
+msgstr "[Địa chỉ IP: %s %s]"
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "Danh sách mở rộng nguồn quá dài"
+#: methods/connect.cc:80
+#, c-format
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "Không thể tạo ổ cắm cho %s (f=%u t=%u p=%u)"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "Gặp lỗi khi ghi phần đầu vào tập tin nộị dung"
+#: methods/connect.cc:86
+#, c-format
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "Không thể sở khởi kết nối đến %s:%s (%s)."
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/connect.cc:93
#, c-format
-msgid "Error processing contents %s"
-msgstr "Gặp lỗi khi xử lý nội dung %s"
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "Không thể kết nối đến %s:%s (%s), kết nối đã quá giờ"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"Cách sử dụng: apt-ftparchive [tùy_chọn...] lệnh\n"
-"\n"
-"[ftparchive: FTP archive: kho FTP]\n"
-"\n"
-"Lệnh: \tpackages binarypath [tập_tin_đè [tiền_tố_đường_dẫn]]\n"
-" \tsources srcpath [tập_tin_đè[tiền_tố_đường_dẫn]]\n"
-" \tcontents path\n"
-" \trelease path\n"
-" \tgenerate config [groups]\n"
-" \tclean config\n"
-"\n"
-"[packages: \tnhững gói;\n"
-"binarypath: \tđường dẫn nhị phân;\n"
-"sources: \t\tnhững nguồn;\n"
-"srcpath: \t\tđường dẫn nguồn;\n"
-"contents path: đường dẫn nội dụng;\n"
-"release path: \tđường dẫn bản đã phát hành;\n"
-"generate config [groups]: tạo ra cấu hình [nhóm];\n"
-"clean config: \tcấu hình toàn mới)\n"
-"\n"
-"apt-ftparchive (kho ftp) thì tạo ra tập tin chỉ mục cho kho Debian.\n"
-"Nó hỗ trợ nhiều cách tạo ra, từ cách tự động toàn bộ\n"
-"đến cách thay thế điều hoặt động cho dpkg-scanpackages (dpkg-quét_gói)\n"
-"và dpkg-scansources (dpkg-quét_nguồn).\n"
-"\n"
-"apt-ftparchive tạo ra tập tin Gói ra cây các .deb.\n"
-"Tập tin gói chứa nội dung các trường điều khiển từ mỗi gói,\n"
-"cùng với băm MD5 và kích cỡ tập tin.\n"
-"Hỗ trợ tập tin đè để buộc giá trị Ưu tiên và Phần\n"
-"\n"
-"Tương tự, apt-ftparchive tạo ra tập tin Nguồn ra cây các .dsc\n"
-"Có thể sử dụng tùy chọn « --source-override » (đè nguồn)\n"
-"để ghi rõ tập tin đè nguồn\n"
-"\n"
-"Lnh « packages » (gói) và « sources » (nguồn) nên chạy tại gốc cây.\n"
-"BinaryPath (đường dẫn nhị phân) nên chỉ tới cơ bản của việc tìm kiếm đệ "
-"quy,\n"
-"và tập tin đè nên chứa những cờ đè.\n"
-"Pathprefix (tiền tố đường dẫn) được phụ thêm vào\n"
-"những trường tên tập tin nếu có.\n"
-"Cách sử dụng thí dụ từ kho Debian:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t\t_Trợ giúp_ này\n"
-" --md5 \t\tĐiều khiển cách tạo ra MD5\n"
-" -s=? \t\tTập tin đè nguồn\n"
-" -q \t\t_Im_ (không xuất chi tiết)\n"
-" -d=? \t\tChọn _cơ sở dữ liệu_ nhớ tạm tùy chọn\n"
-" --no-delink \tMở chế độ gỡ lỗi _bỏ liên kết_\n"
-" --contents \tĐiều khiển cách tạo ra tập tin _nội dung_\n"
-" -c=? \t\tĐọc tập tin cấu hình này\n"
-" -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »"
+#: methods/connect.cc:108
+#, c-format
+msgid "Could not connect to %s:%s (%s)."
+msgstr "Không thể kết nối đến %s:%s (%s)."
+
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "Đang kết nối đến %s..."
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "Không có điều đã chọn khớp được"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "Không thể tháo gỡ « %s »"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:173
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "Thiếu một số tập tin trong nhóm tập tin gói « %s »."
+msgid "Temporary failure resolving '%s'"
+msgstr "Việc tháo gỡ « %s » bị lỗi tạm thời"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:176
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "Cơ sở dữ liệu bị hỏng nên đã đổi tên tâp tin thành %s.old (old: cũ)."
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ « %s:%s » (%i)"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:223
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "Cơ sở dữ liệu cũ nên đang cố nâng cấp lên %s"
+msgid "Unable to connect to %s %s:"
+msgstr "Không thể kết nối đến %s %s:"
-#: ftparchive/cachedb.cc:72
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "Không thể truy cập vòng khoá « %s »"
+
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "E: Danh sách lệnh từ « Acquire::gpgv::Options » quá dài nên thoát."
+
+#: methods/gpgv.cc:205
msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"Dạng thức co sở dữ liệu không hợp lệ. Nếu bạn đã nâng cấp từ một phiên bản "
-"apt cũ, hãy gỡ bỏ rồi tạo lại co sở dữ liệu này."
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "Lỗi nội bộ: chữ ký đúng, nhưng không thể quyết định vân tay khóa ?!"
-#: ftparchive/cachedb.cc:77
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "Gặp ít nhất một chữ ký không hợp lệ."
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "Không thể mở tập tin cơ sở dữ liệu %s: %s."
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr ""
+"Không thể thực hiện « %s » để kiểm chứng chữ ký (gnupg có được cài đặt chưa?)"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "Kho không có mục ghi điều khiển"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "Gặp lỗi lạ khi thực hiện gpgv"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "Không thể lấy con chạy"
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "Những chữ ký theo đây là không hợp lệ:\n"
-#: ftparchive/writer.cc:76
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr ""
+"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn sàng:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W: Không thể đọc thư mục %s\n"
+msgid "Couldn't open pipe for %s"
+msgstr "Không thể mở ống dẫn cho %s"
-#: ftparchive/writer.cc:81
+#: methods/gzip.cc:109
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W: Không thể lấy thông tin toàn bộ cho %s\n"
+msgid "Read error from %s process"
+msgstr "Gặp lỗi đọc từ tiến trình %s"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "E: "
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "Đang đợi những phần đầu..."
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "W: "
+#: methods/http.cc:523
+#, c-format
+msgid "Got a single header line over %u chars"
+msgstr "Đã lấy một dòng đầu riêng lẻ chứa hơn %u ky tự"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E: có lỗi áp dụng vào tập tin "
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "Dòng đầu sai"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "Việc quyết định %s bị lỗi"
+#: methods/http.cc:550 methods/http.cc:557
+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ệ"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "Việc di chuyển qua cây bị lỗi"
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr ""
+"Máy phục vụ HTTP đã gởi một dòng đầu Content-Length (độ dài nội dụng) không "
+"hợp lệ"
-#: ftparchive/writer.cc:195
-#, c-format
-msgid "Failed to open %s"
-msgstr "Việc mở %s bị lỗi"
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr ""
+"Máy phục vụ HTTP đã gởi một dòng đầu Content-Range (phạm vị nội dụng) không "
+"hợp lệ"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " Bỏ liên kết %s [%s]\n"
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "Máy phục vụ HTTP đã ngắt cách hỗ trợ phạm vị"
-#: ftparchive/writer.cc:262
-#, c-format
-msgid "Failed to readlink %s"
-msgstr "Việc tạo liên kết lại %s bị lỗi"
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "Không biết dạng ngày"
-#: ftparchive/writer.cc:266
-#, c-format
-msgid "Failed to unlink %s"
-msgstr "Việc bỏ liên kết %s bị lỗi"
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Việc chọn bị lỗi"
-#: ftparchive/writer.cc:273
-#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** Việc liên kết %s đến %s bị lỗi"
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "Kết nối đã quá giờ"
-#: ftparchive/writer.cc:283
-#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " Hết hạn bỏ liên kết của %sB.\n"
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "Gặp lỗi khi ghi vào tập tin xuất"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "Kho không có trường gói"
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "Gặp lỗi khi ghi vào tập tin"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
-#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s không có mục ghi đè\n"
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "Gặp lỗi khi ghi vào tập tin đó"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
-#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " người bảo quản %s là %s không phải %s\n"
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "Gặp lỗi khi đọc từ máy phục vụ : cuối ở xa đã đóng kết nối"
-#: ftparchive/writer.cc:620
-#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s không có mục ghi đè nguồn\n"
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "Gặp lỗi khi đọc từ máy phục vụ"
-#: ftparchive/writer.cc:624
-#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s cũng không có mục ghi đè nhị phân\n"
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "Dữ liệu dòng đầu sai"
-#: ftparchive/contents.cc:317
-#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "Gặp lỗi nội bộ, không thể định vị bộ phạn %s"
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "Kết nối bị ngắt"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc (cấp phát lại) - việc cấp phát bộ nhớ bị lỗi"
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "Gặp lỗi nội bộ"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
-#, c-format
-msgid "Unable to open %s"
-msgstr "Không thể mở %s"
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "Không thể mmap (ảnh xạ bộ nhớ) tâp tin rỗng"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "Điều đè dạng sai %s dòng %lu #1"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "Không thể tạo mmap (ảnh xạ bộ nhớ) kích cỡ %lu byte"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "Điều đè dạng sai %s dòng %lu #2"
+msgid "Selection %s not found"
+msgstr "Không tìm thấy vùng chọn %s"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "Điều đè dạng sai %s dòng %lu #3"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "Không nhận biết viết tắt kiểu: « %c »"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "Việc đọc tập tin đè %s bị lỗi"
+msgid "Opening configuration file %s"
+msgstr "Đang mở tập tin cấu hình %s..."
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/configuration.cc:515
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "Không biết thuật toán nén « %s »"
+msgid "Line %d too long (max %u)"
+msgstr "Dòng %d quá dài (tối đa %u)"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "Dữ liệu xuất đã nén %s cần một bộ nén"
+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."
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "Việc tạo TẬP_TIN* bị lỗi"
+#: apt-pkg/contrib/configuration.cc:630
+#, c-format
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "Gặp lỗi cú pháp %s:%u: thẻ dạng sai"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "Việc tạo tiến trình con bị lỗi"
+#: apt-pkg/contrib/configuration.cc:647
+#, c-format
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "Gặp lỗi cú pháp %s:%u: có rác thêm sau giá trị"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "Nén điều con"
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "Gặp lỗi cú pháp %s:%u: có thể thực hiện chỉ thị chỉ tại mức đầu"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "Lỗi nội bộ, việc tạo %s bị lỗi"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "Gặp lỗi cú pháp %s:%u: quá nhiều điều bao gồm lồng nhau"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "Việc tạo tiến trình con IPC bị lỗi"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "Gặp lỗi cú pháp %s:%u: đã bao gồm từ đây"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "Việc thực hiện bô nén bị lỗi "
+#: apt-pkg/contrib/configuration.cc:707
+#, 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 »"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "bộ giải nén"
+#: apt-pkg/contrib/configuration.cc:741
+#, c-format
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "Gặp lỗi cú pháp %s:%u: rác thêm tại kết thúc tập tin"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "việc nhập/xuất vào tiến trình con/tập tin bị lỗi"
+#: apt-pkg/contrib/progress.cc:153
+#, c-format
+msgid "%c%s... Error!"
+msgstr "%c%s... Lỗi."
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "Việc đọc khi tính MD5 bị lỗi"
+#: apt-pkg/contrib/progress.cc:155
+#, c-format
+msgid "%c%s... Done"
+msgstr "%c%s... Xong"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Problem unlinking %s"
-msgstr "Gặp lỗi khi bỏ liên kết %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "Không biết tùy chọn dòng lệnh « %c » [từ %s]."
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "C"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "Không hiểu tùy chọn dòng lệnh %s"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "Lỗi biên dich biểu thức chính quy - %s"
+msgid "Command line option %s is not boolean"
+msgstr "Tùy chọn dòng lệnh %s không phải bun (đúng/không đúng)"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "Những gói theo đây phụ thuộc vào phần mềm chưa có :"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "Tùy chọn %s cần đến một đối số."
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "but %s is installed"
-msgstr "nhưng mà %s đã được cài đặt"
+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ị> »."
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/cmndline.cc:234
#, c-format
-msgid "but %s is to be installed"
-msgstr "nhưng mà %s sẽ được cài đặt"
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "Tùy chọn %s cần đến một đối số số nguyên, không phải « %s »"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "nhưng mà nó không có khả năng cài đặt"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "Tùy chọn « %s » quá dài"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "nhưng mà nó là gói ảo"
+#: apt-pkg/contrib/cmndline.cc:298
+#, 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 (không đúng)."
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "nhưng mà nó chưa được cài đặt"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "Thao tác không hợp lệ %s"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "nhưng mà nó sẽ không được cài đặt"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "Không thể lấy các thông tin cho điểm gắn kết %s"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " hay"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "Không thể chuyển đổi sang %s"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "Theo đây có những gói MỚI sẽ được cài đặt:"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "Việc lấy cac thông tin cho đĩa CD-ROM bị lỗi"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "Theo đây có những gói sẽ bị GỠ BỎ :"
+#: apt-pkg/contrib/fileutl.cc:82
+#, 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"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "Theo đây có những gói đã được giữ lại:"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "Không thể mở tập tin khóa %s"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "Theo đây có những gói sẽ được nâng cấp:"
+#: apt-pkg/contrib/fileutl.cc:105
+#, 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"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "Theo đây có những gói sẽ được HẠ CẤP:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "Không thể lấy khóa %s"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "Theo đây có những gói sẽ được thay đổi:"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "Đã đợi %s nhưng mà chưa gặp nó"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (do %s) "
+msgid "Sub-process %s received a segmentation fault."
+msgstr "Tiến trình con %s đã nhận một lỗi chia ra từng đoạn."
-#: cmdline/apt-get.cc:547
-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 : theo đây có những gói chủ yếu sẽ bị gỡ bỏ.\n"
-"ĐỪNG làm như thế trừ khi bạn biết làm gì ở đây nó một cách chính xác."
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "Tiến trình con %s đã trả lời mã lỗi (%u)"
-#: cmdline/apt-get.cc:578
+#: apt-pkg/contrib/fileutl.cc:392
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "%lu đã nâng cấp, %lu mới được cài đặt, "
+msgid "Sub-process %s exited unexpectedly"
+msgstr "Tiến trình con %s đã thoát bất ngờ"
-#: cmdline/apt-get.cc:582
+#: apt-pkg/contrib/fileutl.cc:436
#, c-format
-msgid "%lu reinstalled, "
-msgstr "%lu được cài đặt lại, "
+msgid "Could not open file %s"
+msgstr "Không thể mở tập tin %s"
-#: cmdline/apt-get.cc:584
+#: apt-pkg/contrib/fileutl.cc:492
#, c-format
-msgid "%lu downgraded, "
-msgstr "%lu được hạ cấp, "
+msgid "read, still have %lu to read but none left"
+msgstr "đọc, còn cần đọc %lu nhưng mà không có điều còn lại"
-#: cmdline/apt-get.cc:586
+#: apt-pkg/contrib/fileutl.cc:522
#, 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"
+msgid "write, still have %lu to write but couldn't"
+msgstr "ghi, còn cần ghi %lu nhưng mà không thể"
+
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "Gặp lỗi khi đóng tập tin đó"
+
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "Gặp lỗi khi bỏ liên kết tập tin đó"
+
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "Gặp lỗi khi đồng bộ hóa tập tin đó"
+
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "Bộ nhớ tạm gói rỗng"
+
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "Tập tin bộ nhớ tạm gói bị hỏng"
+
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "Tập tin bộ nhớ tạm gói là một phiên bản không tương thích"
-#: cmdline/apt-get.cc:590
+#: apt-pkg/pkgcache.cc:148
#, 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"
+msgid "This APT does not support the versioning system '%s'"
+msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản « %s »"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "Đang sửa cách phụ thuộc..."
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "Bộ nhớ tạm gói được xây dụng cho kiến trức khác"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " đã thất bại."
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "Phụ thuộc"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "Không thể sửa cách phụ thuộc"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "Phụ thuộc trước"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "Không thể cực tiểu hóa bộ nâng cấp"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "Đệ nghị"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " Đã xong"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "Khuyên"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "Có lẽ bạn hãy chay lệnh « apt-get -f install » để sửa hết."
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "Xung đột"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr ""
-"Còn có cách phụ thuộc vào phần mềm chưa có. Như thế thì bạn hãy cố dùng tùy "
-"chọn « -f »."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "Thay thế"
-#: cmdline/apt-get.cc:704
-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-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "Làm cũ"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "Cảnh báo xác thực bị đè.\n"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr "Làm hư"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "Cài đặt những gói này mà không kiểm chứng không? [y/N] [c/K] "
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "quan trọng"
+
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "cần"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "Một số gói không thể được xác thực"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "chuẩn"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "Gập lỗi và đã dùng tùy chọn « -y » mà không có « --force-yes »"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "tùy chọn"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng."
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "thêm"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "Cần phải gỡ bỏ một số gói, nhưng mà khả năng Gỡ bỏ (Remove) đã bị tắt."
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "Đang xây dụng cây cách phụ thuộc..."
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "Gặp lỗi nội bộ: tiến trình Sắp xếp chưa xong"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "Phiên bản ứng cử"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "Không thể khóa thư mục tải về"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "Tạo ra cách phụ thuộc"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr ""
-"Lạ... Hai kích cỡ không khớp được. Hãy gởi thư cho <apt@packages.debian.org>"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+msgid "Reading state information"
+msgstr "Đang đọc thông tin tình trạng"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/depcache.cc:219
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "Cần phải lấy %sB/%sB kho.\n"
+msgid "Failed to open StateFile %s"
+msgstr "Lỗi mở tập tin tình trạng StateFile %s"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/depcache.cc:225
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "Cần phải lấy %sB kho.\n"
+msgid "Failed to write temporary StateFile %s"
+msgstr "Lỗi ghi tập tin tình trạng StateFile tạm thời %s"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/tagfile.cc:102
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "Sau khi đã giải nén, sẻ chiếm %sB sức chứa đĩa thêm.\n"
+msgid "Unable to parse package file %s (1)"
+msgstr "Không thể phân tách tập tin gói %s (1)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "Sau khi đã giải nén, sẽ giải phóng %sB sức chữa đĩa thêm.\n"
+msgid "Unable to parse package file %s (2)"
+msgstr "Không thể phân tách tập tin gói %s (2)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "Không thể quyết định chỗ rảnh trong %s"
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s (địa chỉ Mạng)"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "Bạn chưa có đủ sức chức còn rảnh trong %s."
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "Gặp dòng dạng sai %lu trong danh sách nguồn %s (bản phân phối)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
+#: apt-pkg/sourcelist.cc:95
+#, c-format
+msgid "Malformed line %lu in source list %s (URI parse)"
msgstr ""
-"Xác đinh « Chỉ không đáng kể » (Trivial Only) nhưng mà thao tác này đáng kể."
+"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách địa chỉ Mạng)."
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Có, làm đi."
+#: apt-pkg/sourcelist.cc:101
+#, c-format
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr ""
+"Gặp dòng dạng sai %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+msgid "Malformed line %lu in source list %s (dist parse)"
msgstr ""
-"Bạn sắp làm gì có thể có hai.\n"
-"Để tiếp tục thì hãy gõ cụm từ « %s »\n"
-"?]"
+"Gặp dòng dạng sai %lu trong danh sách nguồn %s (phân tách bản phân phối)"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "Hủy bỏ."
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "Đang mở %s..."
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "Bạn có muốn tiếp tục không? [Y/n] [C/k] "
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
+msgstr "Dòng %u quá dài trong danh sách nguồn %s."
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "Việc gói %s bị lỗi %s\n"
+msgid "Malformed line %u in source list %s (type)"
+msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)."
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "Một số tập tin không tải về được"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "Không biết kiểu « %s » trên dòng %u trong danh sách nguồn %s."
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "Mới tải về xong và trong chế độ chỉ tải về"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (mã nhận biết nhà bán)"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/packagemanager.cc:399
+#, c-format
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"Không thể lấy một số kho, có lẽ hãy chạy lệnh « apt-get update » (apt lấy "
-"cập nhật) hay cố với « --fix-missing » (sửa các điều còn thiếu) không?"
+"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do "
+"vong lăp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu "
+"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn « APT::Force-LoopBreak "
+"» (buộc ngắt vòng lặp)."
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "Không hỗ trợ kiểu tập tin chỉ mục « %s »"
+
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó."
+
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"Chưa hô trợ tùy chọn « --fix-missing » (sửa khi thiếu điều) và trao đổi "
-"phương tiện."
+"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."
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "Không thể sửa những gói còn thiếu."
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "Không thể sửa vấn đề, bạn đã giữ lại một số gói bị ngắt."
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "Đang hủy bỏ cài đặt."
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "Thiếu thư mục danh sách « %spartial »."
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire.cc:63
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "Ghi chú : đang chọn %s thay vì %s\n"
+msgid "Archive directory %spartial is missing."
+msgstr "Thiếu thư mục kho « %spartial »."
-#: cmdline/apt-get.cc:1055
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa lập tùy chọn Nâng cấp.\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "Đang lấy tập tin %li trên %li (%s còn lại)..."
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó\n"
+msgid "Retrieving file %li of %li"
+msgstr "Đang lấy tập tin %li trên %li..."
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "Gói %s là gói ảo được cung cấp do :\n"
+msgid "The method driver %s could not be found."
+msgstr "Không tìm thấy trình điều khiển phương pháp %s."
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [Đã cài đặt]"
+#: apt-pkg/acquire-worker.cc:159
+#, c-format
+msgid "Method %s did not start correctly"
+msgstr "Phương pháp %s đã không bắt đầu cho đúng."
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "Bạn nên chọn một cách dứt khoát gói cần cài."
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "Hãy nạp đĩa có nhãn « %s » vào ổ « %s » và bấm nút Enter."
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:124
#, 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"
+msgid "Packaging system '%s' is not supported"
+msgstr "Không hỗ trợ hệ thống đóng gói « %s »"
+
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp"
+
+#: apt-pkg/clean.cc:57
+#, c-format
+msgid "Unable to stat %s."
+msgstr "Không thể lấy các thông tin về %s."
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
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ó nghĩa là gói còn thiếu,\n"
-"đã trở thành cũ, hay chỉ sẵn sàng từ nguồn khác.\n"
+"Bạn phải để một số địa chỉ Mạng « nguồn » vào « sources.list » (danh sách "
+"nguồn)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "Tuy nhiên, những gói theo đây thay thế nó :"
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "Không thể phân tách hay mở danh sách gói hay tâp tin trạng thái."
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr ""
+"Có lẽ bạn muốn chạy « apt-get update » (lấy cập nhật) để sửa các vấn đề này"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr ""
+"Gặp mục ghi không hợp lệ trong tập tin tùy thích: không có phần đầu Package "
+"(Gói)."
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "Không hiểu kiểu ghim %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "Bộ nhớ tạm có hệ thống điêu khiển phiên bản không tương thích"
+
+#: apt-pkg/pkgcachegen.cc:115
+#, c-format
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "Gặp lỗi khi xử lý %s (NewPackage - gói mới)"
+
+#: apt-pkg/pkgcachegen.cc:130
+#, c-format
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "Gặp lỗi khi xử lý %s (UsePackage1 - dùng gói 1)"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:153
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "Gói %s không có ứng cử cài đặt"
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "Gặp lỗi khi xử lý %s (NewFileDesc1 - tập tin mô tả mới 1)"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "Không thể cài đặt lại %s vì không thể tải về nó.\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "Gặp lỗi khi xử lý %s (UsePackage2 - dùng gói 2)"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s là phiên bản mơi nhất.\n"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "Gặp lỗi khi xử lý %s (NewFileVer1 - tập tin mới, phiên bản 1)"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:213
#, 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 »"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "Gặp lỗi khi xử lý %s (NewVersion1 - phiên bản mới 1)"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "Không tìm thấy phiên bản « %s » cho « %s »"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "Gặp lỗi khi xử lý %s (UsePackage3 - dùng gói 3)"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:221
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "Đã chọn phiên bản %s (%s) cho %s\n"
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "Gặp lỗi khi xử lý %s (NewVersion2 - phiên ban mới 2)"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "Lệnh cập nhật không chấp nhật đối số"
+#: apt-pkg/pkgcachegen.cc:245
+#, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "Gặp lỗi khi xử lý %s (NewFileDesc2 - tập tin mô tả mới 2)"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "Không thể khóa thư mục danh sách"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý."
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-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, đã bỏ qua chúng, hoặc điều cũ được "
-"dùng thay thế."
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý."
-#: cmdline/apt-get.cc:1433
-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-pkg/pkgcachegen.cc:257
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý."
-#: cmdline/apt-get.cc:1465
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr ""
-"Theo đây có những gói đã được cài đặt tự động nên không còn cần thiết lại:"
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý."
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr "Hãy sử dụng lệnh « apt-get autoremove » để gỡ bỏ chúng."
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "Gặp lỗi khi xử lý %s (FindPkg - tìm gói)"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
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."
+"Gặp lỗi khi xử lý %s (CollectFileProvides - tập hợp các trường hợp miễn là "
+"một tập tin)"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ quyết định trường hợp:"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "Không tìm thấy gói %s %s khi xử lý cách phụ thuộc của/vào tập tin"
-#: cmdline/apt-get.cc:1479
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "Lỗi nội bộ : Bộ Gỡ bỏ Tự động đã làm hư gì."
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "Lỗi nội bộ: AllUpgrade (toàn bộ nâng cấp) đã ngắt gì"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "Đang tập hợp các trường hợp « tập tin miễn là »"
-#: cmdline/apt-get.cc:1545
-#, c-format
-msgid "Couldn't find task %s"
-msgstr "Không tìm thấy tác vụ %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Couldn't find package %s"
-msgstr "Không tìm thấy gói %s"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "việc thay đổi tên bị lỗi, %s (%s → %s)."
-#: cmdline/apt-get.cc:1683
-#, 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"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5Sum (tổng kiểm) không khớp được"
-#: cmdline/apt-get.cc:1714
-#, c-format
-msgid "%s set to manual installed.\n"
-msgstr "%s được đặt thành « được cài đặt thủ công ».\n"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+msgid "Hash Sum mismatch"
+msgstr "Sai khớp tổng băm (hash sum)"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "Có lẽ bạn hãy chạy lênh « apt-get -f install » để sửa hết:"
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "Không có khóa công sẵn sàng cho những ID khóa theo đây:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"Gói còn phụ thuộc vào phần mềm chưa có. Hãy cố chạy lệnh « apt-get -f "
-"install » mà không có gói nào (hoặc ghi rõ cách quyết định)."
+"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."
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"Không thể cài đặt một số gói. Có lẽ có nghĩa là bạn đa yêu cầu\n"
-"một trường hợp không thể, hoặc nếu bạn sử dụng bản phân phối\n"
-"bất định, có lẽ chưa tạo một số gói cần thiết,\n"
-"hoặc chưa di chuyển chúng ra phần Incoming (Đến)."
+"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."
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
msgstr ""
-"Vì bạn đã yêu cầu chỉ một thao tác riêng lẻ, rât có thể là\n"
-"gói này đơn giản không có khả năng cài đặt, thì bạn hay\n"
-"thông báo lỗi về gói này."
-
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "Gói bị ngắt"
-
-#: cmdline/apt-get.cc:1787
-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:1876
-msgid "Suggested packages:"
-msgstr "Gói được đệ nghị:"
-
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "Gói được khuyên:"
+"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."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "Đang tính nâng cấp... "
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "Kích cỡ không khớp được"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "Xong"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "Khối nhà bán %s không chứa vân tay"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"Đang dùng điểm lắp đĩa CD-ROM %s\n"
+"Đang lắp đĩa CD-ROM...\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "Phải ghi rõ ít nhất một gói cần lấy nguồn cho nó"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "Đang nhận diện... "
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
+#: apt-pkg/cdrom.cc:563
#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "Không tìm thấy gói nguồn cho %s"
+msgid "Stored label: %s\n"
+msgstr "Nhãn đã lưu : %s\n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "Đang bỏ qua tập tin đã được tải về « %s »\n"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+msgid "Unmounting CD-ROM...\n"
+msgstr "Đang tháo lắp đĩa CD-ROM...\n"
-#: cmdline/apt-get.cc:2191
+#: apt-pkg/cdrom.cc:590
#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "Không đủ sức chứa còn rảnh trong %s"
+msgid "Using CD-ROM mount point %s\n"
+msgstr "Đang dùng điểm lắp đĩa CD-ROM %s\n"
-#: cmdline/apt-get.cc:2196
-#, 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"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "Đang tháo lắp đĩa CD-ROM...\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "Cần phải lấy %sB kho nguồn.\n"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "Đang đợi đĩa...\n"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "Lấy nguồn %s\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "Đang lắp đĩa CD-ROM...\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "Việc lấy một số kho bị lỗi."
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/cdrom.cc:678
#, 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"
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr ""
+"Tìm thấy %u chỉ mục gói, %u chỉ mục nguồn, %u chỉ mục dịch và %u chữ ký\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/cdrom.cc:715
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "Lệnh giải nén « %s » bị lỗi.\n"
+msgid "Found label '%s'\n"
+msgstr "Nhãn đã lưu : « %s »\n"
-#: cmdline/apt-get.cc:2277
-#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "Hãy kiểm tra xem gói « dpkg-dev » có được cài đặt chưa.\n"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "Lệnh xây dụng « %s » bị lỗi.\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"Tên đĩa này:\n"
+"%s\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "Tiến trình con bị lỗi"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "Đang sao chép các danh sách gói..."
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "Đang ghi danh sách nguồn mới...\n"
-#: cmdline/apt-get.cc:2329
-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ó"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "Các mục nhập danh sách nguồn cho đĩa này:\n"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, 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"
+msgid "Wrote %i records.\n"
+msgstr "Mới ghi %i mục ghi.\n"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, 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"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "Mới ghi %i mục ghi với %i tập tin còn thiếu.\n"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "cách phụ thuộc %s cho %s không thể được thỏa vì không tìm thấy gọi %s"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "Mới ghi %i mục ghi với %i tập tin không khớp với nhau\n"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
msgstr ""
-"cách phụ thuộc %s cho %s không thể được thỏa vì không có phiên bản sẵn sàng "
-"của gói %s có thể thỏa điều kiện phiên bản."
+"Mới ghi %i mục ghi với %i tập tin còn thiếu và %i tập tin không khớp với "
+"nhau\n"
-#: cmdline/apt-get.cc:2518
+#: apt-pkg/deb/dpkgpm.cc:513
#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr ""
-"Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s quá mới"
+msgid "Directory '%s' missing"
+msgstr "Thiếu thư mục « %s »"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:596
#, 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."
+msgid "Preparing %s"
+msgstr "Đang chuẩn bị %s..."
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:597
#, 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:2561
-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:2593
-msgid "Supported modules:"
-msgstr "Mô-đun đã hỗ trợ :"
+msgid "Unpacking %s"
+msgstr "Đang mở gói %s..."
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-#| msgid ""
-#| "Usage: apt-get [options] command\n"
-#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-#| " apt-get [options] source pkg1 [pkg2 ...]\n"
-#| "\n"
-#| "apt-get is a simple command line interface for downloading and\n"
-#| "installing packages. The most frequently used commands are update\n"
-#| "and install.\n"
-#| "\n"
-#| "Commands:\n"
-#| " update - Retrieve new lists of packages\n"
-#| " upgrade - Perform an upgrade\n"
-#| " install - Install new packages (pkg is libc6 not libc6.deb)\n"
-#| " remove - Remove packages\n"
-#| " purge - Remove and purge packages\n"
-#| " source - Download source archives\n"
-#| " build-dep - Configure build-dependencies for source packages\n"
-#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-#| " dselect-upgrade - Follow dselect selections\n"
-#| " clean - Erase downloaded archive files\n"
-#| " autoclean - Erase old downloaded archive files\n"
-#| " check - Verify that there are no broken dependencies\n"
-#| "\n"
-#| "Options:\n"
-#| " -h This help text.\n"
-#| " -q Loggable output - no progress indicator\n"
-#| " -qq No output except for errors\n"
-#| " -d Download only - do NOT install or unpack archives\n"
-#| " -s No-act. Perform ordering simulation\n"
-#| " -y Assume Yes to all queries and do not prompt\n"
-#| " -f Attempt to continue if the integrity check fails\n"
-#| " -m Attempt to continue if archives are unlocatable\n"
-#| " -u Show a list of upgraded packages as well\n"
-#| " -b Build the source package after fetching it\n"
-#| " -V Show verbose version numbers\n"
-#| " -c=? Read this configuration file\n"
-#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-#| "pages for more information and options.\n"
-#| " This APT has Super Cow Powers.\n"
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"Cách sử dụng: apt-get [tùy_chọn...] lệnh\n"
-" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n"
-" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n"
-"\n"
-"[get: \tlấy\n"
-"install: \tcài đặt\n"
-"remove: \tgỡ bỏ\n"
-"source: \tnguồn]\n"
-"\n"
-"apt-get là một giao diện dòng lệnh đơn giản để tải về và cài đặt gói.\n"
-"Những lệnh đã dùng thường nhất là update (cập nhật) và install (cài đặt).\n"
-"\n"
-"Lệnh:\n"
-" update\t\tLấy danh sách gói mới (_cập nhật_)\n"
-" upgrade \t_Nâng cập_ \n"
-" install \t\t_Cài đặt_ gói mới (gói là libc6 không phải libc6.deb)\n"
-" remove \t_Gỡ bỏ_ gói\n"
-" purge\t\tGỡ bỏ và _tẩy_ gói\n"
-" source \t\tTải về kho _nguồn_\n"
-" build-dep \tĐịnh cấu hình _cách phụ thuộc khi xây dụng_, cho gói nguồn\n"
-" dist-upgrade \t_Nâng cấp bản phân phối_,\n"
-"\t\t\t\t\thãy xem trang hướng dẫn (man) apt-get(8)\n"
-" dselect-upgrade \t\tTheo cách chọn dselect (_nâng cấp_)\n"
-" clean \t\tXóa bỏ các tập tin kho đã tải về (_làm sạch_)\n"
-" autoclean \tXóa bỏ các tập tin kho cũ đã tải về (_tự động làm sạch_)\n"
-" check \t\t_Kiểm chứng_ không có cách phụ thuộc bị ngắt\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t_Trợ giúp_ này.\n"
-" -q \tDữ liệu xuất có thể ghi lưu - không có cái chỉ tiến trình (_im_)\n"
-" -qq \tKhông xuất thông tin nào, trừ lỗi (_im im_)\n"
-" -d \tChỉ _tải về_, ĐỪNG cài đặt hay giải nén kho\n"
-" -s \tKhông hoạt đông. _Mô phỏng_ sắp xếp\n"
-" -y \tGiả sử trả lời _Có_ (yes) mọi khi gặp câu hỏi;\n"
-"\t\t\t\t\tđừng nhắc người dùng gõ gì\n"
-" -f \t\tCố tiếp tục lại nếu việc kiểm tra tính nguyên vẹn _thất bại_\n"
-" -m \tCố tiếp tục lại nếu không thể định vị kho\n"
-" -u \tCũng hiện danh sách các gói đã _nâng cấp_\n"
-" -b \t_Xây dụng_ gói nguồn sau khi lấy nó\n"
-" -V \tHiện số thứ tự _phiên bản chi tiết_\n"
-" -c=? \tĐọc tập tin cấu hình ấy\n"
-" -o=? \tLập tùy chọn nhiệm ý, v.d. -o dir::cache=/tmp\n"
-"Để tim thông tin và tùy chọn thêm thì hãy xem trang hướng dẫn apt-get(8), "
-"sources.list(5) và apt.conf(5).\n"
-" Trình APT này có năng lực của bò siêu.\n"
+#: apt-pkg/deb/dpkgpm.cc:602
+#, c-format
+msgid "Preparing to configure %s"
+msgstr "Đang chuẩn bị cấu hình %s..."
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "Lần tìm "
+#: apt-pkg/deb/dpkgpm.cc:603
+#, c-format
+msgid "Configuring %s"
+msgstr "Đang cấu hình %s..."
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "Lấy:"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, c-format
+msgid "Processing triggers for %s"
+msgstr "Đang xử lý các bộ gây nên cho %s"
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "Bỏq "
+#: apt-pkg/deb/dpkgpm.cc:608
+#, c-format
+msgid "Installed %s"
+msgstr "Đã cài đặt %s"
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "Lỗi "
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
+#, c-format
+msgid "Preparing for removal of %s"
+msgstr "Đang chuẩn bị gỡ bỏ %s..."
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "Mới lấy %sB trong %s (%sB/g).\n"
+msgid "Removing %s"
+msgstr "Đang gỡ bỏ %s..."
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [Hoạt động]"
+msgid "Removed %s"
+msgstr "Đã gỡ bỏ %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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 vật chứa: hãy nạp đĩa có nhãn\n"
-" « %s »\n"
-"vào ổ « %s » và bấm nút Enter\n"
+msgid "Preparing to completely remove %s"
+msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s..."
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "Không biết mục ghi gói."
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "Mới gỡ bỏ hoàn toàn %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"Cách sử dụng: apt-sortpkgs [tùy_chọn...] tập_tin1 [tập_tin2 ...]\n"
-"\n"
-"[sortpkgs: sort packages: sắp xếp các gói]\n"
-"\n"
-"apt-sortpkgs là một công cụ đơn giản để sắp xếp tập tin gói.\n"
-"Tùy chon « -s » dùng để ngụ ý kiểu tập tin.\n"
-"\n"
-"Tùy chọn:\n"
-" -h \t_Trợ giúp_ này\n"
-" -s \tSắp xếp những tập tin _nguồn_\n"
-" -c=? \tĐọc tập tin cấu hình này\n"
-" -o=? \tLập tùy chọn cấu hình nhiệm ý, v.d. « -o dir::cache=/tmp »\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
+msgstr "Không thể ghi lưu, openpty() bị lỗi (« /dev/pts » chưa lắp ?)\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "Thiết lập mặc định sai."
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "Không thể vá lỗi trong tập tin %s"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "Hãy bấm phím Enter để tiếp tục lại."
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "Kết nối bị đóng quá sớm."
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "Gập một số lỗi khi giải nén. Sẽ cấu hình"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "Dòng %d quá dài (tối đa %u)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "những gói đã đươc cài đặt. Có lẽ sẽ gây ra lỗi trùng"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "Gặp lỗi khi xử lý %s (NewFileDesc1 - tập tin mô tả mới 1)"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr ""
-"hoặc lỗi khi không có phần mềm mà gói khác phụ thuộc vào nó. Không có sao, "
-"chỉ những lỗi"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "Gặp lỗi khi xử lý %s (NewFileDesc2 - tập tin mô tả mới 2)"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr ""
-"ở trên thông điệp này là quan trọng. Hãy sửa chúng và chạy lại [I]nstall "
-"(cài đặt)"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "Nhãn đã lưu : %s\n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "Đang hợp nhất các thông tin sẵn sàng..."
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr ""
+#~ "Tìm thấy %u chỉ mục gói, %u chỉ mục nguồn, %u chỉ mục dịch và %u chữ ký\n"
#~ msgid "openpty failed\n"
#~ msgstr "openpty bị lỗi\n"
# This file is put in the public domain.
# Tchaikov <tchaikov@sjtu.org>, 2005,2007.
# Carlos Z.F. Liu <carlosliu@users.sourceforge.net>, 2004,2006
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.23\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2007-03-29 17:14+0800\n"
"Last-Translator: Kov Chai <tchaikov@sjtu.org>\n"
"Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "无法读取光盘数据库 %s"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"请使用 apt-cdrom,通过它就可以让 APT 能识别该光盘。apt-get upgdate 不能被用来"
-"加入新的光盘。"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "错误的光盘"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "找不到光盘。"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "无法找到该文件"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "无法读取状态"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "无法设置文件的修改日期"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "无效的 URI,本地的 URI 不能以 // 开头"
+msgid "Unable to locate package %s"
+msgstr "未发现软件包 %s"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "正在登录"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "软件包总数(按名称计):"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "无法获知对方主机名"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " 普通软件包:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "无法获知本地主机名"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " 完全虚拟软件包:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "服务器拒绝了我们的连接,它响应道:%s"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " 单虚拟软件包:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "USER 指令出错,服务器响应道:%s"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " 混合虚拟软件包:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "PASS 指令出错,服务器响应道:%s"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " 缺漏的:"
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr ""
-"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "按版本共计:"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "登录脚本命令“%s”出错,服务器响应道:%s"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "按版本共计:"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "TYPE 指令出错,服务器响应道:%s"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "按依赖关系共计:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "连接超时"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "按版本/文件关系共计:"
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "服务器关闭了连接"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "按版本/文件关系共计:"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "读错误"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "提供映射共计:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "回应超出了缓存区大小。"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Glob 字串共计:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "协议有误"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "依赖关系版本名所占空间共计:"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "写文件出错"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Slack 空间共计:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "不能创建套接字"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "总占用空间:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "无法连接上数据套接字,连接超时"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "软件包文件 %s 尚未同步(sync)。"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "失败"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "您必须明确地给出一个表达式"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "æ\97 æ³\95è¿\9eæ\8e¥è¢«å\8a¨æ¨¡å¼\8fç\9a\84å¥\97æ\8e¥å\97ã\80\82"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "没æ\9c\89å\8f\91ç\8e°å\90»å\90\88ç\9a\84软件å\8c\85"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo 无法得到侦听套接字"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "软件包文件:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "无法绑定套接字"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "缓存尚未同步(sync),无法交差引证(x-ref)一个软件包文件"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "无法在套接字上侦听"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "无法确定套接字的名字"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "被锁定(pinned)的软件包:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "无法发出 PORT 指令"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(没有找到)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "无法识别的地址族 %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr " 已安装:"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT 指令出错,服务器响应道:%s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(无)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "数据套接字连接超时"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " 候选的软件包:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "无法接受连接"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " 软件包锁(Pin):"
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "把文件加入散列表时出错"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " 版本列表:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "无法获取文件,服务器响应道“%s”"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "数据套接字超时"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "数据传送出错,服务器响应道“%s”"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s for %s %s ,编译于 %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "查询"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "无法调用 "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "正在连接 %s (%s)"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"用法: apt-cache [选项] 命令\n"
+" apt-cache [选项] add 文件甲 [文件乙 ...]\n"
+" apt-cache [选项] showpkg 软件包甲 [软件包乙 ...]\n"
+" apt-cache [选项] showsrc 软件包甲 [软件包乙 ...]\n"
+"\n"
+"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n"
+"缓存文件,也用来在那些文件中查询相关信息\n"
+"\n"
+"命令:\n"
+" add - 往源缓存加入一个软件包文件\n"
+" gencaches - 一并生成软件包和源代码包的缓存\n"
+" showpkg - 显示某个软件包的全面信息\n"
+" showsrc - 显示源文件的各项记录\n"
+" stats - 显示一些基本的统计信息\n"
+" dump - 简要显示整个缓存文件的内容\n"
+" dumpavail - 把所有有效的包文件列表打印到标准输出\n"
+" unmet - 显示所有未满足的依赖关系\n"
+" search - 根据正则表达式搜索软件包列表\n"
+" show - 以便于阅读的格式介绍该软件包\n"
+" depends - 原原本本地显示该软件包的依赖信息\n"
+" rdepends - 显示所有依赖于该软件包的软件包名字\n"
+" pkgnames - 列出所有软件包的名字\n"
+" dotty - 生成可用 GraphVis 处理的软件包关系图\n"
+" xvcg - 生成可用 xvcg 处理的软件包的关系图\n"
+" policy - 显示软件包的安装设置状态\n"
+"\n"
+"选项:\n"
+" -h 本帮助文档。\n"
+" -p=? 软件包的缓存。\n"
+" -s=? 源代码包的缓存。\n"
+" -q 关闭进度显示。\n"
+" -i 仅为 unmet 命令显示重要的依赖关系。\n"
+" -c=? 读取指定配置文件\n"
+" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
+"若要深入了解,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n"
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "请给这张光盘起个名字,比如说“Debian 2.1r1 Disk 1”"
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "请把光盘碟片插入驱动器再按回车键"
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "无法发起与 %s:%s (%s) 的连接"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "请对您的光盘套件中的其它光盘重复相同的操作。"
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "无法连接上 %s:%s (%s),连接超时"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "参数没有成对"
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "无法连接上 %s:%s (%s)。"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"用法:apt-config [选项] 命令\n"
+"\n"
+"apt-config 是一个用于读取 APT 配置文件的简单工具\n"
+"\n"
+"命令:\n"
+" shell - Shell 模式\n"
+" dump - 显示配置文件\n"
+"\n"
+"选项:\n"
+" -h 本帮助文本。\n"
+" -c=? 读取指定的配置文件\n"
+" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Connecting to %s"
-msgstr "正在连接 %s"
+msgid "%s not a valid DEB package."
+msgstr "%s 不是一个有效的 DEB 软件包。"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "无法解析域名“%s”"
+#: cmdline/apt-extracttemplates.cc:232
+msgid ""
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"用法: apt-extracttemplates 文件甲 [文件乙 ...]\n"
+"\n"
+"apt-extracttemplates 是用来从 debian 软件包中解压出配置文件和模板\n"
+"信息的工具\n"
+"\n"
+"选项:\n"
+" -h 本帮助文本\n"
+" -t 设置 temp 目录\n"
+" -c=? 读指定的配置文件\n"
+" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
-#: methods/connect.cc:173
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "æ\9a\82æ\97¶ä¸\8dè\83½è§£æ\9e\90å\9f\9få\90\8dâ\80\9c%sâ\80\9d"
+msgid "Unable to write to %s"
+msgstr "æ\97 æ³\95å\86\99å\85¥ %s"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "解析“%s:%s”时,出现了某些故障 (%i)"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "不能连接上 %s %s:"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "软件包的扩展列表超长"
-#: methods/gpgv.cc:65
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "无法访问密匙:“%s”"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "错误:Acquire::gpgv::Options 的参数列表超长。结束运行。"
+msgid "Error processing directory %s"
+msgstr "处理目录 %s 时出错"
-#: methods/gpgv.cc:204
-msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "内部错误:签名正确无误,但是无法确认密钥的指纹(key fingerprint)?!"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "源扩展列表超长"
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "至少发现一个无效的签名。"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "将 header 写到 contents 文件时出错"
-#: methods/gpgv.cc:213
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "无法运行\"%s\"以便验证签名(您安装了 gnupg 么?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "运行 gpgv 时发生未知错误"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "下列签名无效:\n"
+msgid "Error processing contents %s"
+msgstr "处理 Contents %s 时出错"
-#: methods/gpgv.cc:256
+#: ftparchive/apt-ftparchive.cc:553
msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "由于没有公钥,下列签名无法进行验证:\n"
-
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "无法读取 %s 的状态"
-
-#: methods/gzip.cc:64
-#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "无法为 %s 开启管道"
-
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "从 %s 进程读取数据出错"
-
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "正在等待报头"
-
-#: methods/http.cc:523
-#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "受到了一行报头条目,它的长度超过了 %u 个字符"
-
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "错误的报头条目"
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"用法: apt-ftparchive [选项] 命令\n"
+"命令: packages 二进制软件包搜索路径 [overridefile [路径前缀]]\n"
+" sources 源代码包搜索路径 [overridefile [路径前缀]]\n"
+" contents 搜索路径\n"
+" release 搜索路径\n"
+" generate 配置文件 [groups]\n"
+" clean 配置文件\n"
+"\n"
+"apt-ftparchive 被用来为 Debian 软件包生成索引文件。它能支持\n"
+"多种生成索引的方式,从全自动的索引生成到在功能上取代 dpkg-scanpackages \n"
+"和 dpkg-scansources,都能游刃有余\n"
+"\n"
+"apt-ftparchive 能依据一个由 .deb 文件构成的文件树生成 Package 文件。\n"
+"Package 文件里不仅注有每个软件包的 MD5 校验码和文件大小,\n"
+"还有软件包的所有控制字段的内容。该软件同时支持 override 文件,\n"
+"通过它可以强制指定软件包的优先级及其所属的软件类别。\n"
+"\n"
+"与上面类似,apt-ftparchive 也能由 .dsc 的文件树生成 Source 文件。\n"
+"可以通过使用 --source-override 选项来指定一个 override 文件\n"
+"\n"
+"使用“packages”和“source”命令时,必须在文件树的根部执行本程序。\n"
+"二进制包的搜索路径一定要是递归搜索的底层,而且 override 文件里\n"
+"应该注明 override 的标志。若指定了路径前缀,那么它会被加到文件名前面。\n"
+"下面有个来自 Debian 文档的例子:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386 > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"选项:\n"
+" -h 本帮助文档\n"
+" --md5 使之生成 MD5 校验和\n"
+" -s=? 源代码包 override 文件\n"
+" -q 输出精简信息\n"
+" -d=? 指定可选的缓存数据库\n"
+" -d=? 使用另一个可选的缓存数据库\n"
+" --no-delink 开启delink的调试模式\n"
+" --contents 使之生成控制内容文件\n"
+" -c=? 读取指定配置文件\n"
+" -o=? 设置任意指定的配置选项"
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "该 http 服务器发送了一个无效的应答报头"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "没有任何选定项是匹配的"
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "该 http 服务器发送了一个无效的 Content-Length 报头"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "软件包文件组“%s”中缺少一些文件"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "该 http 服务器发送了一个无效的 Content-Range 报头"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "缓存数据库被损坏了,该数据库文件的文件名已改成 %s.old"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "该 http 服务器的 range 支持不正常"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB 已过时,现试图进行升级 %s"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "无法识别的日期格式"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr ""
+"DB 格式是无效的。如果你是从一个老版本的 apt 升级而来,请删除数据库并重建它。"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "select 调用出错"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "无法打开 DB 文件 %s:%s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "连接服务器超时"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "无法读取 %s 的状态"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "å\86\99è¾\93å\87ºæ\96\87ä»¶æ\97¶å\87ºé\94\99"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "å\98档没æ\9c\89å\8c\85å\90«æ\8e§å\88¶å\97段"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "写文件时出错"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "无法获得游标(cursor)"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "写文件时出错"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "警告:无法读取目录 %s\n"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "从服务器读取数据时出错,对方关闭了连接"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "警告:无法对 %s 进行统计\n"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "从服务器读取数据出错"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "错误:"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "错误的报头数据"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "警告:"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "连接失败"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "错误:处理文件时出错 "
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "内部错误"
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#, c-format
+msgid "Failed to resolve %s"
+msgstr "无法解析路径 %s"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "无法 mmap 一个空文件"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "无法遍历目录树"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "无法 mmap %lu 字节的数据"
+msgid "Failed to open %s"
+msgstr "无法打开 %s"
-#: apt-pkg/contrib/strutl.cc:978
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Selection %s not found"
-msgstr "没有发现您的所选 %s"
+msgid " DeLink %s [%s]\n"
+msgstr " DeLink %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "æ\97 æ³\95è¯\86å\88«ç\9a\84ç±»å\9e\8b缩å\86\99ï¼\9aâ\80\9c%câ\80\9d"
+msgid "Failed to readlink %s"
+msgstr "æ\97 æ³\95读å\8f\96符å\8f·é\93¾æ\8e¥ %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Opening configuration file %s"
-msgstr "正在打开配置文件 %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "软件包来源档的第 %d 行超长了(长度限制为 %d)。"
+msgid "Failed to unlink %s"
+msgstr "无法 unlink %s"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "语法错误 %s:%u:配置小节没有以名字开头"
+msgid "*** Failed to link %s to %s"
+msgstr "*** 无法将 %s 链接到 %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "语法错误 %s:%u:标签格式有误"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " 达到了 DeLink 的上限 %sB。\n"
-#: apt-pkg/contrib/configuration.cc:642
-#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "语法错误 %s:%u: 配置值后有多余的无意义数据"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "存档没有包含软件包(package)字段"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "语法错误 %s:%u: 只能在顶层配置文件中使用指示"
+msgid " %s has no override entry\n"
+msgstr " %s 中没有 override 项\n"
-#: apt-pkg/contrib/configuration.cc:689
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "语法错误 %s:%u:太多的嵌套 include 命令"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s 的维护者 %s 并非 %s\n"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "语法错误 %s:%u: Included from here"
+msgid " %s has no source override entry\n"
+msgstr " %s 没有源代码的 override 项\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "语法错误 %s:%u: 不支持的指令“%s”"
+msgid " %s has no binary override entry either\n"
+msgstr " %s 中没有二进制文件的 override 项\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/contents.cc:321
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "语法错误 %s:%u: 文件尾部有多余的无意义的数据"
+msgid "Internal error, could not locate member %s"
+msgstr "内部错误,无法定位包内文件 %s"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
-#, c-format
-msgid "Unable to read %s"
-msgstr "无法读取 %s"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - 无法再分配内存"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... 有错误!"
+msgid "Unable to open %s"
+msgstr "无法打开 %s"
-#: apt-pkg/contrib/progress.cc:155
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... 完成"
+msgid "Malformed override %s line %lu #1"
+msgstr "override 文件 %s 第 %lu 行的格式有误 #1"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "未知的命令行选项“%c”[来自 %s]"
+msgid "Malformed override %s line %lu #2"
+msgstr "override 文件 %s 第 %lu 行的格式有误 #2"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "无法识别命令行选项 %s"
+msgid "Malformed override %s line %lu #3"
+msgstr "override 文件 %s 第 %lu 行的格式有误 #3"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "命令行选项 %s 不是个布尔值"
+msgid "Failed to read the override file %s"
+msgstr "无法读取 override 文件 %s"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an argument."
-msgstr "选项 %s 要求有一个参数"
+msgid "Unknown compression algorithm '%s'"
+msgstr "未知的压缩算法“%s”"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定"
+msgid "Compressed output %s needs a compression set"
+msgstr "压缩后的输出文件 %s 要求有一个压缩文件集合"
-#: apt-pkg/contrib/cmndline.cc:234
-#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "无法为子进程创建 IPC 管道"
-#: apt-pkg/contrib/cmndline.cc:265
-#, c-format
-msgid "Option '%s' is too long"
-msgstr "选项“%s”超长"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "无法创建 FILE*"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "不能识别参数 %s,请用 true 或 false"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "无法 fork"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "无效的操作 %s"
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "压缩子进程"
-#: apt-pkg/contrib/cdromutl.cc:52
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "无法读取文件系统挂载点 %s 的状态"
+msgid "Internal error, failed to create %s"
+msgstr "内部错误,无法建立 %s"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
-#, c-format
-msgid "Unable to change to %s"
-msgstr "无法切换工作目录到 %s"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "无法建立子进程的 IPC 管道"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "无法读取光盘的状态"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "无法执行压缩程序"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "由于文件系统为只读,因而无法使用文件锁%s"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "解压程序"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "无法打开锁文件 %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "无法对子进程或文件进行读写"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "无法在 nfs 文件系统上使用文件锁 %s"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "在计算 MD5 校验和时,无法读取数据"
-#: apt-pkg/contrib/fileutl.cc:109
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Could not get lock %s"
-msgstr "无法获得锁 %s"
+msgid "Problem unlinking %s"
+msgstr "在 unlink %s 时出错"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "等待子进程 %s 的退出,但是它并不存在"
+msgid "Failed to rename %s to %s"
+msgstr "无法将 %s 重命名为 %s"
-#: apt-pkg/contrib/fileutl.cc:387
-#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "子进程 %s 发生了段错误"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:390
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "子进程 %s 返回了一个错误号 (%u)"
+msgid "Regex compilation error - %s"
+msgstr "编译正则表达式时出错 - %s"
-#: apt-pkg/contrib/fileutl.cc:392
-#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "子进程 %s 异常退出了"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "下列的软件包有不能满足的依赖关系:"
-#: apt-pkg/contrib/fileutl.cc:436
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "Could not open file %s"
-msgstr "无法打开文件 %s"
+msgid "but %s is installed"
+msgstr "但是 %s 已经安装了"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "读文件时出错,还剩 %lu 字节没有读出"
+msgid "but %s is to be installed"
+msgstr "但是 %s 正要被安装"
-#: apt-pkg/contrib/fileutl.cc:522
-#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "写文件时出错,还剩 %lu 字节没有保存"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "但却无法安装它"
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "关闭文件时出错"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "但是它只是个虚拟软件包"
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "用 unlink 删除文件时出错"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "但是它还没有被安装"
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "同步文件时出错"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "但是它将不会被安装"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "软件包缓存区是空的"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr " 或"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "软件包缓存区文件损坏了"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "下列【新】软件包将被安装:"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "软件包缓存区文件的版本不兼容"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "下列软件包将被【卸载】:"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "本程序目前不支持“%s”这个版本控制系统"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "下列的软件包的版本将保持不变:"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "软件包缓存区是为其它架构的主机构造的"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "下列的软件包将被升级:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "ä¾\9dèµ\96"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "ä¸\8bå\88\97软件å\8c\85å°\86被ã\80\90é\99\8d级ã\80\91ï¼\9a"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "预依赖"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "下列被要求保持版本不变的软件包将被改变:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "建议"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s (是由于 %s) "
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "推荐"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
+msgstr ""
+"【警告】:下列的重要软件包将被卸载 \n"
+"请勿尝试,除非您确实知道您在做什么!"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "冲突"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "共升级了 %lu 个软件包,新安装了 %lu 个软件包,"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "替换"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "共重新安装了 %lu 个软件包,"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "废弃"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "降级了 %lu 个软件包,"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
-msgstr ""
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "要卸载 %lu 个软件包,有 %lu 个软件未被升级。\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "重要"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "有 %lu 个软件包没有被完全安装或卸载。\n"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "必要"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "正在更正依赖关系..."
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "标准"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr " 失败。"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "可选"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "无法更正依赖关系"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "额外"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "无法最小化要升级的软件包集合"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "正在分析软件包的依赖关系树"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " 完成"
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "候选版本"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "您也许需要运行“apt-get -f install”来纠正上面的错误。"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "生成依赖关系"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "不能满足依赖关系。不妨试一下 -f 选项。"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "正在合并现有信息"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "【警告】:下列的软件包不能通过验证!"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "无法打开 %s"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "忽略了认证警告。\n"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "无法写入文件 %s"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "不经验证就安装这些软件包么?[y/N] "
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "无法解析软件包文件 %s (1)"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "有些软件包不能通过验证"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "无法解析软件包文件 %s (2)"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误 (URI)"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist)"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (URI parse)"
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "内部错误,Ordering 未能完成"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (Ablolute dist)"
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "无法对下载目录加锁"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist parse)"
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "无法读取安装源列表。"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "正在打开 %s"
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "怪了……文件大小不符,发信给 apt@packages.debian.org 吧"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "软件包来源档 %2$s 的第 %1$u 行超长了。"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "需要下载 %sB/%sB 的软件包。\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (type)"
+msgid "Need to get %sB of archives.\n"
+msgstr "需要下载 %sB 的软件包。\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "解压缩后会消耗掉 %sB 的额外空间。\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "解压缩后将会空出 %sB 的空间。\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "æ\97 æ³\95è¯\86å\88«å\9c¨å®\89è£\85æº\90å\88\97表 %3$s é\87\8cï¼\8c第 %2$u è¡\8cä¸ç\9a\84软件å\8c\85ç±»å\88«â\80\9c%1$sâ\80\9d"
+msgid "Couldn't determine free space in %s"
+msgstr "æ\97 æ³\95è\8e·ç\9f¥æ\82¨å\9c¨ %s ä¸\8aç\9a\84空ä½\99空é\97´"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (vendor id)"
+msgid "You don't have enough free space in %s."
+msgstr "您在 %s 中没有足够的空余空间。"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "虽然您指定了 Trivial Only,但这不是个日常(trivial)操作。"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "Yes, do as I say!"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可"
-"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::"
-"Force-LoopBreak 选项。"
+"您的操作会导致潜在的危害。\n"
+"若还想继续的话,就输入下面的短句“%s”\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "不支持索引文件类型“%s”"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "中止执行。"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "您希望继续执行吗?[Y/n]"
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。"
+msgid "Failed to fetch %s %s\n"
+msgstr "无法下载 %s %s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "有一些文件下载失败"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "下载完毕,目前是“仅下载”模式"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
msgstr ""
-"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的"
-"缘故。"
+"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项"
+"再试试?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr ""
-"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关"
-"系。"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "目前还不支持 --fix-missing 和介质交换(media swapping)"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "无法更正缺少的软件包。"
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "放弃安装。"
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "软件包列表的目录 %spartial 不见了。"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "注意,我选了 %s 而非 %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "找不到“%spartial”这个目录。"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "正在下载 %li 个文件中的第 %li 个(还有 %s 个)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "软件包 %s 还未安装,因而不会被卸载\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "正在下载 %2$li 个文件中的 %1$li 个"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "软件包 %s 是一个由下面的软件包提供的虚拟软件包:\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr " [已安装]"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "请您明确地选择一个来进行安装。"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。"
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "可是下列的软件包取代了它:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "è\8e·å\8f\96软件å\8c\85ç\9a\84æ¸ é\81\93 %s æ\89\80é\9c\80ç\9a\84驱å\8a¨ç¨\8båº\8f没æ\9c\89æ£å¸¸å\90¯å\8a¨ã\80\82"
+msgid "Package %s has no installation candidate"
+msgstr "软件å\8c\85 %s è¿\98没æ\9c\89å\8f¯ä¾\9bå®\89è£\85ç\9a\84å\80\99é\80\89è\80\85"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "请把标有 “%s” 的碟片插入驱动器“%s”再按回车键。"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "不能重新安装 %s,因为无法下载它。\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "不支持“%s”打包系统"
+msgid "%s is already the newest version.\n"
+msgstr "%s 已经是最新的版本了。\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "无法确定适合的打包系统类型"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "未找到“%2$s”的“%1$s”发布版本"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "æ\97 æ³\95读å\8f\96 %s ç\9a\84ç\8a¶æ\80\81ã\80\82"
+msgid "Version '%s' for '%s' was not found"
+msgstr "æ\9cªæ\89¾å\88°â\80\9c%2$sâ\80\9dç\9a\84â\80\9c%1$sâ\80\9dç\89\88æ\9c¬"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "您必须在您的 sources.list 写入一些“软件包源”的 URI"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "选定了版本为 %s (%s) 的 %s\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "无法读取安装源列表。"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr " update 命令是不需任何参数的"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "无法解析或打开软件包的列表或是状态文件。"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "无法对状态列表目录加锁"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "您可能需要运行 apt-get update 来解决这些问题"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr ""
+"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "偏好设定(preferences)文件中发现有无效的记录,无 Package 字段头"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "无法识别锁定的类型(pin type) %s"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "下列【新】软件包将被安装:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "没有为版本锁定指定优先级(或为零)"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "软件包暂存区使用的是不兼容的版本控制系统"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "处理 %s (NewPackage)时出错"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "下列的信息可能会对解决问题有所帮助:"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "å¤\84ç\90\86 %s (UsePackage1)æ\97¶å\87ºé\94\99"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "å\86\85é\83¨é\94\99误ï¼\8cproblem resolver å\9d\8fäº\8bäº\86"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "内部错误,AllUpgrade 坏事了"
+
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "处理 %s (NewFileVer1)时出错"
+msgid "Couldn't find task %s"
+msgstr "无法找到软件包 %s"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "处理 %s (UsePackage2)时出错"
+msgid "Couldn't find package %s"
+msgstr "无法找到软件包 %s"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "处理 %s (NewFileVer1)时出错"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "注意,根据正则表达式“%2$s”选中了 %1$s\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "处理 %s (NewVersion1)时出错"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "但是 %s 正要被安装"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "处理 %s (UsePackage3)时出错"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "处理 %s (NewVersion2)时出错"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可"
+"以指定一个解决办法)。"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "处理 %s (NewFileVer1)时出错"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"有一些软件包无法被安装。如果您用的是不稳定(unstable)发行版,这也许是\n"
+"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n"
+"包尚未被创建或是它们还在新到(incoming)目录中。"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "糟了,软件包的数量了超出本程序的处理能力。"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"您仅要求对单一软件包进行操作,这极有可能是因为该软件包安装不上,同时,\n"
+"您最好提交一个针对这个软件包的故障报告。"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "糟了,软件包版本的数量了超出本程序的处理能力。"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "无法安装的软件包"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "糟了,软件包版本的数量了超出本程序的处理能力。"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "将会安装下列额外的软件包:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "糟了,依赖关系的数量超出了本程序的处理能力。"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "建议安装的软件包:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "推荐安装的软件包:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "正在筹划升级... "
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "失败"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "完成"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "内部错误,problem resolver 坏事了"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "要下载源代码,必须指定至少一个对应的软件包"
+
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "处理 %s (FindPkg)时出错"
+msgid "Unable to find a source package for %s"
+msgstr "无法找到与 %s 对应的源代码包"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "å¤\84ç\90\86 %s (CollectFileProvides)æ\97¶å\87ºé\94\99"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "忽ç\95¥å·²ä¸\8bè½½è¿\87ç\9a\84æ\96\87ä»¶â\80\9c%sâ\80\9d\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "当处理文件依赖关系时,无法找到软件包 %s %s"
+msgid "You don't have enough free space in %s"
+msgstr "您在 %s 上没有足够的空余空间"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "无法获取源软件包列表 %s 的状态"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "需要下载 %sB/%sB 的源代码包。\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "正在读取软件包列表"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "需要下载 %sB 的源代码包。\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "正在收集文件所提供的软件包"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "下载源代码 %s\n"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "有一些包文件无法下载。"
+
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "无法写入 %s"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "对于已经被解包到 %s 目录的源代码包就不再解开了\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "无法写入来源缓存文件"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "运行解包的命令“%s”出错。\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "无法重命名文件,%s (%s -> %s)。"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "请检查是否安装了“dpkg-dev”软件包。\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5 校验和不符"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "执行构造软件包命令“%s”失败。\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5 校验和不符"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "子进程出错"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "以下 key ID 没有可用的公钥:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "要检查生成软件包的构建依赖关系(builddeps),必须指定至少一个软件包"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr ""
-"我无法找到一个对应 %s 软件包的文件。在这种情况下可能需要您手动修正这个软件"
-"包。(缘于架构缺失)"
+msgid "Unable to get build-dependency information for %s"
+msgstr "无法获得 %s 的构建依赖关系(build-dependency)信息"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2390
#, c-format
-msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr ""
-"我无法找到对应 %s 软件包的文件。在这种情况下您可能需要手动修正这个软件包。"
+msgid "%s has no build depends.\n"
+msgstr " %s 没有构建依赖关系信息。\n"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。"
-
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "大小不符"
-
-#: apt-pkg/vendorlist.cc:66
-#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "软件提供者数据块内 %s 没有包含指纹信息"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
msgstr ""
-"ç\8e°æ\8a\8a %s ä½\9c为äº\86 CD-ROM ç\9a\84æ\8c\82è½½ç\82¹\n"
-"正在挂载 CD-ROM\n"
+"ç\94±äº\8eæ\97 æ³\95æ\89¾å\88°ç¬¦å\90\88è¦\81æ±\82ç\9a\84软件å\8c\85 %3$s ç\9a\84å\8f¯ç\94¨ç\89\88æ\9c¬ï¼\8cå\9b æ¤ä¸\8dè\83½æ»¡è¶³ %2$s æ\89\80è¦\81æ±\82ç\9a\84 %1"
+"$s 依赖关系"
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "正在鉴别.. "
+#: cmdline/apt-get.cc:2531
+#, c-format
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新了"
-#: apt-pkg/cdrom.cc:563
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Stored label: %s\n"
-msgstr "存档标签:%s \n"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s"
-#: apt-pkg/cdrom.cc:583
+#: cmdline/apt-get.cc:2570
#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "现把 %s 作为了 CD-ROM 的挂载点\n"
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "不能满足软件包 %s 所要求的构建依赖关系。"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "æ£å\9c¨å\8d¸è½½ CD-ROM æ\96\87ä»¶ç³»ç»\9f\n"
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "æ\97 æ³\95å¤\84ç\90\86æ\9e\84建ä¾\9dèµ\96å\85³ç³»"
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "等待插入盘片……\n"
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "被支持模块:"
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "正在挂载 CD-ROM 文件系统……\n"
+#: cmdline/apt-get.cc:2647
+#, fuzzy
+msgid ""
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
+msgstr ""
+"用法: apt-get [选项] 命令\n"
+" apt-get [选项] install|remove 包甲 [包乙 ...]\n"
+" apt-get [选项] source 包甲 [包乙 ...]\n"
+"\n"
+"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n"
+"最常用命令是 update 和 install。\n"
+"\n"
+"命令:\n"
+" update - 下载更新软件包列表信息\n"
+" upgrade - 进行一次升级\n"
+" install - 安装新的软件包(注:包名是 libc6 而非 libc6.deb)\n"
+" remove - 卸载软件包\n"
+" source - 下载源码包文件\n"
+" build-dep - 为源码包配置所需的构建依赖关系\n"
+" dist-upgrade - 发布版升级,见 apt-get(8)\n"
+" dselect-upgrade - 根据 dselect的选择来进行升级\n"
+" clean - 删除所有已下载的包文件\n"
+" autoclean - 删除老版本的已下载的包文件\n"
+" check - 核对以确认系统的依赖关系的完整性\n"
+"选项:\n"
+" -h 本帮助文档。\n"
+" -q 让输出可作为日志 - 不显示进度\n"
+" -qq 除了错误外,什么都不输出\n"
+" -d 仅仅下载 - 【不】安装或解开包文件\n"
+" -s 不作实际操作。只是依次模拟执行命令\n"
+" -y 对所有询问都作肯定的回答,同时不作任何提示\n"
+" -f 当没有通过完整性测试时,程序仍试图继续执行\n"
+" -m 当有包文件无法找到时,程序仍试图继续执行\n"
+" -u 显示已升级的软件包列表\n"
+" -b 在下载完源码包后,编译生成相应的软件包\n"
+" -V 显示详尽的版本号\n"
+" -c=? 读取指定配置文件\n"
+" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
+"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n"
+"以获取更多信息和选项。\n"
+" 本 APT 有着超级牛力。\n"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "正在光盘中查找索引文件..\n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "命中 "
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
-msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "找到了 %i 个软件包索引、%i 个源代码包索引,和 %i 个数字签名\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "获取:"
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "存档标签:%s \n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "忽略 "
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "这不是一个有效的名字,请再次命名。\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "错误 "
+
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "下载 %sB,耗时 %s (%sB/s)\n"
+
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [执行中]"
-#: apt-pkg/cdrom.cc:753
+#: cmdline/acqprogress.cc:271
#, c-format
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
msgstr ""
-"这张光盘现在的名字是:\n"
+"更换介质:请把标有\n"
"“%s”\n"
+"的碟片插入驱动器“%s”再按回车键\n"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "æ£å\9c¨å¤\8då\88¶è½¯ä»¶å\8c\85å\88\97表â\80¦â\80¦"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "æ\9cªç\9f¥ç\9a\84软件å\8c\85è®°å½\95ï¼\81"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "正在写入新的软件包源列表\n"
+#: cmdline/apt-sortpkgs.cc:150
+msgid ""
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"用法: apt-sortpkgs [选项] 文件甲 [文件乙 ...]\n"
+"\n"
+"apt-sortpkgs 是对软件包索引文件内容进行排序的简单工具。-s 选项\n"
+"是用来指出后面参数所示文件是哪种文件。\n"
+"\n"
+"选项:\n"
+" -h 本帮助文档\n"
+" -s 根据源文件排序\n"
+" -c=? 读取指定配置文件\n"
+" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "对应于该光盘的软件包源设置项是:\n"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "错误的默认设置!"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "æ£å\9c¨å\8d¸è½½ CD-ROM æ\96\87ä»¶ç³»ç»\9fâ\80¦â\80¦"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "æ\8c\89å\9b\9e车é\94®ç»§ç»ã\80\82"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "已写入 %i 条记录。\n"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "在解包时发生了一些错误。我正准备配置"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n"
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "已经安装的软件包。这个操作可能会导致出现重复的错误"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "已写入 %i 条记录,并有 %i 个文件不吻合\n"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不吻合\n"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "软件包列表的目录 %spartial 不见了。"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "正在合并现有信息"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "正在准备 %s"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "无法创建管道"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "正在解压缩 %s"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "无法执行 gzip"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "正在准备配置 %s"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "包文件已被损坏"
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "正在配置 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "处理目录 %s 时出错"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "已安装 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "正在准备 %s 的删除操作"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "正在删除 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "已删除 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "正在准备完全删除 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "完全删除了 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "无法打开补丁文件"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "无法为子进程创建 IPC 管道"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "连接被永久关闭"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "无法创建管道"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "无法执行 gzip"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "包文件已被损坏"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "tar 的校验码不符,包文件已被损坏"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "tar 的校验码不符,包文件已被损坏"
#: apt-inst/contrib/extracttar.cc:296
#, c-format
msgid "The diversion path is too long"
msgstr "该转移路径(diversion path)过长"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "无法将 %s 重命名为 %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "无法读取 %s"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "info 和 temp 目录要求处于同一文件系统之下"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "正在读取软件包列表"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "不能解析的主控文件"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "æ\9cªå\8f\91ç\8e°è½¯ä»¶å\8c\85 %s"
+msgid "Unable to read the cdrom database %s"
+msgstr "æ\97 æ³\95读å\8f\96å\85\89ç\9b\98æ\95°æ\8d®åº\93 %s"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "软件包总数(按名称计):"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"请使用 apt-cdrom,通过它就可以让 APT 能识别该光盘。apt-get upgdate 不能被用来"
+"加入新的光盘。"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " 普通软件包:"
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "错误的光盘"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " 完全虚拟软件包:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " 单虚拟软件包:"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "找不到光盘。"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " 混合虚拟软件包:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "无法找到该文件"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " 缺漏的:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "无法读取状态"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "æ\8c\89ç\89\88æ\9c¬å\85±è®¡ï¼\9a"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "æ\97 æ³\95设置æ\96\87ä»¶ç\9a\84ä¿®æ\94¹æ\97¥æ\9c\9f"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "按版本共计:"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "无效的 URI,本地的 URI 不能以 // 开头"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "按依赖关系共计:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "正在登录"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "æ\8c\89ç\89\88æ\9c¬/æ\96\87ä»¶å\85³ç³»å\85±è®¡ï¼\9a"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "æ\97 æ³\95è\8e·ç\9f¥å¯¹æ\96¹ä¸»æ\9cºå\90\8d"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "按版本/文件关系共计:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "无法获知本地主机名"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "提供映射共计:"
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "服务器拒绝了我们的连接,它响应道:%s"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Glob 字串共计:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "USER 指令出错,服务器响应道:%s"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "依赖关系版本名所占空间共计:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "PASS 指令出错,服务器响应道:%s"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Slack 空间共计:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr ""
+"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "总占用空间:"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "登录脚本命令“%s”出错,服务器响应道:%s"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "软件包文件 %s 尚未同步(sync)。"
+msgid "TYPE failed, server said: %s"
+msgstr "TYPE 指令出错,服务器响应道:%s"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "您必须明确地给出一个表达式"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "连接超时"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "没æ\9c\89å\8f\91ç\8e°å\90»å\90\88ç\9a\84软件å\8c\85"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "æ\9c\8då\8a¡å\99¨å\85³é\97äº\86è¿\9eæ\8e¥"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "软件å\8c\85æ\96\87ä»¶ï¼\9a"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "读é\94\99误"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "缓存尚未同步(sync),无法交差引证(x-ref)一个软件包文件"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "回应超出了缓存区大小。"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "协议有误"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "被锁定(pinned)的软件包:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "写文件出错"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(没有找到)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "不能创建套接字"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr " 已安装:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "无法连接上数据套接字,连接超时"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(无)"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "无法连接被动模式的套接字。"
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " 候选的软件包:"
-
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " 软件包锁(Pin):"
-
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " 版本列表:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
-
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s for %s %s ,编译于 %s %s\n"
-
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"用法: apt-cache [选项] 命令\n"
-" apt-cache [选项] add 文件甲 [文件乙 ...]\n"
-" apt-cache [选项] showpkg 软件包甲 [软件包乙 ...]\n"
-" apt-cache [选项] showsrc 软件包甲 [软件包乙 ...]\n"
-"\n"
-"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n"
-"缓存文件,也用来在那些文件中查询相关信息\n"
-"\n"
-"命令:\n"
-" add - 往源缓存加入一个软件包文件\n"
-" gencaches - 一并生成软件包和源代码包的缓存\n"
-" showpkg - 显示某个软件包的全面信息\n"
-" showsrc - 显示源文件的各项记录\n"
-" stats - 显示一些基本的统计信息\n"
-" dump - 简要显示整个缓存文件的内容\n"
-" dumpavail - 把所有有效的包文件列表打印到标准输出\n"
-" unmet - 显示所有未满足的依赖关系\n"
-" search - 根据正则表达式搜索软件包列表\n"
-" show - 以便于阅读的格式介绍该软件包\n"
-" depends - 原原本本地显示该软件包的依赖信息\n"
-" rdepends - 显示所有依赖于该软件包的软件包名字\n"
-" pkgnames - 列出所有软件包的名字\n"
-" dotty - 生成可用 GraphVis 处理的软件包关系图\n"
-" xvcg - 生成可用 xvcg 处理的软件包的关系图\n"
-" policy - 显示软件包的安装设置状态\n"
-"\n"
-"选项:\n"
-" -h 本帮助文档。\n"
-" -p=? 软件包的缓存。\n"
-" -s=? 源代码包的缓存。\n"
-" -q 关闭进度显示。\n"
-" -i 仅为 unmet 命令显示重要的依赖关系。\n"
-" -c=? 读取指定配置文件\n"
-" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
-"若要深入了解,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo 无法得到侦听套接字"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "请给这张光盘起个名字,比如说“Debian 2.1r1 Disk 1”"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "无法绑定套接字"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "请把光盘碟片插入驱动器再按回车键"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "无法在套接字上侦听"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "请对您的光盘套件中的其它光盘重复相同的操作。"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "无法确定套接字的名字"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "参数没有成对"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "无法发出 PORT 指令"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"用法:apt-config [选项] 命令\n"
-"\n"
-"apt-config 是一个用于读取 APT 配置文件的简单工具\n"
-"\n"
-"命令:\n"
-" shell - Shell 模式\n"
-" dump - 显示配置文件\n"
-"\n"
-"选项:\n"
-" -h 本帮助文本。\n"
-" -c=? 读取指定的配置文件\n"
-" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "无法识别的地址族 %u (AF_*)"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:798
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s 不是一个有效的 DEB 软件包。"
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT 指令出错,服务器响应道:%s"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"用法: apt-extracttemplates 文件甲 [文件乙 ...]\n"
-"\n"
-"apt-extracttemplates 是用来从 debian 软件包中解压出配置文件和模板\n"
-"信息的工具\n"
-"\n"
-"选项:\n"
-" -h 本帮助文本\n"
-" -t 设置 temp 目录\n"
-" -c=? 读指定的配置文件\n"
-" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "数据套接字连接超时"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "无法接受连接"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "软件包的扩展列表超长"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "把文件加入散列表时出错"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:877
#, c-format
-msgid "Error processing directory %s"
-msgstr "处理目录 %s 时出错"
-
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "源扩展列表超长"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "无法获取文件,服务器响应道“%s”"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "将 header 写到 contents 文件时出错"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "数据套接字超时"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing contents %s"
-msgstr "处理 Contents %s 时出错"
+msgid "Data transfer failed, server said '%s'"
+msgstr "数据传送出错,服务器响应道“%s”"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"用法: apt-ftparchive [选项] 命令\n"
-"命令: packages 二进制软件包搜索路径 [overridefile [路径前缀]]\n"
-" sources 源代码包搜索路径 [overridefile [路径前缀]]\n"
-" contents 搜索路径\n"
-" release 搜索路径\n"
-" generate 配置文件 [groups]\n"
-" clean 配置文件\n"
-"\n"
-"apt-ftparchive 被用来为 Debian 软件包生成索引文件。它能支持\n"
-"多种生成索引的方式,从全自动的索引生成到在功能上取代 dpkg-scanpackages \n"
-"和 dpkg-scansources,都能游刃有余\n"
-"\n"
-"apt-ftparchive 能依据一个由 .deb 文件构成的文件树生成 Package 文件。\n"
-"Package 文件里不仅注有每个软件包的 MD5 校验码和文件大小,\n"
-"还有软件包的所有控制字段的内容。该软件同时支持 override 文件,\n"
-"通过它可以强制指定软件包的优先级及其所属的软件类别。\n"
-"\n"
-"与上面类似,apt-ftparchive 也能由 .dsc 的文件树生成 Source 文件。\n"
-"可以通过使用 --source-override 选项来指定一个 override 文件\n"
-"\n"
-"使用“packages”和“source”命令时,必须在文件树的根部执行本程序。\n"
-"二进制包的搜索路径一定要是递归搜索的底层,而且 override 文件里\n"
-"应该注明 override 的标志。若指定了路径前缀,那么它会被加到文件名前面。\n"
-"下面有个来自 Debian 文档的例子:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386 > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"选项:\n"
-" -h 本帮助文档\n"
-" --md5 使之生成 MD5 校验和\n"
-" -s=? 源代码包 override 文件\n"
-" -q 输出精简信息\n"
-" -d=? 指定可选的缓存数据库\n"
-" -d=? 使用另一个可选的缓存数据库\n"
-" --no-delink 开启delink的调试模式\n"
-" --contents 使之生成控制内容文件\n"
-" -c=? 读取指定配置文件\n"
-" -o=? 设置任意指定的配置选项"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "查询"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "无法调用 "
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "没有任何选定项是匹配的"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "正在连接 %s (%s)"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:71
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "软件包文件组“%s”中缺少一些文件"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:80
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "缓存数据库被损坏了,该数据库文件的文件名已改成 %s.old"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:86
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB 已过时,现试图进行升级 %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "无法发起与 %s:%s (%s) 的连接"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr ""
-"DB 格式是无效的。如果你是从一个老版本的 apt 升级而来,请删除数据库并重建它。"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "无法连接上 %s:%s (%s),连接超时"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:108
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "无法打开 DB 文件 %s:%s"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "无法连接上 %s:%s (%s)。"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "存档没有包含控制字段"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "正在连接 %s"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "无法获得游标(cursor)"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "无法解析域名“%s”"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:173
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "警告:无法读取目录 %s\n"
+msgid "Temporary failure resolving '%s'"
+msgstr "暂时不能解析域名“%s”"
-#: ftparchive/writer.cc:81
+#: methods/connect.cc:176
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "è¦å\91\8aï¼\9aæ\97 æ³\95对 %s è¿\9bè¡\8cç»\9f计\n"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "è§£æ\9e\90â\80\9c%s:%sâ\80\9dæ\97¶ï¼\8cå\87ºç\8e°äº\86æ\9f\90äº\9bæ\95\85é\9a\9c (%i)"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "错误:"
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "不能连接上 %s %s:"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "警告:"
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "无法访问密匙:“%s”"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "错误:处理文件时出错 "
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "错误:Acquire::gpgv::Options 的参数列表超长。结束运行。"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
-#, c-format
-msgid "Failed to resolve %s"
-msgstr "无法解析路径 %s"
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "内部错误:签名正确无误,但是无法确认密钥的指纹(key fingerprint)?!"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "无法遍历目录树"
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "至少发现一个无效的签名。"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to open %s"
-msgstr "无法打开 %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "无法运行\"%s\"以便验证签名(您安装了 gnupg 么?)"
-#: ftparchive/writer.cc:254
-#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " DeLink %s [%s]\n"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "运行 gpgv 时发生未知错误"
-#: ftparchive/writer.cc:262
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "下列签名无效:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "由于没有公钥,下列签名无法进行验证:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to readlink %s"
-msgstr "无法读取符号链接 %s"
+msgid "Couldn't open pipe for %s"
+msgstr "无法为 %s 开启管道"
-#: ftparchive/writer.cc:266
+#: methods/gzip.cc:109
#, c-format
-msgid "Failed to unlink %s"
-msgstr "无法 unlink %s"
+msgid "Read error from %s process"
+msgstr "从 %s 进程读取数据出错"
-#: ftparchive/writer.cc:273
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "正在等待报头"
+
+#: methods/http.cc:523
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** 无法将 %s 链接到 %s"
+msgid "Got a single header line over %u chars"
+msgstr "受到了一行报头条目,它的长度超过了 %u 个字符"
-#: ftparchive/writer.cc:283
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "错误的报头条目"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "该 http 服务器发送了一个无效的应答报头"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "该 http 服务器发送了一个无效的 Content-Length 报头"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "该 http 服务器发送了一个无效的 Content-Range 报头"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "该 http 服务器的 range 支持不正常"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "无法识别的日期格式"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "select 调用出错"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "连接服务器超时"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "写输出文件时出错"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "写文件时出错"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "写文件时出错"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "从服务器读取数据时出错,对方关闭了连接"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "从服务器读取数据出错"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "错误的报头数据"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "连接失败"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "内部错误"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "无法 mmap 一个空文件"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " 达到了 DeLink 的上限 %sB。\n"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "无法 mmap %lu 字节的数据"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "存档没有包含软件包(package)字段"
+#: apt-pkg/contrib/strutl.cc:978
+#, c-format
+msgid "Selection %s not found"
+msgstr "没有发现您的所选 %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s 中没有 override 项\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "无法识别的类型缩写:“%c”"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:497
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s 的维护者 %s 并非 %s\n"
+msgid "Opening configuration file %s"
+msgstr "正在打开配置文件 %s"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "软件包来源档的第 %d 行超长了(长度限制为 %d)。"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s 没有源代码的 override 项\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "语法错误 %s:%u:配置小节没有以名字开头"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s 中没有二进制文件的 override 项\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "语法错误 %s:%u:标签格式有误"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "内部错误,无法定位包内文件 %s"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "语法错误 %s:%u: 配置值后有多余的无意义数据"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - 无法再分配内存"
+#: apt-pkg/contrib/configuration.cc:687
+#, c-format
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "语法错误 %s:%u: 只能在顶层配置文件中使用指示"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Unable to open %s"
-msgstr "无法打开 %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "语法错误 %s:%u:太多的嵌套 include 命令"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "override 文件 %s 第 %lu 行的格式有误 #1"
+msgid "Syntax error %s:%u: Included from here"
+msgstr "语法错误 %s:%u: Included from here"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "override 文件 %s 第 %lu 行的格式有误 #2"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "语法错误 %s:%u: 不支持的指令“%s”"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "override 文件 %s 第 %lu 行的格式有误 #3"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "语法错误 %s:%u: 文件尾部有多余的无意义的数据"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "无法读取 override 文件 %s"
+msgid "%c%s... Error!"
+msgstr "%c%s... 有错误!"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "未知的压缩算法“%s”"
+msgid "%c%s... Done"
+msgstr "%c%s... 完成"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "压缩后的输出文件 %s 要求有一个压缩文件集合"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "未知的命令行选项“%c”[来自 %s]"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "无法创建 FILE*"
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
+#, c-format
+msgid "Command line option %s is not understood"
+msgstr "无法识别命令行选项 %s"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "无法 fork"
+#: apt-pkg/contrib/cmndline.cc:124
+#, c-format
+msgid "Command line option %s is not boolean"
+msgstr "命令行选项 %s 不是个布尔值"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "压缩子进程"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "选项 %s 要求有一个参数"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "内部错误,无法建立 %s"
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "无法建立子进程的 IPC 管道"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "无法执行压缩程序"
+#: apt-pkg/contrib/cmndline.cc:265
+#, c-format
+msgid "Option '%s' is too long"
+msgstr "选项“%s”超长"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "解压程序"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "不能识别参数 %s,请用 true 或 false"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "无法对子进程或文件进行读写"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "无效的操作 %s"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "在计算 MD5 校验和时,无法读取数据"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "无法读取文件系统挂载点 %s 的状态"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
#, c-format
-msgid "Problem unlinking %s"
-msgstr "在 unlink %s 时出错"
+msgid "Unable to change to %s"
+msgstr "无法切换工作目录到 %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "无法读取光盘的状态"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "ç¼\96è¯\91æ£å\88\99表达å¼\8fæ\97¶å\87ºé\94\99 - %s"
+msgid "Not using locking for read only lock file %s"
+msgstr "ç\94±äº\8eæ\96\87ä»¶ç³»ç»\9f为å\8fªè¯»ï¼\8cå\9b è\80\8cæ\97 æ³\95使ç\94¨æ\96\87ä»¶é\94\81%s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "下列的软件包有不能满足的依赖关系:"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "无法打开锁文件 %s"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "but %s is installed"
-msgstr "但是 %s 已经安装了"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "无法在 nfs 文件系统上使用文件锁 %s"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:109
#, c-format
-msgid "but %s is to be installed"
-msgstr "但是 %s 正要被安装"
+msgid "Could not get lock %s"
+msgstr "无法获得锁 %s"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "但却无法安装它"
+#: apt-pkg/contrib/fileutl.cc:377
+#, c-format
+msgid "Waited for %s but it wasn't there"
+msgstr "等待子进程 %s 的退出,但是它并不存在"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "但是它只是个虚拟软件包"
+#: apt-pkg/contrib/fileutl.cc:387
+#, c-format
+msgid "Sub-process %s received a segmentation fault."
+msgstr "子进程 %s 发生了段错误"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "但是它还没有被安装"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "子进程 %s 返回了一个错误号 (%u)"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "但是它将不会被安装"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "子进程 %s 异常退出了"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr " 或"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "无法打开文件 %s"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "下列【新】软件包将被安装:"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "读文件时出错,还剩 %lu 字节没有读出"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "下列软件包将被【卸载】:"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "写文件时出错,还剩 %lu 字节没有保存"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "下列的软件包的版本将保持不变:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "关闭文件时出错"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "下列的软件包将被升级:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "用 unlink 删除文件时出错"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "下列软件包将被【降级】:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "同步文件时出错"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "下列被要求保持版本不变的软件包将被改变:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "软件包缓存区是空的"
-#: cmdline/apt-get.cc:539
-#, c-format
-msgid "%s (due to %s) "
-msgstr "%s (是由于 %s) "
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "软件包缓存区文件损坏了"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"【警告】:下列的重要软件包将被卸载 \n"
-"请勿尝试,除非您确实知道您在做什么!"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "软件包缓存区文件的版本不兼容"
-#: cmdline/apt-get.cc:578
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "共升级了 %lu 个软件包,新安装了 %lu 个软件包,"
+msgid "This APT does not support the versioning system '%s'"
+msgstr "本程序目前不支持“%s”这个版本控制系统"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "共重新安装了 %lu 个软件包,"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "软件包缓存区是为其它架构的主机构造的"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "降级了 %lu 个软件包,"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "依赖"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "要卸载 %lu 个软件包,有 %lu 个软件未被升级。\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "预依赖"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "有 %lu 个软件包没有被完全安装或卸载。\n"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "建议"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "æ£å\9c¨æ\9b´æ£ä¾\9dèµ\96å\85³ç³»..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "æ\8e¨è\8d\90"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr " 失败。"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "冲突"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "æ\97 æ³\95æ\9b´æ£ä¾\9dèµ\96å\85³ç³»"
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "æ\9b¿æ\8d¢"
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "无法最小化要升级的软件包集合"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "废弃"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " 完成"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "您也许需要运行“apt-get -f install”来纠正上面的错误。"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "重要"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "不能满足依赖关系。不妨试一下 -f 选项。"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "必要"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "【警告】:下列的软件包不能通过验证!"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "标准"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "忽ç\95¥äº\86认è¯\81è¦å\91\8aã\80\82\n"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "å\8f¯é\80\89"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "不经验证就安装这些软件包么?[y/N] "
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "额外"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "æ\9c\89äº\9b软件å\8c\85ä¸\8dè\83½é\80\9aè¿\87éª\8cè¯\81"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "æ£å\9c¨å\88\86æ\9e\90软件å\8c\85ç\9a\84ä¾\9dèµ\96å\85³ç³»æ \91"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "候选版本"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "生成依赖关系"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "正在合并现有信息"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "内部错误,Ordering 未能完成"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "无法打开 %s"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "无法对下载目录加锁"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "无法写入文件 %s"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "怪了……文件大小不符,发信给 apt@packages.debian.org 吧"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "无法解析软件包文件 %s (1)"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/tagfile.cc:189
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "需要下载 %sB/%sB 的软件包。\n"
+msgid "Unable to parse package file %s (2)"
+msgstr "无法解析软件包文件 %s (2)"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:90
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "需要下载 %sB 的软件包。\n"
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误 (URI)"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "解压缩后会消耗掉 %sB 的额外空间。\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist)"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "解压缩后将会空出 %sB 的空间。\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (URI parse)"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "无法获知您在 %s 上的空余空间"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (Ablolute dist)"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "您在 %s 中没有足够的空余空间。"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist parse)"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "虽然您指定了 Trivial Only,但这不是个日常(trivial)操作。"
+#: apt-pkg/sourcelist.cc:199
+#, c-format
+msgid "Opening %s"
+msgstr "正在打开 %s"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "Yes, do as I say!"
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#, c-format
+msgid "Line %u too long in source list %s."
+msgstr "软件包来源档 %2$s 的第 %1$u 行超长了。"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/sourcelist.cc:236
#, c-format
-msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
-msgstr ""
-"您的操作会导致潜在的危害。\n"
-"若还想继续的话,就输入下面的短句“%s”\n"
-" ?] "
+msgid "Malformed line %u in source list %s (type)"
+msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (type)"
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "中止执行。"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "无法识别在安装源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "您希望继续执行吗?[Y/n]"
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (vendor id)"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/packagemanager.cc:399
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "无法下载 %s %s\n"
+msgid ""
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
+msgstr ""
+"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可"
+"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::"
+"Force-LoopBreak 选项。"
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "有一些文件下载失败"
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "不支持索引文件类型“%s”"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "下载完毕,目前是“仅下载”模式"
+#: apt-pkg/algorithms.cc:247
+#, c-format
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。"
-#: cmdline/apt-get.cc:1001
+#: apt-pkg/algorithms.cc:1105
msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
msgstr ""
-"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项"
-"再试试?"
+"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的"
+"缘故。"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "目前还不支持 --fix-missing 和介质交换(media swapping)"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr ""
+"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关"
+"系。"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "无法更正缺少的软件包。"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "软件包列表的目录 %spartial 不见了。"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "放弃安装。"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "找不到“%spartial”这个目录。"
-#: cmdline/apt-get.cc:1045
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "注æ\84\8fï¼\8cæ\88\91é\80\89äº\86 %s è\80\8cé\9d\9e %s\n"
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "æ£å\9c¨ä¸\8bè½½ %li 个æ\96\87ä»¶ä¸ç\9a\84第 %li 个(è¿\98æ\9c\89 %s 个)"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire.cc:829
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n"
+msgid "Retrieving file %li of %li"
+msgstr "正在下载 %2$li 个文件中的 %1$li 个"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "软件包 %s 还未安装,因而不会被卸载\n"
+msgid "The method driver %s could not be found."
+msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "软件å\8c\85 %s æ\98¯ä¸\80个ç\94±ä¸\8bé\9d¢ç\9a\84软件å\8c\85æ\8f\90ä¾\9bç\9a\84è\99\9aæ\8b\9f软件å\8c\85ï¼\9a\n"
+msgid "Method %s did not start correctly"
+msgstr "è\8e·å\8f\96软件å\8c\85ç\9a\84æ¸ é\81\93 %s æ\89\80é\9c\80ç\9a\84驱å\8a¨ç¨\8båº\8f没æ\9c\89æ£å¸¸å\90¯å\8a¨ã\80\82"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr " [已安装]"
+#: apt-pkg/acquire-worker.cc:398
+#, c-format
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "请把标有 “%s” 的碟片插入驱动器“%s”再按回车键。"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "请您明确地选择一个来进行安装。"
+#: apt-pkg/init.cc:124
+#, c-format
+msgid "Packaging system '%s' is not supported"
+msgstr "不支持“%s”打包系统"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "无法确定适合的打包系统类型"
+
+#: apt-pkg/clean.cc:57
#, 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"
+msgid "Unable to stat %s."
+msgstr "无法读取 %s 的状态。"
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "您必须在您的 sources.list 写入一些“软件包源”的 URI"
+
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "无法解析或打开软件包的列表或是状态文件。"
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "您可能需要运行 apt-get update 来解决这些问题"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "偏好设定(preferences)文件中发现有无效的记录,无 Package 字段头"
+
+#: apt-pkg/policy.cc:289
+#, c-format
+msgid "Did not understand pin type %s"
+msgstr "无法识别锁定的类型(pin type) %s"
+
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "没有为版本锁定指定优先级(或为零)"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "可是下列的软件包取代了它:"
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "软件包暂存区使用的是不兼容的版本控制系统"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "软件包 %s 还没有可供安装的候选者"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "处理 %s (NewPackage)时出错"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "不能重新安装 %s,因为无法下载它。\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "处理 %s (UsePackage1)时出错"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "处理 %s (NewFileVer1)时出错"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "%s 已经是最新的版本了。\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "处理 %s (UsePackage2)时出错"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "未找到“%2$s”的“%1$s”发布版本"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "处理 %s (NewFileVer1)时出错"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "未找到“%2$s”的“%1$s”版本"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "处理 %s (NewVersion1)时出错"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "选定了版本为 %s (%s) 的 %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "处理 %s (UsePackage3)时出错"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr " update 命令是不需任何参数的"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "处理 %s (NewVersion2)时出错"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "无法对状态列表目录加锁"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "处理 %s (NewFileVer1)时出错"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr ""
-"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "糟了,软件包的数量了超出本程序的处理能力。"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "糟了,软件包版本的数量了超出本程序的处理能力。"
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "下列【新】软件包将被安装:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "糟了,软件包版本的数量了超出本程序的处理能力。"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "糟了,依赖关系的数量超出了本程序的处理能力。"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "处理 %s (FindPkg)时出错"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "下列的信息可能会对解决问题有所帮助:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "处理 %s (CollectFileProvides)时出错"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "å\86\85é\83¨é\94\99误ï¼\8cproblem resolver å\9d\8fäº\8bäº\86"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "å½\93å¤\84ç\90\86æ\96\87ä»¶ä¾\9dèµ\96å\85³ç³»æ\97¶ï¼\8cæ\97 æ³\95æ\89¾å\88°è½¯ä»¶å\8c\85 %s %s"
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "内部错误,AllUpgrade 坏事了"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "无法获取源软件包列表 %s 的状态"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "无法找到软件包 %s"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "正在收集文件所提供的软件包"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "无法找到软件包 %s"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "无法写入来源缓存文件"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "注æ\84\8fï¼\8cæ ¹æ\8d®æ£å\88\99表达å¼\8fâ\80\9c%2$sâ\80\9dé\80\89ä¸äº\86 %1$s\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "æ\97 æ³\95é\87\8då\91½å\90\8dæ\96\87ä»¶ï¼\8c%s (%s -> %s)ã\80\82"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "但是 %s 正要被安装"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5 校验和不符"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5 校验和不符"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "以下 key ID 没有可用的公钥:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
+"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 ""
-"æ\9c\89æ\9cªè\83½æ»¡è¶³ç\9a\84ä¾\9dèµ\96å\85³ç³»ã\80\82请å°\9dè¯\95ä¸\8dæ\8c\87æ\98\8e软件å\8c\85ç\9a\84å\90\8då\97æ\9d¥è¿\90è¡\8câ\80\9capt-get -f installâ\80\9d(ä¹\9få\8f¯"
-"以指定一个解决办法)。"
+"æ\88\91æ\97 æ³\95æ\89¾å\88°ä¸\80个对åº\94 %s 软件å\8c\85ç\9a\84æ\96\87ä»¶ã\80\82å\9c¨è¿\99ç§\8dæ\83\85å\86µä¸\8bå\8f¯è\83½é\9c\80è¦\81æ\82¨æ\89\8bå\8a¨ä¿®æ£è¿\99个软件"
+"包。(缘于架构缺失)"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
msgstr ""
-"有一些软件包无法被安装。如果您用的是不稳定(unstable)发行版,这也许是\n"
-"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n"
-"包尚未被创建或是它们还在新到(incoming)目录中。"
+"我无法找到对应 %s 软件包的文件。在这种情况下您可能需要手动修正这个软件包。"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。"
+
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "大小不符"
+
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "软件提供者数据块内 %s 没有包含指纹信息"
+
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
msgstr ""
-"您仅要求对单一软件包进行操作,这极有可能是因为该软件包安装不上,同时,\n"
-"æ\82¨æ\9c\80好æ\8f\90交ä¸\80个é\92\88对è¿\99个软件å\8c\85ç\9a\84æ\95\85é\9a\9cæ\8a¥å\91\8aã\80\82"
+"现把 %s 作为了 CD-ROM 的挂载点\n"
+"æ£å\9c¨æ\8c\82è½½ CD-ROM\n"
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "æ\97 æ³\95å®\89è£\85ç\9a\84软件å\8c\85"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "æ£å\9c¨é\89´å\88«.. "
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "将会安装下列额外的软件包:"
+#: apt-pkg/cdrom.cc:563
+#, c-format
+msgid "Stored label: %s\n"
+msgstr "存档标签:%s \n"
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "建议安装的软件包:"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "正在卸载 CD-ROM 文件系统……"
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "推荐安装的软件包:"
+#: apt-pkg/cdrom.cc:590
+#, c-format
+msgid "Using CD-ROM mount point %s\n"
+msgstr "现把 %s 作为了 CD-ROM 的挂载点\n"
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "正在筹划升级... "
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "正在卸载 CD-ROM 文件系统\n"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "完成"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "等待插入盘片……\n"
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "内部错误,problem resolver 坏事了"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "正在挂载 CD-ROM 文件系统……\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "要下载源代码,必须指定至少一个对应的软件包"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "正在光盘中查找索引文件..\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "无法找到与 %s 对应的源代码包"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "找到了 %i 个软件包索引、%i 个源代码包索引,和 %i 个数字签名\n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "忽ç\95¥å·²ä¸\8bè½½è¿\87ç\9a\84æ\96\87ä»¶â\80\9c%sâ\80\9d\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "å\98æ¡£æ \87ç¾ï¼\9a%s \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "您在 %s 上没有足够的空余空间"
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "这不是一个有效的名字,请再次命名。\n"
-#: cmdline/apt-get.cc:2196
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "需要下载 %sB/%sB 的源代码包。\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"这张光盘现在的名字是:\n"
+"“%s”\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "需要下载 %sB 的源代码包。\n"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "正在复制软件包列表……"
-#: cmdline/apt-get.cc:2205
-#, c-format
-msgid "Fetch source %s\n"
-msgstr "下载源代码 %s\n"
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "正在写入新的软件包源列表\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "有一些包文件无法下载。"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "对应于该光盘的软件包源设置项是:\n"
-#: cmdline/apt-get.cc:2264
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "对äº\8eå·²ç»\8f被解å\8c\85å\88° %s ç\9b®å½\95ç\9a\84æº\90代ç \81å\8c\85å°±ä¸\8då\86\8dè§£å¼\80äº\86\n"
+msgid "Wrote %i records.\n"
+msgstr "å·²å\86\99å\85¥ %i æ\9d¡è®°å½\95ã\80\82\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "运行解包的命令“%s”出错。\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "请检查是否安装了“dpkg-dev”软件包。\n"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "已写入 %i 条记录,并有 %i 个文件不吻合\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "执行构造软件包命令“%s”失败。\n"
-
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "子进程出错"
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不吻合\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "要检查生成软件包的构建依赖关系(builddeps),必须指定至少一个软件包"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "软件包列表的目录 %spartial 不见了。"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "æ\97 æ³\95è\8e·å¾\97 %s ç\9a\84æ\9e\84建ä¾\9dèµ\96å\85³ç³»(build-dependency)ä¿¡æ\81¯"
+msgid "Preparing %s"
+msgstr "æ£å\9c¨å\87\86å¤\87 %s"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "%s has no build depends.\n"
-msgstr " %s 没有构建依赖关系信息。\n"
+msgid "Unpacking %s"
+msgstr "正在解压缩 %s"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系"
+msgid "Preparing to configure %s"
+msgstr "正在准备配置 %s"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 %1"
-"$s 依赖关系"
+msgid "Configuring %s"
+msgstr "正在配置 %s"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新了"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "处理目录 %s 时出错"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s"
+msgid "Installed %s"
+msgstr "已安装 %s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "不能满足软件包 %s 所要求的构建依赖关系。"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "无法处理构建依赖关系"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "被支持模块:"
-
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"用法: apt-get [选项] 命令\n"
-" apt-get [选项] install|remove 包甲 [包乙 ...]\n"
-" apt-get [选项] source 包甲 [包乙 ...]\n"
-"\n"
-"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n"
-"最常用命令是 update 和 install。\n"
-"\n"
-"命令:\n"
-" update - 下载更新软件包列表信息\n"
-" upgrade - 进行一次升级\n"
-" install - 安装新的软件包(注:包名是 libc6 而非 libc6.deb)\n"
-" remove - 卸载软件包\n"
-" source - 下载源码包文件\n"
-" build-dep - 为源码包配置所需的构建依赖关系\n"
-" dist-upgrade - 发布版升级,见 apt-get(8)\n"
-" dselect-upgrade - 根据 dselect的选择来进行升级\n"
-" clean - 删除所有已下载的包文件\n"
-" autoclean - 删除老版本的已下载的包文件\n"
-" check - 核对以确认系统的依赖关系的完整性\n"
-"选项:\n"
-" -h 本帮助文档。\n"
-" -q 让输出可作为日志 - 不显示进度\n"
-" -qq 除了错误外,什么都不输出\n"
-" -d 仅仅下载 - 【不】安装或解开包文件\n"
-" -s 不作实际操作。只是依次模拟执行命令\n"
-" -y 对所有询问都作肯定的回答,同时不作任何提示\n"
-" -f 当没有通过完整性测试时,程序仍试图继续执行\n"
-" -m 当有包文件无法找到时,程序仍试图继续执行\n"
-" -u 显示已升级的软件包列表\n"
-" -b 在下载完源码包后,编译生成相应的软件包\n"
-" -V 显示详尽的版本号\n"
-" -c=? 读取指定配置文件\n"
-" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
-"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n"
-"以获取更多信息和选项。\n"
-" 本 APT 有着超级牛力。\n"
-
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "命中 "
-
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "获取:"
-
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "忽略 "
-
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "错误 "
+msgid "Preparing for removal of %s"
+msgstr "正在准备 %s 的删除操作"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "下载 %sB,耗时 %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "正在删除 %s"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [执行中]"
+msgid "Removed %s"
+msgstr "已删除 %s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "正在准备完全删除 %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "未知的软件包记录!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "完全删除了 %s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"用法: apt-sortpkgs [选项] 文件甲 [文件乙 ...]\n"
-"\n"
-"apt-sortpkgs 是对软件包索引文件内容进行排序的简单工具。-s 选项\n"
-"是用来指出后面参数所示文件是哪种文件。\n"
-"\n"
-"选项:\n"
-" -h 本帮助文档\n"
-" -s 根据源文件排序\n"
-" -c=? 读取指定配置文件\n"
-" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "错误的默认设置!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "无法打开补丁文件"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "按回车键继续。"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "连接被永久关闭"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "在解包时发生了一些错误。我正准备配置"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "软件包来源档的第 %d 行超长了(长度限制为 %d)。"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "已经安装的软件包。这个操作可能会导致出现重复的错误"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "处理 %s (NewFileVer1)时出错"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "处理 %s (NewFileVer1)时出错"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "存档标签:%s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "正在合并现有信息"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "找到了 %i 个软件包索引、%i 个源代码包索引,和 %i 个数字签名\n"
#, fuzzy
#~ msgid "openpty failed\n"
msgstr ""
"Project-Id-Version: 0.5.4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-26 07:15+0200\n"
+"POT-Creation-Date: 2007-12-17 05:49+0100\n"
"PO-Revision-Date: 2006-10-21 16:58+0800\n"
"Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
"Language-Team: Chinese/Traditional <zh-l10n@linux.org.tw>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: methods/cdrom.cc:114
+#: cmdline/apt-cache.cc:143
#, c-format
-msgid "Unable to read the cdrom database %s"
-msgstr "無法讀取碟片資料庫『%s』。"
-
-#: methods/cdrom.cc:123
-msgid ""
-"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
-"cannot be used to add new CD-ROMs"
-msgstr ""
-"要讓本程式辨認此碟片,請用『apt-cdrom』工具。『apt-get update』不能用來製造新"
-"的碟片。"
-
-#: methods/cdrom.cc:131
-msgid "Wrong CD-ROM"
-msgstr "碟片不正確。"
+msgid "Package %s version %s has an unmet dep:\n"
+msgstr "套件 %s 版本 %s 有未解決的相依問題:\n"
-#: methods/cdrom.cc:166
+#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
+#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
+#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
#, c-format
-msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
-msgstr "無法下駕『%s』內的碟片,或許它仍在使用中。"
-
-#: methods/cdrom.cc:171
-msgid "Disk not found."
-msgstr "找不到磁碟"
-
-#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
-msgid "File not found"
-msgstr "找不到檔案"
-
-#: methods/copy.cc:43 methods/gpgv.cc:281 methods/gzip.cc:141
-#: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
-msgid "Failed to stat"
-msgstr "無法讀取資料"
-
-#: methods/copy.cc:80 methods/gpgv.cc:278 methods/gzip.cc:147
-#: methods/rred.cc:240
-msgid "Failed to set modification time"
-msgstr "日期更新失敗"
-
-#: methods/file.cc:44
-msgid "Invalid URI, local URIS must not start with //"
-msgstr "通用資源識別號錯誤。本機資源識別號不應以『//』起頭。"
+msgid "Unable to locate package %s"
+msgstr "無法找出套件 %s 的位置"
-#. Login must be before getpeername otherwise dante won't work.
-#: methods/ftp.cc:162
-msgid "Logging in"
-msgstr "登入中"
+#: cmdline/apt-cache.cc:247
+msgid "Total package names : "
+msgstr "所有套件的名稱"
-#: methods/ftp.cc:168
-msgid "Unable to determine the peer name"
-msgstr "無法解析對方主機名稱。"
+#: cmdline/apt-cache.cc:287
+msgid " Normal packages: "
+msgstr " 普通套件:"
-#: methods/ftp.cc:173
-msgid "Unable to determine the local name"
-msgstr "無法解析本機名稱。"
+#: cmdline/apt-cache.cc:288
+msgid " Pure virtual packages: "
+msgstr " 虛擬套件:"
-#: methods/ftp.cc:204 methods/ftp.cc:232
-#, c-format
-msgid "The server refused the connection and said: %s"
-msgstr "伺服器因『%s』不受理。"
+#: cmdline/apt-cache.cc:289
+msgid " Single virtual packages: "
+msgstr " 單虛擬套件:"
-#: methods/ftp.cc:210
-#, c-format
-msgid "USER failed, server said: %s"
-msgstr "『USER』指令因『%s』失敗。"
+#: cmdline/apt-cache.cc:290
+msgid " Mixed virtual packages: "
+msgstr " 混合虛擬套件:"
-#: methods/ftp.cc:217
-#, c-format
-msgid "PASS failed, server said: %s"
-msgstr "『PASS』指令因『%s』失敗。"
+#: cmdline/apt-cache.cc:291
+msgid " Missing: "
+msgstr " 失蹤:"
-#: methods/ftp.cc:237
-msgid ""
-"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
-"is empty."
-msgstr "媒介伺服器設定應包括登入稿。"
+#: cmdline/apt-cache.cc:293
+msgid "Total distinct versions: "
+msgstr "所有不同版本"
-#: methods/ftp.cc:265
-#, c-format
-msgid "Login script command '%s' failed, server said: %s"
-msgstr "登入稿『%s』因『%s』失敗。"
+#: cmdline/apt-cache.cc:295
+#, fuzzy
+msgid "Total Distinct Descriptions: "
+msgstr "所有不同版本"
-#: methods/ftp.cc:291
-#, c-format
-msgid "TYPE failed, server said: %s"
-msgstr "『TYPE』指令因『%s』失敗。"
+#: cmdline/apt-cache.cc:297
+msgid "Total dependencies: "
+msgstr "所有依存關係:"
-#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
-msgid "Connection timeout"
-msgstr "連線逾時"
+#: cmdline/apt-cache.cc:300
+msgid "Total ver/file relations: "
+msgstr "所有版本/檔案關聯:"
-#: methods/ftp.cc:335
-msgid "Server closed the connection"
-msgstr "伺服器關閉聯線。"
+#: cmdline/apt-cache.cc:302
+#, fuzzy
+msgid "Total Desc/File relations: "
+msgstr "所有版本/檔案關聯:"
-#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
-msgid "Read error"
-msgstr "讀取失敗。"
+#: cmdline/apt-cache.cc:304
+msgid "Total Provides mappings: "
+msgstr "所有提供套件對應:"
-#: methods/ftp.cc:345 methods/rsh.cc:197
-msgid "A response overflowed the buffer."
-msgstr "答覆超過緩衝區長度。"
+#: cmdline/apt-cache.cc:316
+msgid "Total globbed strings: "
+msgstr "Glob 字串共計:"
-#: methods/ftp.cc:362 methods/ftp.cc:374
-msgid "Protocol corruption"
-msgstr "協定失敗。"
+#: cmdline/apt-cache.cc:330
+msgid "Total dependency version space: "
+msgstr "所有相依版本空間:"
-#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
-msgid "Write error"
-msgstr "寫入失敗。"
+#: cmdline/apt-cache.cc:335
+msgid "Total slack space: "
+msgstr "Slack 空間共計:"
-#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
-msgid "Could not create a socket"
-msgstr "無法建立 Socket"
+#: cmdline/apt-cache.cc:343
+msgid "Total space accounted for: "
+msgstr "所有統計後的空間:"
-#: methods/ftp.cc:698
-msgid "Could not connect data socket, connection timed out"
-msgstr "無法連接到 data socket,連線逾時"
+#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#, c-format
+msgid "Package file %s is out of sync."
+msgstr "套件檔案 %s 已失去同步。"
-#: methods/ftp.cc:702 methods/connect.cc:101
-msgid "Failed"
-msgstr "失敗"
+#: cmdline/apt-cache.cc:1293
+msgid "You must give exactly one pattern"
+msgstr "您必須給定一完整的樣式"
-#: methods/ftp.cc:704
-msgid "Could not connect passive socket."
-msgstr "無法連接到 passive socket"
+#: cmdline/apt-cache.cc:1447
+msgid "No packages found"
+msgstr "未找到套件"
-#: methods/ftp.cc:722
-msgid "getaddrinfo was unable to get a listening socket"
-msgstr "getaddrinfo 無法取得監聽的 socket"
+#: cmdline/apt-cache.cc:1524
+msgid "Package files:"
+msgstr "套件檔案:"
-#: methods/ftp.cc:736
-msgid "Could not bind a socket"
-msgstr "無法連接(bind) socket"
+#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
+msgid "Cache is out of sync, can't x-ref a package file"
+msgstr "快取資料同步過時,無法 x-ref 套件檔案"
-#: methods/ftp.cc:740
-msgid "Could not listen on the socket"
-msgstr "無法在 socket 上接收資料"
+#: cmdline/apt-cache.cc:1532
+#, c-format
+msgid "%4i %s\n"
+msgstr "%4i %s\n"
-#: methods/ftp.cc:747
-msgid "Could not determine the socket's name"
-msgstr "無法解析 socket 名稱"
+#. Show any packages have explicit pins
+#: cmdline/apt-cache.cc:1544
+msgid "Pinned packages:"
+msgstr "鎖定的套件:"
-#: methods/ftp.cc:779
-msgid "Unable to send PORT command"
-msgstr "無法送出「PORT」命令"
+#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
+msgid "(not found)"
+msgstr "(未找到)"
-#: methods/ftp.cc:789
-#, c-format
-msgid "Unknown address family %u (AF_*)"
-msgstr "未知的地址成員 %u (AF_*)"
+#. Installed version
+#: cmdline/apt-cache.cc:1577
+msgid " Installed: "
+msgstr "已安裝:"
-#: methods/ftp.cc:798
-#, c-format
-msgid "EPRT failed, server said: %s"
-msgstr "EPRT 失敗,伺服器回應:%s"
+#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
+msgid "(none)"
+msgstr "(沒有)"
-#: methods/ftp.cc:818
-msgid "Data socket connect timed out"
-msgstr "Data socket 連線逾時"
+#. Candidate Version
+#: cmdline/apt-cache.cc:1584
+msgid " Candidate: "
+msgstr " 候選:"
-#: methods/ftp.cc:825
-msgid "Unable to accept connection"
-msgstr "無法允許連線"
+#: cmdline/apt-cache.cc:1594
+msgid " Package pin: "
+msgstr " 套件鎖定: "
-#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
-msgid "Problem hashing file"
-msgstr "問題雜湊表"
+#. Show the priority tables
+#: cmdline/apt-cache.cc:1603
+msgid " Version table:"
+msgstr " 版本表格:"
-#: methods/ftp.cc:877
+#: cmdline/apt-cache.cc:1618
#, c-format
-msgid "Unable to fetch file, server said '%s'"
-msgstr "無法取得檔案,伺服器回應:%s"
-
-#: methods/ftp.cc:892 methods/rsh.cc:322
-msgid "Data socket timed out"
-msgstr "Data socket 連線逾時"
+msgid " %4i %s\n"
+msgstr " %4i %s\n"
-#: methods/ftp.cc:922
-#, c-format
-msgid "Data transfer failed, server said '%s'"
-msgstr "資料傳輸失敗,伺服器回應 %s"
+#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
+#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
+#: cmdline/apt-get.cc:2601 cmdline/apt-sortpkgs.cc:144
+#, fuzzy, c-format
+msgid "%s %s for %s compiled on %s %s\n"
+msgstr "%s %s 是針對於 %s %s 並編譯在 %s %s\n"
-#. Get the files information
-#: methods/ftp.cc:997
-msgid "Query"
-msgstr "查詢"
-
-#: methods/ftp.cc:1109
-msgid "Unable to invoke "
-msgstr "無法讀取 "
-
-#: methods/connect.cc:64
-#, c-format
-msgid "Connecting to %s (%s)"
-msgstr "連絡『%s (%s)』中"
-
-#: methods/connect.cc:71
-#, c-format
-msgid "[IP: %s %s]"
-msgstr "[IP: %s %s]"
-
-#: methods/connect.cc:80
-#, c-format
-msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
-msgstr "無法建立到『%s』的 socket (族=%u 型=%u 協定=%u)。"
-
-#: methods/connect.cc:86
-#, c-format
-msgid "Cannot initiate the connection to %s:%s (%s)."
-msgstr "無法聯絡到主機『%s:%s (%s)』。"
-
-#: methods/connect.cc:93
-#, c-format
-msgid "Could not connect to %s:%s (%s), connection timed out"
-msgstr "無法聯絡到主機『%s:%s (%s)』。"
-
-#: methods/connect.cc:108
-#, c-format
-msgid "Could not connect to %s:%s (%s)."
-msgstr "無法聯絡到主機『%s:%s (%s)』。"
+#: cmdline/apt-cache.cc:1721
+msgid ""
+"Usage: apt-cache [options] command\n"
+" apt-cache [options] add file1 [file2 ...]\n"
+" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
+" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
+"\n"
+"apt-cache is a low-level tool used to manipulate APT's binary\n"
+"cache files, and query information from them\n"
+"\n"
+"Commands:\n"
+" add - Add a package file to the source cache\n"
+" gencaches - Build both the package and source cache\n"
+" showpkg - Show some general information for a single package\n"
+" showsrc - Show source records\n"
+" stats - Show some basic statistics\n"
+" dump - Show the entire file in a terse form\n"
+" dumpavail - Print an available file to stdout\n"
+" unmet - Show unmet dependencies\n"
+" search - Search the package list for a regex pattern\n"
+" show - Show a readable record for the package\n"
+" depends - Show raw dependency information for a package\n"
+" rdepends - Show reverse dependency information for a package\n"
+" pkgnames - List the names of all packages\n"
+" dotty - Generate package graphs for GraphVis\n"
+" xvcg - Generate package graphs for xvcg\n"
+" policy - Show policy settings\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -p=? The package cache.\n"
+" -s=? The source cache.\n"
+" -q Disable progress indicator.\n"
+" -i Show only important deps for the unmet command.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
+msgstr ""
+"用法: apt-cache [選項] 命令\n"
+" apt-cache [選項] add file1 [file2 ...]\n"
+" apt-cache [選項] showpkg 套件1 [套件2 ...]\n"
+" apt-cache [選項] showsrc 套件1 [套件2 ...]\n"
+"\n"
+"apt-cache 是一個底層的工具,我們用它來操縱 APT 的二進制\n"
+"快取檔案,也用來查詢那些檔案中的相關訊息\n"
+"\n"
+"命令:\n"
+" add - 往源碼快取中加入一個套件檔案\n"
+" gencaches - 產生套件和源碼的快取\n"
+" showpkg - 顯示套件的全面訊息\n"
+" showsrc - 顯示源碼檔案的各項記錄\n"
+" stats - 顯示一些基本的統計訊息\n"
+" dump - 簡要顯示整個緩存文件的內容\n"
+" dumpavail - 印出可取得的檔案到標準輸出(stdout)\n"
+" unmet - 顯示所有未滿足的相依關係\n"
+" search - 根據正規表示法搜索套件列表\n"
+" show - 顯示關於該套件的易於閱讀的報告\n"
+" depends - 原原本本的顯示該套件的相依關係的訊息\n"
+" rdepends - 顯示所有相依於該套件的套件名字\n"
+" pkgnames - 列出所有套件的名稱\n"
+" dotty - 產生 GraphVis 處理的套件關係圖\n"
+" xvcg - 產生 xvcg 處理的套件的關係圖\n"
+" policy - 顯示套件的安裝設定狀態\n"
+"\n"
+"選項:\n"
+" -h 本幫助訊息。\n"
+" -p=? 套件的快取。\n"
+" -s=? 源碼的快取。\n"
+" -q 關閉進度顯示。\n"
+" -i 僅為 unmet 命令顯示重要的相依關係。\n"
+" -c=? 讀取指定的設定檔\n"
+" -o=? 設定任意指定的設定選項,例如 -o dir::cache=/tmp\n"
+"若要深入了解,您還可以查閱 apt-cache(8) 和 apt.conf(5) 參考手冊。\n"
-#. We say this mainly because the pause here is for the
-#. ssh connection that is still going
-#: methods/connect.cc:136 methods/rsh.cc:425
-#, c-format
-msgid "Connecting to %s"
-msgstr "聯絡主機『%s』中"
+#: cmdline/apt-cdrom.cc:78
+msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
+msgstr "請給這張光碟取個名字,比如說“Debian 2.1r1 Disk 1”"
-#: methods/connect.cc:167
-#, c-format
-msgid "Could not resolve '%s'"
-msgstr "無法解析位置 %s"
+#: cmdline/apt-cdrom.cc:93
+msgid "Please insert a Disc in the drive and press enter"
+msgstr "請放入光碟至光碟機,然後按 [Enter] 鍵。"
-#: methods/connect.cc:173
-#, c-format
-msgid "Temporary failure resolving '%s'"
-msgstr "解析『%s』暫時失敗"
+#: cmdline/apt-cdrom.cc:117
+msgid "Repeat this process for the rest of the CDs in your set."
+msgstr "請對您的光碟套件中的其它光碟重復相同的操作。"
-#: methods/connect.cc:176
-#, c-format
-msgid "Something wicked happened resolving '%s:%s' (%i)"
-msgstr "無法解析『%s:%s (%i)』。"
+#: cmdline/apt-config.cc:41
+msgid "Arguments not in pairs"
+msgstr "參數並非一對"
-#: methods/connect.cc:223
-#, c-format
-msgid "Unable to connect to %s %s:"
-msgstr "無法聯絡到主機『%s %s』:"
+#: cmdline/apt-config.cc:76
+msgid ""
+"Usage: apt-config [options] command\n"
+"\n"
+"apt-config is a simple tool to read the APT config file\n"
+"\n"
+"Commands:\n"
+" shell - Shell mode\n"
+" dump - Show the configuration\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"用法:apt-config [選項] 命令\n"
+"\n"
+"apt-config 是一個用於讀取 APT 設定檔案的簡單工具\n"
+"\n"
+"命令:\n"
+" shell - Shell 模式\n"
+" dump - 顯示設定檔案\n"
+"\n"
+"選項:\n"
+" -h 本幫助訊息。\n"
+" -c=? 讀取指定的設定檔案\n"
+" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
-#: methods/gpgv.cc:65
+#: cmdline/apt-extracttemplates.cc:98
#, c-format
-msgid "Couldn't access keyring: '%s'"
-msgstr "無法存取keyring:%s"
-
-#: methods/gpgv.cc:100
-msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
-msgstr "錯誤:Acquire::gpgv::Options 的參數列表超長。結束執行。"
+msgid "%s not a valid DEB package."
+msgstr "%s 不是合法的 DEB 套件"
-#: methods/gpgv.cc:204
+#: cmdline/apt-extracttemplates.cc:232
msgid ""
-"Internal error: Good signature, but could not determine key fingerprint?!"
-msgstr "內部錯誤:簽名正確無誤,但是無法確認密鑰的指紋(key fingerprint)?!"
-
-#: methods/gpgv.cc:209
-msgid "At least one invalid signature was encountered."
-msgstr "至少發現一個無效的簽名。"
+"Usage: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates is a tool to extract config and template info\n"
+"from debian packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -t Set the temp dir\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+msgstr ""
+"用法: apt-extracttemplates file1 [file2 ...]\n"
+"\n"
+"apt-extracttemplates 是用來從 debian 套件中解壓出設定檔和模板\n"
+"信息的工具\n"
+"\n"
+"選項:\n"
+" -h 本幫助訊息。\n"
+" -t 設定 temp 目錄\n"
+" -c=? 讀取指定的設定檔案\n"
+" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
-#: methods/gpgv.cc:213
+#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:815
#, c-format
-msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
-msgstr "無法執行“%s”來驗證簽名(您安裝了 gnupg 嗎?)"
-
-#: methods/gpgv.cc:218
-msgid "Unknown error executing gpgv"
-msgstr "執行 gpgv 時發生未知錯誤"
-
-#: methods/gpgv.cc:249
-msgid "The following signatures were invalid:\n"
-msgstr "下列的簽名皆不合法:\n"
+msgid "Unable to write to %s"
+msgstr "無法寫入『%s』。"
-#: methods/gpgv.cc:256
-msgid ""
-"The following signatures couldn't be verified because the public key is not "
-"available:\n"
-msgstr "由於沒有公鑰,下列簽名無法進行驗證:\n"
+#: cmdline/apt-extracttemplates.cc:310
+msgid "Cannot get debconf version. Is debconf installed?"
+msgstr "無法取得 debconf 版本。debconf 是否安裝?"
-#: methods/gpgv.cc:272
-#, c-format
-msgid "Failed to stat %s"
-msgstr "無法取得 %s 的狀態"
+#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
+msgid "Package extension list is too long"
+msgstr "套件延伸列表過長"
-#: methods/gzip.cc:64
+#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
+#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
+#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
#, c-format
-msgid "Couldn't open pipe for %s"
-msgstr "無法開啟管線給 %s 使用"
+msgid "Error processing directory %s"
+msgstr "處理目錄 %s 時錯誤"
-#: methods/gzip.cc:109
-#, c-format
-msgid "Read error from %s process"
-msgstr "從 %s 進程讀取錯誤"
+#: ftparchive/apt-ftparchive.cc:251
+msgid "Source extension list is too long"
+msgstr "原碼的延伸列表太長"
-#: methods/http.cc:377
-msgid "Waiting for headers"
-msgstr "等待標頭"
+#: ftparchive/apt-ftparchive.cc:368
+msgid "Error writing header to contents file"
+msgstr "寫入標頭資訊到目錄檔案時出錯"
-#: methods/http.cc:523
+#: ftparchive/apt-ftparchive.cc:398
#, c-format
-msgid "Got a single header line over %u chars"
-msgstr "取得一個單行超過 %u 字元的標頭"
+msgid "Error processing contents %s"
+msgstr "處理目錄 %s 時出錯"
-#: methods/http.cc:531
-msgid "Bad header line"
-msgstr "壞的標頭"
-
-#: methods/http.cc:550 methods/http.cc:557
-msgid "The HTTP server sent an invalid reply header"
-msgstr "http 伺服器傳送一個無效的回覆標頭"
-
-#: methods/http.cc:586
-msgid "The HTTP server sent an invalid Content-Length header"
-msgstr "http 伺服器傳送一個無效的 Content-Length 標頭"
+#: ftparchive/apt-ftparchive.cc:553
+msgid ""
+"Usage: apt-ftparchive [options] command\n"
+"Commands: packages binarypath [overridefile [pathprefix]]\n"
+" sources srcpath [overridefile [pathprefix]]\n"
+" contents path\n"
+" release path\n"
+" generate config [groups]\n"
+" clean config\n"
+"\n"
+"apt-ftparchive generates index files for Debian archives. It supports\n"
+"many styles of generation from fully automated to functional replacements\n"
+"for dpkg-scanpackages and dpkg-scansources\n"
+"\n"
+"apt-ftparchive generates Package files from a tree of .debs. The\n"
+"Package file contains the contents of all the control fields from\n"
+"each package as well as the MD5 hash and filesize. An override file\n"
+"is supported to force the value of Priority and Section.\n"
+"\n"
+"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
+"The --source-override option can be used to specify a src override file\n"
+"\n"
+"The 'packages' and 'sources' command should be run in the root of the\n"
+"tree. BinaryPath should point to the base of the recursive search and \n"
+"override file should contain the override flags. Pathprefix is\n"
+"appended to the filename fields if present. Example usage from the \n"
+"Debian archive:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" --md5 Control MD5 generation\n"
+" -s=? Source override file\n"
+" -q Quiet\n"
+" -d=? Select the optional caching database\n"
+" --no-delink Enable delinking debug mode\n"
+" --contents Control contents file generation\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option"
+msgstr ""
+"用法: apt-ftparchive [選項] 命令\n"
+"命令: packages 二進制套件搜索路徑 [overridefile [pathprefix]]\n"
+" sources 源碼搜索路徑 [overridefile [pathprefix]]\n"
+" contents 搜索路徑\n"
+" release 搜索路徑\n"
+" generate 設定檔 [groups]\n"
+" clean 設定檔\n"
+"\n"
+"apt-ftparchive 用來為 Debian 套件產生索引檔案。它支援\n"
+"多種生成索引的方式,從自動化和功能性來說,是一套取代\n"
+"dpkg-scanpackages 和 dpkg-scansources 的工具\n"
+"\n"
+"apt-ftparchive 能依據一個由 .deb 檔案構成的檔案樹產生 Package 檔案。\n"
+"Package 檔案不僅包含每個套件的 MD5 校驗碼和檔案大小,\n"
+"還有套件的所有控制字段的內容。同時支援 override 檔案,\n"
+"它可以強制指套件的優先等級及其所屬的套件類別。\n"
+"\n"
+"與上頭類似,apt-ftparchive 也能由 .dsc 的檔案樹生成 Source 檔案。\n"
+"使用 --source-override 選項來指定一個 override 檔案\n"
+"\n"
+"使用 'packages' 和 'source' 命令時,必須在檔案樹的根執行該程式。\n"
+"二進制檔案的搜索路徑一定要是遞迴搜索的底層,\n"
+"而且 override 檔案必須包含 override 旗標。如果 Pathprefix\n"
+"存在則加到 filename 字段。\n"
+"以 Debian 檔案庫舉例說明:\n"
+" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
+" dists/potato/main/binary-i386/Packages\n"
+"\n"
+"選項:\n"
+" -h 本幫助說明\n"
+" --md5 產生 MD5 校驗控制碼\n"
+" -s=? 源碼的 override 檔案\n"
+" -q 輸出精簡信息\n"
+" -d=? 指定選擇的快取資料庫\n"
+" --no-delink 開啟delink的偵錯模式\n"
+" --contents 產生控制內容檔案\n"
+" -c=? 讀取指定的設定檔\n"
+" -o=? 設定任意指定的設定選項"
-#: methods/http.cc:601
-msgid "The HTTP server sent an invalid Content-Range header"
-msgstr "http 伺服器傳送一個無效的 Content-Range 標頭"
+#: ftparchive/apt-ftparchive.cc:759
+msgid "No selections matched"
+msgstr "找不到符合的選項"
-#: methods/http.cc:603
-msgid "This HTTP server has broken range support"
-msgstr "http 伺服器有損毀的範圍支援"
+#: ftparchive/apt-ftparchive.cc:832
+#, c-format
+msgid "Some files are missing in the package file group `%s'"
+msgstr "套件檔案組 `%s' 缺少部份檔案"
-#: methods/http.cc:627
-msgid "Unknown date format"
-msgstr "未知的資料格式"
+#: ftparchive/cachedb.cc:43
+#, c-format
+msgid "DB was corrupted, file renamed to %s.old"
+msgstr "DB 已損毀,檔案被更名成 %s.old"
-#: methods/http.cc:774
-msgid "Select failed"
-msgstr "Select 失敗"
+#: ftparchive/cachedb.cc:61
+#, c-format
+msgid "DB is old, attempting to upgrade %s"
+msgstr "DB 過舊,嘗試更新 %s"
-#: methods/http.cc:779
-msgid "Connection timed out"
-msgstr "連線逾時"
+#: ftparchive/cachedb.cc:72
+msgid ""
+"DB format is invalid. If you upgraded from a older version of apt, please "
+"remove and re-create the database."
+msgstr "資料庫格式錯誤。如果您升級舊版的 apt,請移除並重建資料庫。"
-#: methods/http.cc:802
-msgid "Error writing to output file"
-msgstr "寫入輸出檔時發生錯誤"
+#: ftparchive/cachedb.cc:77
+#, c-format
+msgid "Unable to open DB file %s: %s"
+msgstr "無法開啟 DB 檔案 %s:%s"
-#: methods/http.cc:833
-msgid "Error writing to file"
-msgstr "寫入檔案時發生錯誤"
+#: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
+#: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+#, c-format
+msgid "Failed to stat %s"
+msgstr "無法取得 %s 的狀態"
-#: methods/http.cc:861
-msgid "Error writing to the file"
-msgstr "寫入檔案時發生錯誤"
+#: ftparchive/cachedb.cc:238
+msgid "Archive has no control record"
+msgstr "檔案沒有 control 記錄"
-#: methods/http.cc:875
-msgid "Error reading from server. Remote end closed connection"
-msgstr "從遠端主機讀取錯誤,關閉連線"
+#: ftparchive/cachedb.cc:444
+msgid "Unable to get a cursor"
+msgstr "無法取得游標"
-#: methods/http.cc:877
-msgid "Error reading from server"
-msgstr "從伺服器讀取發生錯誤"
+#: ftparchive/writer.cc:76
+#, c-format
+msgid "W: Unable to read directory %s\n"
+msgstr "W:無法讀取目錄 %s\n"
-#: methods/http.cc:1104
-msgid "Bad header data"
-msgstr "壞的標頭資料"
+#: ftparchive/writer.cc:81
+#, c-format
+msgid "W: Unable to stat %s\n"
+msgstr "W:無法取得 %s 狀態\n"
-#: methods/http.cc:1121 methods/http.cc:1176
-msgid "Connection failed"
-msgstr "é\80£ç·\9a失æ\95\97"
+#: ftparchive/writer.cc:132
+msgid "E: "
+msgstr "é\8c¯èª¤ï¼\9a"
-#: methods/http.cc:1228
-msgid "Internal error"
-msgstr "內部錯誤"
+#: ftparchive/writer.cc:134
+msgid "W: "
+msgstr "警告:"
-#: apt-pkg/contrib/mmap.cc:80
-msgid "Can't mmap an empty file"
-msgstr "不能將空白檔案讀入記憶體"
+#: ftparchive/writer.cc:141
+msgid "E: Errors apply to file "
+msgstr "E:套用到檔案時出錯"
-#: apt-pkg/contrib/mmap.cc:85
+#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
#, c-format
-msgid "Couldn't make mmap of %lu bytes"
-msgstr "ç\84¡æ³\95è®\80å\85¥æª\94æ¡\88 %lu ä½\8då\85\83çµ\84è\87³è¨\98æ\86¶é«\94"
+msgid "Failed to resolve %s"
+msgstr "ç\84¡æ³\95è§£æ\9e\90è·¯å¾\91 %s"
-#: apt-pkg/contrib/strutl.cc:978
-#, c-format
-msgid "Selection %s not found"
-msgstr "選項『%s』找不到。"
+#: ftparchive/writer.cc:170
+msgid "Tree walking failed"
+msgstr "無法走訪目錄樹"
-#: apt-pkg/contrib/configuration.cc:434
+#: ftparchive/writer.cc:195
#, c-format
-msgid "Unrecognized type abbreviation: '%c'"
-msgstr "不認識的簡寫類型:%c"
+msgid "Failed to open %s"
+msgstr "無法開啟 %s"
-#: apt-pkg/contrib/configuration.cc:492
+#: ftparchive/writer.cc:254
#, c-format
-msgid "Opening configuration file %s"
-msgstr "開啟組態檔 %s"
-
-#: apt-pkg/contrib/configuration.cc:510
-#, fuzzy, c-format
-msgid "Line %d too long (max %u)"
-msgstr "第 %d 行太長(最長 %d)"
+msgid " DeLink %s [%s]\n"
+msgstr " 移除連結 %s [%s]\n"
-#: apt-pkg/contrib/configuration.cc:606
+#: ftparchive/writer.cc:262
#, c-format
-msgid "Syntax error %s:%u: Block starts with no name."
-msgstr "語法錯誤 %s:%u: 區塊沒有名稱"
+msgid "Failed to readlink %s"
+msgstr "無法讀取符號鏈接 %s"
-#: apt-pkg/contrib/configuration.cc:625
+#: ftparchive/writer.cc:266
#, c-format
-msgid "Syntax error %s:%u: Malformed tag"
-msgstr "語法錯誤 %s:%u: 無效的標籤"
+msgid "Failed to unlink %s"
+msgstr "無法 unlink %s"
-#: apt-pkg/contrib/configuration.cc:642
+#: ftparchive/writer.cc:273
#, c-format
-msgid "Syntax error %s:%u: Extra junk after value"
-msgstr "語法錯誤 %s:%u: 值後有多餘的垃圾"
+msgid "*** Failed to link %s to %s"
+msgstr "*** 無法將 %s 鏈接到 %s"
-#: apt-pkg/contrib/configuration.cc:682
+#: ftparchive/writer.cc:283
#, c-format
-msgid "Syntax error %s:%u: Directives can only be done at the top level"
-msgstr "語法錯誤: %s:%u: 指令只能於最高層級執行"
+msgid " DeLink limit of %sB hit.\n"
+msgstr " 達到了 DeLink 的上限 %sB。\n"
-#: apt-pkg/contrib/configuration.cc:689
-#, c-format
-msgid "Syntax error %s:%u: Too many nested includes"
-msgstr "語法錯誤 %s:%u: 太多重複引入檔案"
+#: ftparchive/writer.cc:387
+msgid "Archive had no package field"
+msgstr "檔案無套件字符"
-#: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
+#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
#, c-format
-msgid "Syntax error %s:%u: Included from here"
-msgstr "語法錯誤 %s:%u: 從此引入"
+msgid " %s has no override entry\n"
+msgstr " %s 無 override 項目\n"
-#: apt-pkg/contrib/configuration.cc:702
+#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
#, c-format
-msgid "Syntax error %s:%u: Unsupported directive '%s'"
-msgstr "語法錯誤 %s:%u: 不支援的指令 '%s'"
+msgid " %s maintainer is %s not %s\n"
+msgstr " %s 套件維護者是 %s 非 %s\n"
-#: apt-pkg/contrib/configuration.cc:736
+#: ftparchive/writer.cc:620
#, c-format
-msgid "Syntax error %s:%u: Extra junk at end of file"
-msgstr "語法錯誤 %s:%u: 檔案後有多餘的垃圾"
+msgid " %s has no source override entry\n"
+msgstr " %s 無原始碼 override 項目\n"
-#: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
-#: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#: ftparchive/writer.cc:624
#, c-format
-msgid "Unable to read %s"
-msgstr "無法讀取『%s』。"
+msgid " %s has no binary override entry either\n"
+msgstr " %s 無二元碼 override 項目\n"
-#: apt-pkg/contrib/progress.cc:153
+#: ftparchive/contents.cc:321
#, c-format
-msgid "%c%s... Error!"
-msgstr "%c%s... 錯誤!"
+msgid "Internal error, could not locate member %s"
+msgstr "內部錯誤:無法找到成員 %s"
-#: apt-pkg/contrib/progress.cc:155
-#, c-format
-msgid "%c%s... Done"
-msgstr "%c%s... 完成"
+#: ftparchive/contents.cc:358 ftparchive/contents.cc:389
+msgid "realloc - Failed to allocate memory"
+msgstr "realloc - 無法配置記憶體空間"
-#: apt-pkg/contrib/cmndline.cc:77
+#: ftparchive/override.cc:34 ftparchive/override.cc:142
#, c-format
-msgid "Command line option '%c' [from %s] is not known."
-msgstr "未知的命令列選項「%c」從 %s"
+msgid "Unable to open %s"
+msgstr "無法開啟 %s"
-#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
-#: apt-pkg/contrib/cmndline.cc:119
+#: ftparchive/override.cc:60 ftparchive/override.cc:166
#, c-format
-msgid "Command line option %s is not understood"
-msgstr "無法理解的命令列選項 %s"
+msgid "Malformed override %s line %lu #1"
+msgstr "override 文件 %s 第 %lu 行的格式有誤 #1"
-#: apt-pkg/contrib/cmndline.cc:124
+#: ftparchive/override.cc:74 ftparchive/override.cc:178
#, c-format
-msgid "Command line option %s is not boolean"
-msgstr "命令列選項 %s 不是布林(boolean)變數"
+msgid "Malformed override %s line %lu #2"
+msgstr "override 文件 %s 第 %lu 行的格式有誤 #2"
-#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#: ftparchive/override.cc:88 ftparchive/override.cc:191
#, c-format
-msgid "Option %s requires an argument."
-msgstr "選項 %s 需要更多的參數"
+msgid "Malformed override %s line %lu #3"
+msgstr "override 文件 %s 第 %lu 行的格式有誤 #3"
-#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#: ftparchive/override.cc:127 ftparchive/override.cc:201
#, c-format
-msgid "Option %s: Configuration item specification must have an =<val>."
-msgstr "選項 %s: 組態元件描述應該有 =<val>"
+msgid "Failed to read the override file %s"
+msgstr "無法讀取 override 檔案 %s"
-#: apt-pkg/contrib/cmndline.cc:234
+#: ftparchive/multicompress.cc:72
#, c-format
-msgid "Option %s requires an integer argument, not '%s'"
-msgstr "選項 %s 需要整數參數,不是 %s"
+msgid "Unknown compression algorithm '%s'"
+msgstr "未知的壓縮演算法 '%s'"
-#: apt-pkg/contrib/cmndline.cc:265
+#: ftparchive/multicompress.cc:102
#, c-format
-msgid "Option '%s' is too long"
-msgstr "選項 %s 太長"
+msgid "Compressed output %s needs a compression set"
+msgstr "壓縮輸出 %s 需要一壓縮檔案集合"
-#: apt-pkg/contrib/cmndline.cc:298
-#, c-format
-msgid "Sense %s is not understood, try true or false."
-msgstr "偵測器 %s 無法理解,試試 true 或 false"
+#: ftparchive/multicompress.cc:169 methods/rsh.cc:91
+msgid "Failed to create IPC pipe to subprocess"
+msgstr "無法建立 IPC 管線到子程序"
-#: apt-pkg/contrib/cmndline.cc:348
-#, c-format
-msgid "Invalid operation %s"
-msgstr "無效的操作:%s"
+#: ftparchive/multicompress.cc:195
+msgid "Failed to create FILE*"
+msgstr "無法建立 FILE*"
-#: apt-pkg/contrib/cdromutl.cc:52
-#, c-format
-msgid "Unable to stat the mount point %s"
-msgstr "無法讀取掛載點 %s"
+#: ftparchive/multicompress.cc:198
+msgid "Failed to fork"
+msgstr "fork 時失敗"
-#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#: ftparchive/multicompress.cc:212
+msgid "Compress child"
+msgstr "壓縮子程序"
+
+#: ftparchive/multicompress.cc:235
#, c-format
-msgid "Unable to change to %s"
-msgstr "無法進入『%s』目錄。"
+msgid "Internal error, failed to create %s"
+msgstr "內部錯誤,無法建立 %s"
-#: apt-pkg/contrib/cdromutl.cc:187
-msgid "Failed to stat the cdrom"
-msgstr "CD-ROM 狀況讀取失敗"
+#: ftparchive/multicompress.cc:286
+msgid "Failed to create subprocess IPC"
+msgstr "無法建立子程序 IPC"
-#: apt-pkg/contrib/fileutl.cc:82
-#, c-format
-msgid "Not using locking for read only lock file %s"
-msgstr "不使用檔案鎖定於唯獨檔案 %s"
+#: ftparchive/multicompress.cc:321
+msgid "Failed to exec compressor "
+msgstr "無法執行壓縮程序"
-#: apt-pkg/contrib/fileutl.cc:87
-#, c-format
-msgid "Could not open lock file %s"
-msgstr "無法開啟『%s』鎖定檔。"
+#: ftparchive/multicompress.cc:360
+msgid "decompressor"
+msgstr "解壓縮程序"
-#: apt-pkg/contrib/fileutl.cc:105
-#, c-format
-msgid "Not using locking for nfs mounted lock file %s"
-msgstr "不使用檔案鎖定於 nfs 掛載點上得檔案 %s"
+#: ftparchive/multicompress.cc:403
+msgid "IO to subprocess/file failed"
+msgstr "IO 到子程序/檔案失效"
-#: apt-pkg/contrib/fileutl.cc:109
-#, c-format
-msgid "Could not get lock %s"
-msgstr "無法取得『%s』鎖。"
+#: ftparchive/multicompress.cc:455
+msgid "Failed to read while computing MD5"
+msgstr "在計算 MD5 時無法讀取資料"
-#: apt-pkg/contrib/fileutl.cc:377
+#: ftparchive/multicompress.cc:472
#, c-format
-msgid "Waited for %s but it wasn't there"
-msgstr "等待 %s 但是它不存在"
+msgid "Problem unlinking %s"
+msgstr "在 unlink %s 時出錯"
-#: apt-pkg/contrib/fileutl.cc:387
+#: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185
#, c-format
-msgid "Sub-process %s received a segmentation fault."
-msgstr "子程序 %s 收到一個記憶體錯誤"
+msgid "Failed to rename %s to %s"
+msgstr "無法將 %s 更名為 %s"
-#: apt-pkg/contrib/fileutl.cc:390
-#, c-format
-msgid "Sub-process %s returned an error code (%u)"
-msgstr "子程序 %s 回傳錯誤碼(%u)"
+#: cmdline/apt-get.cc:124
+msgid "Y"
+msgstr "Y"
-#: apt-pkg/contrib/fileutl.cc:392
+#: cmdline/apt-get.cc:146 cmdline/apt-get.cc:1681
#, c-format
-msgid "Sub-process %s exited unexpectedly"
-msgstr "子程序 %s 不預期的結束"
+msgid "Regex compilation error - %s"
+msgstr "編譯正規表示法出錯 - %s"
-#: apt-pkg/contrib/fileutl.cc:436
-#, c-format
-msgid "Could not open file %s"
-msgstr "無法開啟『%s』檔案。"
+#: cmdline/apt-get.cc:241
+msgid "The following packages have unmet dependencies:"
+msgstr "下列的套件有無法滿足的依存關係:"
-#: apt-pkg/contrib/fileutl.cc:492
+#: cmdline/apt-get.cc:331
#, c-format
-msgid "read, still have %lu to read but none left"
-msgstr "讀取,仍有 %lu 未讀"
+msgid "but %s is installed"
+msgstr "但是『%s』卻已經安裝好了。"
-#: apt-pkg/contrib/fileutl.cc:522
+#: cmdline/apt-get.cc:333
#, c-format
-msgid "write, still have %lu to write but couldn't"
-msgstr "寫入,仍有 %lu 待寫入但無法寫入"
-
-#: apt-pkg/contrib/fileutl.cc:597
-msgid "Problem closing the file"
-msgstr "程式關閉檔案"
-
-#: apt-pkg/contrib/fileutl.cc:603
-msgid "Problem unlinking the file"
-msgstr "程式刪除檔案"
-
-#: apt-pkg/contrib/fileutl.cc:614
-msgid "Problem syncing the file"
-msgstr "程式同步檔案"
+msgid "but %s is to be installed"
+msgstr "但是『%s』卻將被安裝。"
-#: apt-pkg/pkgcache.cc:132
-msgid "Empty package cache"
-msgstr "套件暫存檔是空的。"
+#: cmdline/apt-get.cc:340
+msgid "but it is not installable"
+msgstr "但是它卻無法安裝。"
-#: apt-pkg/pkgcache.cc:138
-msgid "The package cache file is corrupted"
-msgstr "套件暫存檔損壞。"
+#: cmdline/apt-get.cc:342
+msgid "but it is a virtual package"
+msgstr "但是它只是虛擬的套件"
-#: apt-pkg/pkgcache.cc:143
-msgid "The package cache file is an incompatible version"
-msgstr "套件暫存檔版本不符合。"
+#: cmdline/apt-get.cc:345
+msgid "but it is not installed"
+msgstr "但是『』卻還沒有安裝。"
-#: apt-pkg/pkgcache.cc:148
-#, c-format
-msgid "This APT does not support the versioning system '%s'"
-msgstr "本軟體不支持『%s』版本系統。"
+#: cmdline/apt-get.cc:345
+msgid "but it is not going to be installed"
+msgstr "但是它卻不會被安裝。"
-#: apt-pkg/pkgcache.cc:153
-msgid "The package cache was built for a different architecture"
-msgstr "套件暫存檔是在另一種系統上產生的。"
+#: cmdline/apt-get.cc:350
+msgid " or"
+msgstr "或"
-#: apt-pkg/pkgcache.cc:224
-msgid "Depends"
-msgstr "ä¾\9då\98é\97\9cä¿\82"
+#: cmdline/apt-get.cc:379
+msgid "The following NEW packages will be installed:"
+msgstr "ä¸\8bå\88\97ç\9a\84ã\80\90æ\96°ã\80\91å¥\97ä»¶é\83½å°\87被å®\89è£\9dï¼\9a"
-#: apt-pkg/pkgcache.cc:224
-msgid "PreDepends"
-msgstr "特別依存關係"
+#: cmdline/apt-get.cc:405
+msgid "The following packages will be REMOVED:"
+msgstr "下列的套件都將被【刪除】:"
-#: apt-pkg/pkgcache.cc:224
-msgid "Suggests"
-msgstr "建議"
+#: cmdline/apt-get.cc:427
+msgid "The following packages have been kept back:"
+msgstr "下列的套件都將維持舊版本:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Recommends"
-msgstr "推薦"
+#: cmdline/apt-get.cc:448
+msgid "The following packages will be upgraded:"
+msgstr "下列的套件都將更新:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Conflicts"
-msgstr "衝突"
+#: cmdline/apt-get.cc:469
+msgid "The following packages will be DOWNGRADED:"
+msgstr "下列的套件都將被「降級」:"
-#: apt-pkg/pkgcache.cc:225
-msgid "Replaces"
-msgstr "取代"
+#: cmdline/apt-get.cc:489
+msgid "The following held packages will be changed:"
+msgstr "下列押後的套件都將被更改:"
-#: apt-pkg/pkgcache.cc:226
-msgid "Obsoletes"
-msgstr "淘汰"
+#: cmdline/apt-get.cc:542
+#, c-format
+msgid "%s (due to %s) "
+msgstr "%s(因為 %s)"
-#: apt-pkg/pkgcache.cc:226
-msgid "Breaks"
+#: cmdline/apt-get.cc:550
+msgid ""
+"WARNING: The following essential packages will be removed.\n"
+"This should NOT be done unless you know exactly what you are doing!"
msgstr ""
+"警告:下列的基本套件都將被移除。\n"
+"除非您很清楚在做什麼,請勿輕易嘗試。"
-#: apt-pkg/pkgcache.cc:237
-msgid "important"
-msgstr "重要"
+#: cmdline/apt-get.cc:581
+#, c-format
+msgid "%lu upgraded, %lu newly installed, "
+msgstr "更新 %lu 個套件,新安裝 %lu 個套件,"
-#: apt-pkg/pkgcache.cc:237
-msgid "required"
-msgstr "必要"
+#: cmdline/apt-get.cc:585
+#, c-format
+msgid "%lu reinstalled, "
+msgstr "重新安裝 %lu 個套件,"
-#: apt-pkg/pkgcache.cc:237
-msgid "standard"
-msgstr "標準"
+#: cmdline/apt-get.cc:587
+#, c-format
+msgid "%lu downgraded, "
+msgstr "降 %lu 個套件的版,"
-#: apt-pkg/pkgcache.cc:238
-msgid "optional"
-msgstr "次要"
+#: cmdline/apt-get.cc:589
+#, c-format
+msgid "%lu to remove and %lu not upgraded.\n"
+msgstr "刪除 %lu 個套件,另不更新 %lu 個套件。\n"
-#: apt-pkg/pkgcache.cc:238
-msgid "extra"
-msgstr "添加"
+#: cmdline/apt-get.cc:593
+#, c-format
+msgid "%lu not fully installed or removed.\n"
+msgstr "%lu 個套件沒有完全安裝或刪除完畢。\n"
-#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
-msgid "Building dependency tree"
-msgstr "了解套件依存關係中"
+#: cmdline/apt-get.cc:667
+msgid "Correcting dependencies..."
+msgstr "更正依存關係中..."
-#: apt-pkg/depcache.cc:122
-msgid "Candidate versions"
-msgstr "å\80\99é\81¸ç\89\88æ\9c¬"
+#: cmdline/apt-get.cc:670
+msgid " failed."
+msgstr "失æ\95\97"
-#: apt-pkg/depcache.cc:151
-msgid "Dependency generation"
-msgstr "ç\94¢ç\94\9få¥\97ä»¶ä¾\9då\98é\97\9cä¿\82"
+#: cmdline/apt-get.cc:673
+msgid "Unable to correct dependencies"
+msgstr "ç\84¡æ³\95æ\9b´æ£ä¾\9då\98é\97\9cä¿\82ã\80\82"
-#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
-#, fuzzy
-msgid "Reading state information"
-msgstr "結合現有資料中"
+#: cmdline/apt-get.cc:676
+msgid "Unable to minimize the upgrade set"
+msgstr "無法最小化升級的套件集合"
-#: apt-pkg/depcache.cc:219
-#, fuzzy, c-format
-msgid "Failed to open StateFile %s"
-msgstr "無法開啟 %s"
+#: cmdline/apt-get.cc:678
+msgid " Done"
+msgstr " 完成"
-#: apt-pkg/depcache.cc:225
-#, fuzzy, c-format
-msgid "Failed to write temporary StateFile %s"
-msgstr "寫入檔案 %s 失敗"
+#: cmdline/apt-get.cc:682
+msgid "You might want to run `apt-get -f install' to correct these."
+msgstr "用『apt-get -f install』指令或許能修正這些問題。"
-#: apt-pkg/tagfile.cc:102
-#, c-format
-msgid "Unable to parse package file %s (1)"
-msgstr "無法辨識套件『%s』(1)。"
+#: cmdline/apt-get.cc:685
+msgid "Unmet dependencies. Try using -f."
+msgstr "無法滿足相依關係。試試看 -f 選項。"
-#: apt-pkg/tagfile.cc:189
-#, c-format
-msgid "Unable to parse package file %s (2)"
-msgstr "無法辨識套件『%s』(1)。"
+#: cmdline/apt-get.cc:707
+msgid "WARNING: The following packages cannot be authenticated!"
+msgstr "警告:下列的套件驗證失敗!"
-#: apt-pkg/sourcelist.cc:90
-#, c-format
-msgid "Malformed line %lu in source list %s (URI)"
-msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號)。"
+#: cmdline/apt-get.cc:711
+msgid "Authentication warning overridden.\n"
+msgstr "忽略了認證警告。\n"
-#: apt-pkg/sourcelist.cc:92
-#, c-format
-msgid "Malformed line %lu in source list %s (dist)"
-msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本)。"
+#: cmdline/apt-get.cc:718
+msgid "Install these packages without verification [y/N]? "
+msgstr "不驗證這些套件就直接安裝?[y/N]"
-#: apt-pkg/sourcelist.cc:95
-#, c-format
-msgid "Malformed line %lu in source list %s (URI parse)"
-msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號分辨)。"
+#: cmdline/apt-get.cc:720
+msgid "Some packages could not be authenticated"
+msgstr "部份套件無法驗證"
-#: apt-pkg/sourcelist.cc:101
-#, c-format
-msgid "Malformed line %lu in source list %s (absolute dist)"
-msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (特定版本)。"
+#: cmdline/apt-get.cc:729 cmdline/apt-get.cc:881
+msgid "There are problems and -y was used without --force-yes"
+msgstr "出現一些問題,您使用了 -y 選項但是沒有用 --force-yes"
-#: apt-pkg/sourcelist.cc:108
-#, c-format
-msgid "Malformed line %lu in source list %s (dist parse)"
-msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本分辨)。"
+#: cmdline/apt-get.cc:773
+msgid "Internal error, InstallPackages was called with broken packages!"
+msgstr "內部錯誤,InstallPackages 被用在了無法安裝的套上!"
-#: apt-pkg/sourcelist.cc:199
-#, c-format
-msgid "Opening %s"
-msgstr "開啟『%s』中"
+#: cmdline/apt-get.cc:782
+msgid "Packages need to be removed but remove is disabled."
+msgstr "有套件需要被移除,但移除動作被禁止。"
-#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
+#: cmdline/apt-get.cc:793
+msgid "Internal error, Ordering didn't finish"
+msgstr "內部錯誤,Ordering didn't finish"
+
+#: cmdline/apt-get.cc:809 cmdline/apt-get.cc:2020 cmdline/apt-get.cc:2053
+msgid "Unable to lock the download directory"
+msgstr "無法鎖定下載的目錄"
+
+#: cmdline/apt-get.cc:819 cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2347
+#: apt-pkg/cachefile.cc:63
+msgid "The list of sources could not be read."
+msgstr "無法讀取來源單。"
+
+#: cmdline/apt-get.cc:834
+msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
+msgstr "怪了……檔案大小不符,發信給 apt@packages.debian.org 吧"
+
+#: cmdline/apt-get.cc:839
#, c-format
-msgid "Line %u too long in source list %s."
-msgstr "來源檔『%2$s』第 %1$u 行太長。"
+msgid "Need to get %sB/%sB of archives.\n"
+msgstr "需要下載 %2$sB 中 %1$sB 的檔案。\n"
-#: apt-pkg/sourcelist.cc:236
+#: cmdline/apt-get.cc:842
#, c-format
-msgid "Malformed line %u in source list %s (type)"
-msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (類別)。"
+msgid "Need to get %sB of archives.\n"
+msgstr "需要下載 %sB 的檔案。\n"
-#: apt-pkg/sourcelist.cc:240
+#: cmdline/apt-get.cc:847
+#, fuzzy, c-format
+msgid "After this operation, %sB of additional disk space will be used.\n"
+msgstr "解壓縮後將消耗 %sB 的空間。\n"
+
+#: cmdline/apt-get.cc:850
+#, fuzzy, c-format
+msgid "After this operation, %sB disk space will be freed.\n"
+msgstr "解壓縮後將空出 %sB 的空間。\n"
+
+#: cmdline/apt-get.cc:864 cmdline/apt-get.cc:2196
#, c-format
-msgid "Type '%s' is not known on line %u in source list %s"
-msgstr "未知的類別 %1$s 於來源檔 %3$s 第 %2$u 行"
+msgid "Couldn't determine free space in %s"
+msgstr "%s 無法足夠的空間。"
-#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#: cmdline/apt-get.cc:871
#, c-format
-msgid "Malformed line %u in source list %s (vendor id)"
-msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (商家名稱)。"
+msgid "You don't have enough free space in %s."
+msgstr "『%s』內沒有足夠的空間。"
-#: apt-pkg/packagemanager.cc:399
+#: cmdline/apt-get.cc:887 cmdline/apt-get.cc:907
+msgid "Trivial Only specified but this is not a trivial operation."
+msgstr "雖然您指定了 Trivial Only,但這不是個顯而易懂的(trivial)操作。"
+
+#: cmdline/apt-get.cc:889
+msgid "Yes, do as I say!"
+msgstr "是的,請執行我所指定的"
+
+#: cmdline/apt-get.cc:891
#, c-format
msgid ""
-"This installation run will require temporarily removing the essential "
-"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
-"you really want to do it, activate the APT::Force-LoopBreak option."
+"You are about to do something potentially harmful.\n"
+"To continue type in the phrase '%s'\n"
+" ?] "
msgstr ""
-"此安裝因衝突或特別依存關係,需暫時刪除『%s』這個重要套件。這種情形通常有問"
-"題,但您確定的話請啟動『APT::Force-LoopBreak』選項。"
+"您的操作會導致潛在的危險\n"
+"若要繼續的話,就輸入下面的句子“%s”\n"
+" ?] "
-#: apt-pkg/pkgrecords.cc:32
-#, c-format
-msgid "Index file type '%s' is not supported"
-msgstr "本軟體不支持『%s』型的索引檔。"
+#: cmdline/apt-get.cc:897 cmdline/apt-get.cc:916
+msgid "Abort."
+msgstr "放棄執行。"
-#: apt-pkg/algorithms.cc:247
+#: cmdline/apt-get.cc:912
+msgid "Do you want to continue [Y/n]? "
+msgstr "繼續執行嗎? 是按 [Y] 鍵,否按 [n] 鍵 "
+
+#: cmdline/apt-get.cc:984 cmdline/apt-get.cc:1391 cmdline/apt-get.cc:2244
#, c-format
-msgid ""
-"The package %s needs to be reinstalled, but I can't find an archive for it."
-msgstr "套件『%s』需要重新安裝,但找不到軟件檔案。"
+msgid "Failed to fetch %s %s\n"
+msgstr "無法下載『%s』檔案。%s\n"
-#: apt-pkg/algorithms.cc:1105
+#: cmdline/apt-get.cc:1002
+msgid "Some files failed to download"
+msgstr "部份檔案無法下載"
+
+#: cmdline/apt-get.cc:1003 cmdline/apt-get.cc:2253
+msgid "Download complete and in download only mode"
+msgstr "下載完畢,目前是“僅下載”模式"
+
+#: cmdline/apt-get.cc:1009
msgid ""
-"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
-"held packages."
-msgstr "無法解決依存關係。可能原因是某些套件被押後。"
+"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
+"missing?"
+msgstr ""
+"有幾個檔案無法下載,您可以執行 apt-get update 或者嘗試加上--fix-missing \n"
+"選項?"
-#: apt-pkg/algorithms.cc:1107
-msgid "Unable to correct problems, you have held broken packages."
-msgstr "ç\84¡æ³\95解決å\95\8fé¡\8cï¼\8cå\9b ç\82ºæ\9f\90äº\9bæ\90\8dæ¯\80ç\9a\84å¥\97件被æ\8a¼å¾\8cã\80\82"
+#: cmdline/apt-get.cc:1013
+msgid "--fix-missing and media swapping is not currently supported"
+msgstr "ç\9b®å\89\8dé\82\84ä¸\8dæ\94¯æ\8f´ --fix-missing å\92\8cåª\92é«\94ç½®æ\8f\9b(media swapping)"
-#: apt-pkg/acquire.cc:59
+#: cmdline/apt-get.cc:1018
+msgid "Unable to correct missing packages."
+msgstr "無法更正遺失的套件。"
+
+#: cmdline/apt-get.cc:1019
+msgid "Aborting install."
+msgstr "放棄安裝。"
+
+#: cmdline/apt-get.cc:1053
#, c-format
-msgid "Lists directory %spartial is missing."
-msgstr "æ\89¾ä¸\8då\88°ã\80\8e%spartialã\80\8fæ¸\85å\96®ç\9b®é\8c\84ã\80\82"
+msgid "Note, selecting %s instead of %s\n"
+msgstr "注æ\84\8f,é\81¸æ\93\87äº\86 %s è\80\8cé\9d\9e %s\n"
-#: apt-pkg/acquire.cc:63
+#: cmdline/apt-get.cc:1063
#, c-format
-msgid "Archive directory %spartial is missing."
-msgstr "找不到『%spartial』檔案目錄。"
+msgid "Skipping %s, it is already installed and upgrade is not set.\n"
+msgstr "忽略 %s,它已經被安裝而且沒有指定要升級。\n"
-#. only show the ETA if it makes sense
-#. two days
-#: apt-pkg/acquire.cc:827
+#: cmdline/apt-get.cc:1081
#, c-format
-msgid "Retrieving file %li of %li (%s remaining)"
-msgstr "正在下載第 %li 個文件(共 %li 個,尚需 %s)"
+msgid "Package %s is not installed, so not removed\n"
+msgstr "套件『%s』沒有安裝,所以無法刪除。\n"
-#: apt-pkg/acquire.cc:829
+#: cmdline/apt-get.cc:1092
#, c-format
-msgid "Retrieving file %li of %li"
-msgstr "正在下載第%li個檔案(共有%li)"
+msgid "Package %s is a virtual package provided by:\n"
+msgstr "虛擬套件『%s』的提供者是:\n"
-#: apt-pkg/acquire-worker.cc:110
+#: cmdline/apt-get.cc:1104
+msgid " [Installed]"
+msgstr "【已安裝】"
+
+#: cmdline/apt-get.cc:1109
+msgid "You should explicitly select one to install."
+msgstr "請您明確地選擇一個來進行安裝。"
+
+#: cmdline/apt-get.cc:1114
#, c-format
-msgid "The method driver %s could not be found."
-msgstr "找不到安裝方式『%s』的驅動程式。"
+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"
-#: apt-pkg/acquire-worker.cc:159
+#: cmdline/apt-get.cc:1133
+msgid "However the following packages replace it:"
+msgstr "但是下列的套件將取代它:"
+
+#: cmdline/apt-get.cc:1136
#, c-format
-msgid "Method %s did not start correctly"
-msgstr "å®\89è£\9dæ\96¹å¼\8fã\80\8e%sã\80\8fæ²\92æ\9c\89æ£ç¢ºå\95\9få\8b\95ã\80\82"
+msgid "Package %s has no installation candidate"
+msgstr "å¥\97ä»¶ %s é\82\84æ²\92æ\9c\89å\8f¯ä¾\9bå®\89è£\9dç\9a\84å\80\99é\81¸ç\89\88æ\9c¬"
-#: apt-pkg/acquire-worker.cc:398
+#: cmdline/apt-get.cc:1156
#, c-format
-msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
-msgstr "更換媒體:請把名為 '%s' 的光碟置入 '%s' 碟機,然後按 [Enter] 鍵。"
+msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
+msgstr "不能重新安裝 %s,因為無法下載它。\n"
-#: apt-pkg/init.cc:124
+#: cmdline/apt-get.cc:1164
#, c-format
-msgid "Packaging system '%s' is not supported"
-msgstr "本軟體不支持『%s』包裝法。"
+msgid "%s is already the newest version.\n"
+msgstr "『%s』已經是最新版本了。\n"
-#: apt-pkg/init.cc:140
-msgid "Unable to determine a suitable packaging system type"
-msgstr "無法明白系統類別。"
+#: cmdline/apt-get.cc:1193
+#, c-format
+msgid "Release '%s' for '%s' was not found"
+msgstr "未找到“%2$s”的“%1$s”發布版本"
-#: apt-pkg/clean.cc:57
+#: cmdline/apt-get.cc:1195
#, c-format
-msgid "Unable to stat %s."
-msgstr "無法讀取『%s』的目錄資料。"
+msgid "Version '%s' for '%s' was not found"
+msgstr "未找到“%2$s”的“%1$s”版本"
-#: apt-pkg/srcrecords.cc:44
-msgid "You must put some 'source' URIs in your sources.list"
-msgstr "『sources.list』檔中必須有一些『source』指令。"
+#: cmdline/apt-get.cc:1201
+#, c-format
+msgid "Selected version %s (%s) for %s\n"
+msgstr "選定的版本為 %s (%s) 的 %s\n"
-#: apt-pkg/cachefile.cc:63
-msgid "The list of sources could not be read."
-msgstr "無法讀取來源單。"
+#: cmdline/apt-get.cc:1338
+msgid "The update command takes no arguments"
+msgstr "update 指令不需任何參數"
-#: apt-pkg/cachefile.cc:69
-msgid "The package lists or status file could not be parsed or opened."
-msgstr "無法讀取套件清單或狀況檔。"
+#: cmdline/apt-get.cc:1351
+msgid "Unable to lock the list directory"
+msgstr "無法鎖定列表目錄"
-#: apt-pkg/cachefile.cc:73
-msgid "You may want to run apt-get update to correct these problems"
-msgstr "用『apt-get -f install』指令或許能修正這些問題。"
+#: cmdline/apt-get.cc:1418 cmdline/apt-get.cc:1420
+msgid ""
+"Some index files failed to download, they have been ignored, or old ones "
+"used instead."
+msgstr "有一些索引檔案不能下載,它們可能被忽略了,也可能轉而使用了舊的索引檔案。"
-#: apt-pkg/policy.cc:267
-msgid "Invalid record in the preferences file, no Package header"
-msgstr "喜好檔有錯誤—缺少套件前置檔。"
+#: cmdline/apt-get.cc:1441
+msgid "We are not supposed to delete stuff, can't start AutoRemover"
+msgstr ""
-#: apt-pkg/policy.cc:289
-#, c-format
-msgid "Did not understand pin type %s"
-msgstr "本軟體不支持『%s』型的版本釘子。"
+#: cmdline/apt-get.cc:1473
+#, fuzzy
+msgid ""
+"The following packages were automatically installed and are no longer "
+"required:"
+msgstr "下列的【新】套件都將被安裝:"
-#: apt-pkg/policy.cc:297
-msgid "No priority (or zero) specified for pin"
-msgstr "對於釘住的檔案無優先順序"
+#: cmdline/apt-get.cc:1475
+msgid "Use 'apt-get autoremove' to remove them."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:72
-msgid "Cache has an incompatible versioning system"
-msgstr "套件暫存檔使用的是不相容的版本系統。"
+#: cmdline/apt-get.cc:1480
+msgid ""
+"Hmm, seems like the AutoRemover destroyed something which really\n"
+"shouldn't happen. Please file a bug report against apt."
+msgstr ""
-#: apt-pkg/pkgcachegen.cc:115
-#, c-format
-msgid "Error occurred while processing %s (NewPackage)"
-msgstr "處理『%s』時發生錯誤 (NewPackage)。"
+#: cmdline/apt-get.cc:1483 cmdline/apt-get.cc:1763
+msgid "The following information may help to resolve the situation:"
+msgstr "底下的資訊有助於解決現在的情況:"
-#: apt-pkg/pkgcachegen.cc:130
-#, c-format
-msgid "Error occurred while processing %s (UsePackage1)"
-msgstr "處理『%s』時發生錯誤 (UsePackage1)。"
+#: cmdline/apt-get.cc:1487
+#, fuzzy
+msgid "Internal Error, AutoRemover broke stuff"
+msgstr "內部錯誤,problem resolver 處理失敗"
-#: apt-pkg/pkgcachegen.cc:153
+#: cmdline/apt-get.cc:1506
+msgid "Internal error, AllUpgrade broke stuff"
+msgstr "內部錯誤,AllUpgrade 造成錯誤"
+
+#: cmdline/apt-get.cc:1553
#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc1)"
-msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
+msgid "Couldn't find task %s"
+msgstr "無法找到 %s 套件。"
-#: apt-pkg/pkgcachegen.cc:178
+#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704
#, c-format
-msgid "Error occurred while processing %s (UsePackage2)"
-msgstr "處理『%s』時發生錯誤 (UsePackage2)。"
+msgid "Couldn't find package %s"
+msgstr "無法找到 %s 套件。"
-#: apt-pkg/pkgcachegen.cc:182
+#: cmdline/apt-get.cc:1691
#, c-format
-msgid "Error occurred while processing %s (NewFileVer1)"
-msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
+msgid "Note, selecting %s for regex '%s'\n"
+msgstr "注意,根據正規表示法“%2$s”選擇了 %1$s\n"
-#: apt-pkg/pkgcachegen.cc:213
-#, c-format
-msgid "Error occurred while processing %s (NewVersion1)"
-msgstr "處理『%s』時發生錯誤 (NewVersion1)。"
+#: cmdline/apt-get.cc:1722
+#, fuzzy, c-format
+msgid "%s set to manually installed.\n"
+msgstr "但是『%s』卻將被安裝。"
-#: apt-pkg/pkgcachegen.cc:217
-#, c-format
-msgid "Error occurred while processing %s (UsePackage3)"
-msgstr "處理『%s』時發生錯誤 (UsePackage3)。"
+#: cmdline/apt-get.cc:1735
+msgid "You might want to run `apt-get -f install' to correct these:"
+msgstr "用『apt-get -f install』指令或許能修正這些問題。"
-#: apt-pkg/pkgcachegen.cc:221
-#, c-format
-msgid "Error occurred while processing %s (NewVersion2)"
-msgstr "處理『%s』時發生錯誤 (NewVersion2)。"
+#: cmdline/apt-get.cc:1738
+msgid ""
+"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
+"solution)."
+msgstr ""
+"無法滿足的相依關係。請嘗試不指定套件明成來執行“apt-get -f install”(或指>\n"
+"定一個解決辦法)。"
-#: apt-pkg/pkgcachegen.cc:245
-#, fuzzy, c-format
-msgid "Error occurred while processing %s (NewFileDesc2)"
-msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
+#: cmdline/apt-get.cc:1750
+msgid ""
+"Some packages could not be installed. This may mean that you have\n"
+"requested an impossible situation or if you are using the unstable\n"
+"distribution that some required packages have not yet been created\n"
+"or been moved out of Incoming."
+msgstr ""
+"有一些套件無法被安裝。這也許是系統無法實現您要求的狀態\n"
+"或是您使用不穩定(unstable)發行版而這些需要的套件尚未完成\n"
+"或從 Incoming 目錄移除。"
-#: apt-pkg/pkgcachegen.cc:251
-msgid "Wow, you exceeded the number of package names this APT is capable of."
-msgstr "套件數量超過本程式的能力。"
+#: cmdline/apt-get.cc:1758
+msgid ""
+"Since you only requested a single operation it is extremely likely that\n"
+"the package is simply not installable and a bug report against\n"
+"that package should be filed."
+msgstr ""
+"您僅要求對單一套件進行操作,這極有可能是因為\n"
+"該套件無法安裝,您最好提交一個針對這個套件\n"
+"的臭蟲報告。"
-#: apt-pkg/pkgcachegen.cc:254
-msgid "Wow, you exceeded the number of versions this APT is capable of."
-msgstr "套件版本數量超過本程式的能力。"
+#: cmdline/apt-get.cc:1766
+msgid "Broken packages"
+msgstr "損毀的套件"
-#: apt-pkg/pkgcachegen.cc:257
-#, fuzzy
-msgid "Wow, you exceeded the number of descriptions this APT is capable of."
-msgstr "套件版本數量超過本程式的能力。"
+#: cmdline/apt-get.cc:1795
+msgid "The following extra packages will be installed:"
+msgstr "下列的【新】套件都將被安裝:"
-#: apt-pkg/pkgcachegen.cc:260
-msgid "Wow, you exceeded the number of dependencies this APT is capable of."
-msgstr "依存關係數量超過本程式的能力。"
+#: cmdline/apt-get.cc:1884
+msgid "Suggested packages:"
+msgstr "建議(Suggested)的套件:"
-#: apt-pkg/pkgcachegen.cc:288
+#: cmdline/apt-get.cc:1885
+msgid "Recommended packages:"
+msgstr "推薦(Recommended)的套件:"
+
+#: cmdline/apt-get.cc:1913
+msgid "Calculating upgrade... "
+msgstr "籌畫升級套件中..."
+
+#: cmdline/apt-get.cc:1916 methods/ftp.cc:702 methods/connect.cc:101
+msgid "Failed"
+msgstr "失敗"
+
+#: cmdline/apt-get.cc:1921
+msgid "Done"
+msgstr "完成"
+
+#: cmdline/apt-get.cc:1988 cmdline/apt-get.cc:1996
+msgid "Internal error, problem resolver broke stuff"
+msgstr "內部錯誤,problem resolver 處理失敗"
+
+#: cmdline/apt-get.cc:2096
+msgid "Must specify at least one package to fetch source for"
+msgstr "必須指定至少一個對應的套件才能下載源碼"
+
+#: cmdline/apt-get.cc:2126 cmdline/apt-get.cc:2365
#, c-format
-msgid "Error occurred while processing %s (FindPkg)"
-msgstr "處理『%s』時發生錯誤 (FindPkg)。"
+msgid "Unable to find a source package for %s"
+msgstr "無法找到 %s 套件的源碼"
-#: apt-pkg/pkgcachegen.cc:301
+#: cmdline/apt-get.cc:2175
#, c-format
-msgid "Error occurred while processing %s (CollectFileProvides)"
-msgstr "處理『%s』時發生錯誤 (CollectFileProvides)。"
+msgid "Skipping already downloaded file '%s'\n"
+msgstr "略過已被下載的檔案“%s”\n"
-#: apt-pkg/pkgcachegen.cc:307
+#: cmdline/apt-get.cc:2203
#, c-format
-msgid "Package %s %s was not found while processing file dependencies"
-msgstr "當計算相依性時找不到套件 %s %s "
+msgid "You don't have enough free space in %s"
+msgstr "『%s』內沒有足夠的空間。"
-#: apt-pkg/pkgcachegen.cc:678
+#: cmdline/apt-get.cc:2209
#, c-format
-msgid "Couldn't stat source package list %s"
-msgstr "無法讀取來源檔『%s』的目錄資料。"
+msgid "Need to get %sB/%sB of source archives.\n"
+msgstr "需要下載 %2$sB 中 %1$sB 的原始檔案。\n"
-#. Build the status cache
-#: apt-pkg/pkgcachegen.cc:748 apt-pkg/pkgcachegen.cc:817
-#: apt-pkg/pkgcachegen.cc:822 apt-pkg/pkgcachegen.cc:945
-msgid "Reading package lists"
-msgstr "讀取套件清單中"
+#: cmdline/apt-get.cc:2212
+#, c-format
+msgid "Need to get %sB of source archives.\n"
+msgstr "需要下載 %sB 的原始檔案。\n"
-#: apt-pkg/pkgcachegen.cc:763
-msgid "Collecting File Provides"
-msgstr "收集檔案供應"
+#: cmdline/apt-get.cc:2218
+#, c-format
+msgid "Fetch source %s\n"
+msgstr "下載源碼 %s\n"
+
+#: cmdline/apt-get.cc:2249
+msgid "Failed to fetch some archives."
+msgstr "無法下載某些檔案。"
-#: apt-pkg/pkgcachegen.cc:815
+#: cmdline/apt-get.cc:2277
#, c-format
-msgid "Unable to write to %s"
-msgstr "ç\84¡æ³\95寫å\85¥ã\80\8e%sã\80\8fã\80\82"
+msgid "Skipping unpack of already unpacked source in %s\n"
+msgstr "ç\95¥é\81\8eå·²ç¶\93被解é\96\8bå\88° %s ç\9b®é\8c\84ç\9a\84æº\90碼æª\94æ¡\88\n"
-#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
-msgid "IO Error saving source cache"
-msgstr "無法寫入來源暫存檔。"
+#: cmdline/apt-get.cc:2289
+#, c-format
+msgid "Unpack command '%s' failed.\n"
+msgstr "執行解開套件指令 '%s' 時失敗。\n"
-#: apt-pkg/acquire-item.cc:127
+#: cmdline/apt-get.cc:2290
#, c-format
-msgid "rename failed, %s (%s -> %s)."
-msgstr "檔名因『%s』更換失敗 (%s → %s)。"
+msgid "Check if the 'dpkg-dev' package is installed.\n"
+msgstr "請檢查是否安裝了“dpkg-dev”套件。\n"
-#: apt-pkg/acquire-item.cc:401
-msgid "MD5Sum mismatch"
-msgstr "MD5 檢查碼不符合。"
+#: cmdline/apt-get.cc:2307
+#, c-format
+msgid "Build command '%s' failed.\n"
+msgstr "執行建立套件指令 '%s' 時失敗。\n"
-#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1399
-#, fuzzy
-msgid "Hash Sum mismatch"
-msgstr "MD5 檢查碼不符合。"
+#: cmdline/apt-get.cc:2326
+msgid "Child process failed"
+msgstr "子程序失敗"
-#: apt-pkg/acquire-item.cc:1091
-msgid "There is no public key available for the following key IDs:\n"
-msgstr "以下 key ID 沒有可用的公鑰:\n"
+#: cmdline/apt-get.cc:2342
+msgid "Must specify at least one package to check builddeps for"
+msgstr "必須指定至少一個套件才能檢查其建立相依關係(builddeps)"
-#: apt-pkg/acquire-item.cc:1204
+#: cmdline/apt-get.cc:2370
#, c-format
-msgid ""
-"I wasn't able to locate a file for the %s package. This might mean you need "
-"to manually fix this package. (due to missing arch)"
-msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
+msgid "Unable to get build-dependency information for %s"
+msgstr "無法取得 %s 的建構相依關係。"
+
+#: cmdline/apt-get.cc:2390
+#, c-format
+msgid "%s has no build depends.\n"
+msgstr "%s 無建立相依關係訊息。\n"
-#: apt-pkg/acquire-item.cc:1263
+#: cmdline/apt-get.cc:2442
#, c-format
msgid ""
-"I wasn't able to locate file for the %s package. This might mean you need to "
-"manually fix this package."
-msgstr "æ\89¾ä¸\8då\88°å¥\97ä»¶ã\80\8e%sã\80\8fé\9c\80è¦\81ç\9a\84æ\9f\90æª\94æ¡\88ã\80\82è«\8bæ\82¨ä¿®ç\90\86é\80\99å\80\8bå¥\97ä»¶å\86\8d試試ã\80\82"
+"%s dependency for %s cannot be satisfied because the package %s cannot be "
+"found"
+msgstr "ç\94±æ\96¼ç\84¡æ³\95æ\89¾å\88°å¥\97ä»¶ %3$s ,å\9b æ¤ä¸\8dè\83½æ»¿è¶³ %2$s æ\89\80è¦\81æ±\82ç\9a\84 %1$s ç\9b¸ä¾\9dé\97\9cä¿\82"
-#: apt-pkg/acquire-item.cc:1304
+#: cmdline/apt-get.cc:2495
#, c-format
msgid ""
-"The package index files are corrupted. No Filename: field for package %s."
-msgstr "套件『%s』索引檔損壞—缺少『Filename:』欄。"
+"%s dependency for %s cannot be satisfied because no available versions of "
+"package %s can satisfy version requirements"
+msgstr ""
+"由於無法找到符合要求的套件 %3$s 的可用版本,因此不能滿足 %2$s 所要求的 %1$s 的"
+"相依關係"
-#: apt-pkg/acquire-item.cc:1391
-msgid "Size mismatch"
-msgstr "檔案大小不符合。"
+#: cmdline/apt-get.cc:2531
+#, c-format
+msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:已安裝的套件 %3$s 太新了"
-#: apt-pkg/vendorlist.cc:66
+#: cmdline/apt-get.cc:2556
#, c-format
-msgid "Vendor block %s contains no fingerprint"
-msgstr "廠商區段%s有錯誤。"
+msgid "Failed to satisfy %s dependency for %s: %s"
+msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:%3$s"
-#: apt-pkg/cdrom.cc:529
+#: cmdline/apt-get.cc:2570
#, c-format
+msgid "Build-dependencies for %s could not be satisfied."
+msgstr "無法滿足套件 %s 所要求的建構相依關係。"
+
+#: cmdline/apt-get.cc:2574
+msgid "Failed to process build dependencies"
+msgstr "無法處理建構相依關係"
+
+#: cmdline/apt-get.cc:2606
+msgid "Supported modules:"
+msgstr "支援模組:"
+
+#: cmdline/apt-get.cc:2647
+#, fuzzy
msgid ""
-"Using CD-ROM mount point %s\n"
-"Mounting CD-ROM\n"
+"Usage: apt-get [options] command\n"
+" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [options] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get is a simple command line interface for downloading and\n"
+"installing packages. The most frequently used commands are update\n"
+"and install.\n"
+"\n"
+"Commands:\n"
+" update - Retrieve new lists of packages\n"
+" upgrade - Perform an upgrade\n"
+" install - Install new packages (pkg is libc6 not libc6.deb)\n"
+" remove - Remove packages\n"
+" autoremove - Remove all automatic unused packages\n"
+" purge - Remove and purge packages\n"
+" source - Download source archives\n"
+" build-dep - Configure build-dependencies for source packages\n"
+" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
+" dselect-upgrade - Follow dselect selections\n"
+" clean - Erase downloaded archive files\n"
+" autoclean - Erase old downloaded archive files\n"
+" check - Verify that there are no broken dependencies\n"
+"\n"
+"Options:\n"
+" -h This help text.\n"
+" -q Loggable output - no progress indicator\n"
+" -qq No output except for errors\n"
+" -d Download only - do NOT install or unpack archives\n"
+" -s No-act. Perform ordering simulation\n"
+" -y Assume Yes to all queries and do not prompt\n"
+" -f Attempt to continue if the integrity check fails\n"
+" -m Attempt to continue if archives are unlocatable\n"
+" -u Show a list of upgraded packages as well\n"
+" -b Build the source package after fetching it\n"
+" -V Show verbose version numbers\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
+"pages for more information and options.\n"
+" This APT has Super Cow Powers.\n"
msgstr ""
-"使用光碟機掛載點 %s\n"
-"掛載光碟機中\n"
-
-#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:620
-msgid "Identifying.. "
-msgstr "標識中.."
+"用法: apt-get [選項] 命令\n"
+" apt-get [選項] install|remove pkg1 [pkg2 ...]\n"
+" apt-get [選項] source pkg1 [pkg2 ...]\n"
+"\n"
+"apt-get 提供了一個用於下載和安裝套件的簡易命令界面。\n"
+"最常用命令是 update 和 install。\n"
+"\n"
+"命令:\n"
+" update - 下載更新套件列表訊息\n"
+" upgrade - 進行一次升級\n"
+" install - 安裝新的套件(注:套件名稱是 libc6 而非 libc6.deb)\n"
+" remove - 移除套件\n"
+" source - 下載源碼檔案\n"
+" build-dep - 為源碼配置所需的建構相依關係\n"
+" dist-upgrade - 發布版本升級,見 apt-get(8) dselect-upgrade - 根據 "
+"dselect \n"
+"的選擇來進行升級\n"
+" clean - 刪除所有已下載的套件檔案\n"
+" auto-clean - 刪除已下載的套件檔案較舊的版本\n"
+" check - 核對以確認系統的相依關係的完整性\n"
+"\n"
+"選項:\n"
+" -h 本幫助訊息。\n"
+" -q 讓輸出作為記錄檔 - 不顯示進度\n"
+" -qq 除了錯誤外,什麼都不輸出\n"
+" -d 僅下載 - 『不』安裝或解開套件檔案\n"
+" -s 不作實際操作。只是模擬執行命令\n"
+" -y 對所有詢問都作肯定的回答,同時不作任何提示\n"
+" -f 當沒有通過完整性測試時,仍嘗試繼續執行\n"
+" -m 當有套件檔案無法找到時,仍嘗試繼續執行\n"
+" -u 顯示已升級的套件列表\n"
+" -b 在下載完源碼後,編譯生成相應的套件\n"
+" -V 顯示詳盡的版本號\n"
+" -c=? 讀取指定的設定檔案\n"
+" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
+"請查閱 apt-get(8)、sources.list(5) 和 apt.conf(5)的參考手冊\n"
+"以取得更多訊息和選項。\n"
+" 本 APT 有著超級牛力。\n"
-#: apt-pkg/cdrom.cc:563
-#, c-format
-msgid "Stored label: %s\n"
-msgstr "保存標誌:%s \n"
+#: cmdline/acqprogress.cc:55
+msgid "Hit "
+msgstr "已有 "
-#: apt-pkg/cdrom.cc:583
-#, c-format
-msgid "Using CD-ROM mount point %s\n"
-msgstr "使用光碟機掛載點 %s\n"
+#: cmdline/acqprogress.cc:79
+msgid "Get:"
+msgstr "下載:"
-#: apt-pkg/cdrom.cc:601
-msgid "Unmounting CD-ROM\n"
-msgstr "卸載光碟機中\n"
+#: cmdline/acqprogress.cc:110
+msgid "Ign "
+msgstr "略過 "
-#: apt-pkg/cdrom.cc:605
-msgid "Waiting for disc...\n"
-msgstr "等待磁碟中...\n"
+#: cmdline/acqprogress.cc:114
+msgid "Err "
+msgstr "錯誤 "
-#. Mount the new CDROM
-#: apt-pkg/cdrom.cc:613
-msgid "Mounting CD-ROM...\n"
-msgstr "掛載光碟機中... \n"
+#: cmdline/acqprogress.cc:135
+#, c-format
+msgid "Fetched %sB in %s (%sB/s)\n"
+msgstr "讀取 %sB 用了 %s (%sB/s)\n"
-#: apt-pkg/cdrom.cc:631
-msgid "Scanning disc for index files..\n"
-msgstr "掃描碟片中的索引檔案..\n"
+#: cmdline/acqprogress.cc:225
+#, c-format
+msgid " [Working]"
+msgstr " [工作中]"
-#: apt-pkg/cdrom.cc:671
-#, fuzzy, c-format
+#: cmdline/acqprogress.cc:271
+#, c-format
msgid ""
-"Found %u package indexes, %u source indexes, %u translation indexes and %u "
-"signatures\n"
-msgstr "找到 %i 個套件索引,%i 源碼索引和 %i 簽名\n"
-
-#: apt-pkg/cdrom.cc:708
-#, fuzzy, c-format
-msgid "Found label '%s'\n"
-msgstr "保存標誌:%s \n"
+"Media change: please insert the disc labeled\n"
+" '%s'\n"
+"in the drive '%s' and press enter\n"
+msgstr ""
+"更換媒體:請把名為\n"
+" '%s' 的光碟\n"
+"插入 '%s' 碟機,然後按 [Enter] 鍵。\n"
-#: apt-pkg/cdrom.cc:737
-msgid "That is not a valid name, try again.\n"
-msgstr "這不是合法名稱,重試一下。\n"
+#: cmdline/apt-sortpkgs.cc:86
+msgid "Unknown package record!"
+msgstr "未知的套件記錄!"
-#: apt-pkg/cdrom.cc:753
-#, c-format
+#: cmdline/apt-sortpkgs.cc:150
msgid ""
-"This disc is called: \n"
-"'%s'\n"
+"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
+"to indicate what kind of file it is.\n"
+"\n"
+"Options:\n"
+" -h This help text\n"
+" -s Use source file sorting\n"
+" -c=? Read this configuration file\n"
+" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
-"這個碟片名為:\n"
-"'%s'\n"
+"用法: apt-sortpkgs [選項] file1 [file2 ...]\n"
+"\n"
+"apt-sortpkgs 是對套件索引檔案內容進行排序的簡單工具。-s 選項\n"
+"是用來指出該檔的檔案類型。\n"
+"\n"
+"選項:\n"
+" -h 本幫助訊息。\n"
+" -s 根據源碼檔案排序\n"
+" -c=? 讀取指定的設定檔案\n"
+" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
-#: apt-pkg/cdrom.cc:757
-msgid "Copying package lists..."
-msgstr "複製套件清單中"
+#: dselect/install:32
+msgid "Bad default setting!"
+msgstr "錯誤的預設設定!"
-#: apt-pkg/cdrom.cc:783
-msgid "Writing new source list\n"
-msgstr "寫入新的來源列表中\n"
+#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
+#: dselect/install:104 dselect/update:45
+msgid "Press enter to continue."
+msgstr "請按 [Enter] 鍵繼續。"
-#: apt-pkg/cdrom.cc:792
-msgid "Source list entries for this disc are:\n"
-msgstr "該ç¢\9fç\89\87ç\9a\84ä¾\86æº\90å\88\97表é \85ç\9b®ç\82ºï¼\9a\n"
+#: dselect/install:100
+msgid "Some errors occurred while unpacking. I'm going to configure the"
+msgstr "è§£é\96\8bå¥\97ä»¶æ\99\82ç\99¼ç\94\9fé\8c¯èª¤ã\80\82æ\88\91è¦\81æº\96å\82\99è¨å®\9a"
-#: apt-pkg/cdrom.cc:834
-#, fuzzy
-msgid "Unmounting CD-ROM...\n"
-msgstr "卸載光碟機中..."
+#: dselect/install:101
+msgid "packages that were installed. This may result in duplicate errors"
+msgstr "套件已安裝過。這將造成重複性的錯誤"
-#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
-#, c-format
-msgid "Wrote %i records.\n"
-msgstr "寫入 %i 筆紀錄。\n"
+#: dselect/install:102
+msgid "or errors caused by missing dependencies. This is OK, only the errors"
+msgstr "或因為失去相依關係所造成的錯誤。只有該錯誤可被容忍"
-#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
-#, c-format
-msgid "Wrote %i records with %i missing files.\n"
-msgstr "寫入 %i 筆遺失 %i 個檔案的紀錄。\n"
+#: dselect/install:103
+msgid ""
+"above this message are important. Please fix them and run [I]nstall again"
+msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]"
-#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
-#, c-format
-msgid "Wrote %i records with %i mismatched files\n"
-msgstr "寫入 %i 筆 %i 個不匹配檔案的紀錄。\n"
+#: dselect/update:30
+msgid "Merging available information"
+msgstr "結合現有資料中"
-#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
-#, c-format
-msgid "Wrote %i records with %i missing files and %i mismatched files\n"
-msgstr "寫入 %i 筆遺失 %i 個檔案和 %i 個不匹配檔案的紀錄。\n"
+#: apt-inst/contrib/extracttar.cc:114
+msgid "Failed to create pipes"
+msgstr "無法建立管線"
-#: apt-pkg/deb/dpkgpm.cc:510
-#, fuzzy, c-format
-msgid "Directory '%s' missing"
-msgstr "找不到『%spartial』清單目錄。"
+#: apt-inst/contrib/extracttar.cc:141
+msgid "Failed to exec gzip "
+msgstr "無法執行 gzip"
-#: apt-pkg/deb/dpkgpm.cc:572
-#, c-format
-msgid "Preparing %s"
-msgstr "準備配置%s中"
+#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
+msgid "Corrupted archive"
+msgstr "損毀的檔案"
-#: apt-pkg/deb/dpkgpm.cc:573
-#, c-format
-msgid "Unpacking %s"
-msgstr "解開%s中"
+#: apt-inst/contrib/extracttar.cc:193
+msgid "Tar checksum failed, archive corrupted"
+msgstr "Tar checksum 失敗,檔案已損毀"
-#: apt-pkg/deb/dpkgpm.cc:578
-#, c-format
-msgid "Preparing to configure %s"
-msgstr "準備設定%s檔"
-
-#: apt-pkg/deb/dpkgpm.cc:579
-#, c-format
-msgid "Configuring %s"
-msgstr "設定%s中"
-
-#: apt-pkg/deb/dpkgpm.cc:581 apt-pkg/deb/dpkgpm.cc:582
-#, fuzzy, c-format
-#| msgid "Error processing directory %s"
-msgid "Processing triggers for %s"
-msgstr "處理目錄 %s 時錯誤"
-
-#: apt-pkg/deb/dpkgpm.cc:584
-#, c-format
-msgid "Installed %s"
-msgstr "已安裝%s"
-
-#: apt-pkg/deb/dpkgpm.cc:589 apt-pkg/deb/dpkgpm.cc:591
-#: apt-pkg/deb/dpkgpm.cc:592
-#, c-format
-msgid "Preparing for removal of %s"
-msgstr "正在準備 %s 的刪除操作"
-
-#: apt-pkg/deb/dpkgpm.cc:594
-#, c-format
-msgid "Removing %s"
-msgstr "移除%s中"
-
-#: apt-pkg/deb/dpkgpm.cc:595
-#, c-format
-msgid "Removed %s"
-msgstr "已移除%s"
-
-#: apt-pkg/deb/dpkgpm.cc:600
-#, c-format
-msgid "Preparing to completely remove %s"
-msgstr "準備完整移除 %s"
-
-#: apt-pkg/deb/dpkgpm.cc:601
-#, c-format
-msgid "Completely removed %s"
-msgstr "已完整移除%s"
-
-#: apt-pkg/deb/dpkgpm.cc:749
-msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
-msgstr ""
-
-#: methods/rred.cc:219
-msgid "Could not patch file"
-msgstr "無法開啟『%s』檔案。"
-
-#: methods/rsh.cc:91
-msgid "Failed to create IPC pipe to subprocess"
-msgstr "無法建立 IPC 管線到子程序"
-
-#: methods/rsh.cc:330
-msgid "Connection closed prematurely"
-msgstr "連線不預期的結束"
-
-#: apt-inst/contrib/extracttar.cc:114
-msgid "Failed to create pipes"
-msgstr "無法建立管線"
-
-#: apt-inst/contrib/extracttar.cc:141
-msgid "Failed to exec gzip "
-msgstr "無法執行 gzip"
-
-#: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204
-msgid "Corrupted archive"
-msgstr "損毀的檔案"
-
-#: apt-inst/contrib/extracttar.cc:193
-msgid "Tar checksum failed, archive corrupted"
-msgstr "Tar checksum 失敗,檔案已損毀"
-
-#: apt-inst/contrib/extracttar.cc:296
+#: apt-inst/contrib/extracttar.cc:296
#, c-format
msgid "Unknown TAR header type %u, member %s"
msgstr "未知的 TAR 標頭型別 %u, member 訊息 %s"
msgid "The diversion path is too long"
msgstr "轉移(diversion)路徑過長"
-#: apt-inst/extract.cc:185
-#, c-format
-msgid "Failed to rename %s to %s"
-msgstr "無法將 %s 更名為 %s"
-
#: apt-inst/extract.cc:240
#, c-format
msgid "The directory %s is being replaced by a non-directory"
msgid "File %s/%s overwrites the one in the package %s"
msgstr "檔案 %s/%s 複寫套件 %s 中的相同檔案"
+#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:753
+#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320
+#: apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
+#, c-format
+msgid "Unable to read %s"
+msgstr "無法讀取『%s』。"
+
#: apt-inst/extract.cc:491
#, c-format
msgid "Unable to stat %s"
msgid "The info and temp directories need to be on the same filesystem"
msgstr "資料目錄與暫存目錄需在同一檔案系統"
+#. Build the status cache
+#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:748
+#: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
+#: apt-pkg/pkgcachegen.cc:945
+msgid "Reading package lists"
+msgstr "讀取套件清單中"
+
#: apt-inst/deb/dpkgdb.cc:176
#, c-format
msgid "Failed to change to the admin dir %sinfo"
msgid "Unparsable control file"
msgstr "無法分析的 control 檔案"
-#: cmdline/apt-cache.cc:143
-#, c-format
-msgid "Package %s version %s has an unmet dep:\n"
-msgstr "套件 %s 版本 %s 有未解決的相依問題:\n"
-
-#: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
-#: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
-#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
+#: methods/cdrom.cc:114
#, c-format
-msgid "Unable to locate package %s"
-msgstr "無法找出套件 %s 的位置"
+msgid "Unable to read the cdrom database %s"
+msgstr "無法讀取碟片資料庫『%s』。"
-#: cmdline/apt-cache.cc:247
-msgid "Total package names : "
-msgstr "所有套件的名稱"
+#: methods/cdrom.cc:123
+msgid ""
+"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
+"cannot be used to add new CD-ROMs"
+msgstr ""
+"要讓本程式辨認此碟片,請用『apt-cdrom』工具。『apt-get update』不能用來製造新"
+"的碟片。"
-#: cmdline/apt-cache.cc:287
-msgid " Normal packages: "
-msgstr " 普通套件:"
+#: methods/cdrom.cc:131
+msgid "Wrong CD-ROM"
+msgstr "碟片不正確。"
-#: cmdline/apt-cache.cc:288
-msgid " Pure virtual packages: "
-msgstr " 虛擬套件:"
+#: methods/cdrom.cc:166
+#, c-format
+msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
+msgstr "無法下駕『%s』內的碟片,或許它仍在使用中。"
-#: cmdline/apt-cache.cc:289
-msgid " Single virtual packages: "
-msgstr " 單虛擬套件:"
+#: methods/cdrom.cc:171
+msgid "Disk not found."
+msgstr "找不到磁碟"
-#: cmdline/apt-cache.cc:290
-msgid " Mixed virtual packages: "
-msgstr " 混合虛擬套件:"
+#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
+msgid "File not found"
+msgstr "找不到檔案"
-#: cmdline/apt-cache.cc:291
-msgid " Missing: "
-msgstr " 失蹤:"
+#: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150
+#: methods/rred.cc:234 methods/rred.cc:243
+msgid "Failed to stat"
+msgstr "無法讀取資料"
-#: cmdline/apt-cache.cc:293
-msgid "Total distinct versions: "
-msgstr "æ\89\80æ\9c\89ä¸\8då\90\8cç\89\88æ\9c¬"
+#: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240
+msgid "Failed to set modification time"
+msgstr "æ\97¥æ\9c\9fæ\9b´æ\96°å¤±æ\95\97"
-#: cmdline/apt-cache.cc:295
-#, fuzzy
-msgid "Total Distinct Descriptions: "
-msgstr "所有不同版本"
+#: methods/file.cc:44
+msgid "Invalid URI, local URIS must not start with //"
+msgstr "通用資源識別號錯誤。本機資源識別號不應以『//』起頭。"
-#: cmdline/apt-cache.cc:297
-msgid "Total dependencies: "
-msgstr "所有依存關係:"
+#. Login must be before getpeername otherwise dante won't work.
+#: methods/ftp.cc:162
+msgid "Logging in"
+msgstr "登入中"
-#: cmdline/apt-cache.cc:300
-msgid "Total ver/file relations: "
-msgstr "所有版本/檔案關聯:"
+#: methods/ftp.cc:168
+msgid "Unable to determine the peer name"
+msgstr "無法解析對方主機名稱。"
-#: cmdline/apt-cache.cc:302
-#, fuzzy
-msgid "Total Desc/File relations: "
-msgstr "所有版本/檔案關聯:"
+#: methods/ftp.cc:173
+msgid "Unable to determine the local name"
+msgstr "無法解析本機名稱。"
-#: cmdline/apt-cache.cc:304
-msgid "Total Provides mappings: "
-msgstr "所有提供套件對應:"
+#: methods/ftp.cc:204 methods/ftp.cc:232
+#, c-format
+msgid "The server refused the connection and said: %s"
+msgstr "伺服器因『%s』不受理。"
-#: cmdline/apt-cache.cc:316
-msgid "Total globbed strings: "
-msgstr "Glob 字串共計:"
+#: methods/ftp.cc:210
+#, c-format
+msgid "USER failed, server said: %s"
+msgstr "『USER』指令因『%s』失敗。"
-#: cmdline/apt-cache.cc:330
-msgid "Total dependency version space: "
-msgstr "所有相依版本空間:"
+#: methods/ftp.cc:217
+#, c-format
+msgid "PASS failed, server said: %s"
+msgstr "『PASS』指令因『%s』失敗。"
-#: cmdline/apt-cache.cc:335
-msgid "Total slack space: "
-msgstr "Slack 空間共計:"
+#: methods/ftp.cc:237
+msgid ""
+"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
+"is empty."
+msgstr "媒介伺服器設定應包括登入稿。"
-#: cmdline/apt-cache.cc:343
-msgid "Total space accounted for: "
-msgstr "所有統計後的空間:"
+#: methods/ftp.cc:265
+#, c-format
+msgid "Login script command '%s' failed, server said: %s"
+msgstr "登入稿『%s』因『%s』失敗。"
-#: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
+#: methods/ftp.cc:291
#, c-format
-msgid "Package file %s is out of sync."
-msgstr "套件檔案 %s 已失去同步。"
+msgid "TYPE failed, server said: %s"
+msgstr "『TYPE』指令因『%s』失敗。"
-#: cmdline/apt-cache.cc:1293
-msgid "You must give exactly one pattern"
-msgstr "您必須給定一完整的樣式"
+#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
+msgid "Connection timeout"
+msgstr "連線逾時"
-#: cmdline/apt-cache.cc:1447
-msgid "No packages found"
-msgstr "未找到套件"
+#: methods/ftp.cc:335
+msgid "Server closed the connection"
+msgstr "伺服器關閉聯線。"
-#: cmdline/apt-cache.cc:1524
-msgid "Package files:"
-msgstr "套件檔案:"
+#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
+msgid "Read error"
+msgstr "讀取失敗。"
-#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
-msgid "Cache is out of sync, can't x-ref a package file"
-msgstr "快取資料同步過時,無法 x-ref 套件檔案"
+#: methods/ftp.cc:345 methods/rsh.cc:197
+msgid "A response overflowed the buffer."
+msgstr "答覆超過緩衝區長度。"
-#: cmdline/apt-cache.cc:1532
-#, c-format
-msgid "%4i %s\n"
-msgstr "%4i %s\n"
+#: methods/ftp.cc:362 methods/ftp.cc:374
+msgid "Protocol corruption"
+msgstr "協定失敗。"
-#. Show any packages have explicit pins
-#: cmdline/apt-cache.cc:1544
-msgid "Pinned packages:"
-msgstr "鎖定的套件:"
+#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
+msgid "Write error"
+msgstr "寫入失敗。"
-#: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
-msgid "(not found)"
-msgstr "(未找到)"
+#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
+msgid "Could not create a socket"
+msgstr "無法建立 Socket"
-#. Installed version
-#: cmdline/apt-cache.cc:1577
-msgid " Installed: "
-msgstr "已安裝:"
+#: methods/ftp.cc:698
+msgid "Could not connect data socket, connection timed out"
+msgstr "無法連接到 data socket,連線逾時"
-#: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
-msgid "(none)"
-msgstr "(沒有)"
-
-#. Candidate Version
-#: cmdline/apt-cache.cc:1584
-msgid " Candidate: "
-msgstr " 候選:"
-
-#: cmdline/apt-cache.cc:1594
-msgid " Package pin: "
-msgstr " 套件鎖定: "
-
-#. Show the priority tables
-#: cmdline/apt-cache.cc:1603
-msgid " Version table:"
-msgstr " 版本表格:"
-
-#: cmdline/apt-cache.cc:1618
-#, c-format
-msgid " %4i %s\n"
-msgstr " %4i %s\n"
-
-#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
-#: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547
-#: cmdline/apt-get.cc:2588 cmdline/apt-sortpkgs.cc:144
-#, fuzzy, c-format
-msgid "%s %s for %s compiled on %s %s\n"
-msgstr "%s %s 是針對於 %s %s 並編譯在 %s %s\n"
+#: methods/ftp.cc:704
+msgid "Could not connect passive socket."
+msgstr "無法連接到 passive socket"
-#: cmdline/apt-cache.cc:1721
-msgid ""
-"Usage: apt-cache [options] command\n"
-" apt-cache [options] add file1 [file2 ...]\n"
-" apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
-" apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
-"\n"
-"apt-cache is a low-level tool used to manipulate APT's binary\n"
-"cache files, and query information from them\n"
-"\n"
-"Commands:\n"
-" add - Add a package file to the source cache\n"
-" gencaches - Build both the package and source cache\n"
-" showpkg - Show some general information for a single package\n"
-" showsrc - Show source records\n"
-" stats - Show some basic statistics\n"
-" dump - Show the entire file in a terse form\n"
-" dumpavail - Print an available file to stdout\n"
-" unmet - Show unmet dependencies\n"
-" search - Search the package list for a regex pattern\n"
-" show - Show a readable record for the package\n"
-" depends - Show raw dependency information for a package\n"
-" rdepends - Show reverse dependency information for a package\n"
-" pkgnames - List the names of all packages\n"
-" dotty - Generate package graphs for GraphVis\n"
-" xvcg - Generate package graphs for xvcg\n"
-" policy - Show policy settings\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -p=? The package cache.\n"
-" -s=? The source cache.\n"
-" -q Disable progress indicator.\n"
-" -i Show only important deps for the unmet command.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
-msgstr ""
-"用法: apt-cache [選項] 命令\n"
-" apt-cache [選項] add file1 [file2 ...]\n"
-" apt-cache [選項] showpkg 套件1 [套件2 ...]\n"
-" apt-cache [選項] showsrc 套件1 [套件2 ...]\n"
-"\n"
-"apt-cache 是一個底層的工具,我們用它來操縱 APT 的二進制\n"
-"快取檔案,也用來查詢那些檔案中的相關訊息\n"
-"\n"
-"命令:\n"
-" add - 往源碼快取中加入一個套件檔案\n"
-" gencaches - 產生套件和源碼的快取\n"
-" showpkg - 顯示套件的全面訊息\n"
-" showsrc - 顯示源碼檔案的各項記錄\n"
-" stats - 顯示一些基本的統計訊息\n"
-" dump - 簡要顯示整個緩存文件的內容\n"
-" dumpavail - 印出可取得的檔案到標準輸出(stdout)\n"
-" unmet - 顯示所有未滿足的相依關係\n"
-" search - 根據正規表示法搜索套件列表\n"
-" show - 顯示關於該套件的易於閱讀的報告\n"
-" depends - 原原本本的顯示該套件的相依關係的訊息\n"
-" rdepends - 顯示所有相依於該套件的套件名字\n"
-" pkgnames - 列出所有套件的名稱\n"
-" dotty - 產生 GraphVis 處理的套件關係圖\n"
-" xvcg - 產生 xvcg 處理的套件的關係圖\n"
-" policy - 顯示套件的安裝設定狀態\n"
-"\n"
-"選項:\n"
-" -h 本幫助訊息。\n"
-" -p=? 套件的快取。\n"
-" -s=? 源碼的快取。\n"
-" -q 關閉進度顯示。\n"
-" -i 僅為 unmet 命令顯示重要的相依關係。\n"
-" -c=? 讀取指定的設定檔\n"
-" -o=? 設定任意指定的設定選項,例如 -o dir::cache=/tmp\n"
-"若要深入了解,您還可以查閱 apt-cache(8) 和 apt.conf(5) 參考手冊。\n"
+#: methods/ftp.cc:722
+msgid "getaddrinfo was unable to get a listening socket"
+msgstr "getaddrinfo 無法取得監聽的 socket"
-#: cmdline/apt-cdrom.cc:78
-msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
-msgstr "請給這張光碟取個名字,比如說“Debian 2.1r1 Disk 1”"
+#: methods/ftp.cc:736
+msgid "Could not bind a socket"
+msgstr "無法連接(bind) socket"
-#: cmdline/apt-cdrom.cc:93
-msgid "Please insert a Disc in the drive and press enter"
-msgstr "請放入光碟至光碟機,然後按 [Enter] 鍵。"
+#: methods/ftp.cc:740
+msgid "Could not listen on the socket"
+msgstr "無法在 socket 上接收資料"
-#: cmdline/apt-cdrom.cc:117
-msgid "Repeat this process for the rest of the CDs in your set."
-msgstr "請對您的光碟套件中的其它光碟重復相同的操作。"
+#: methods/ftp.cc:747
+msgid "Could not determine the socket's name"
+msgstr "無法解析 socket 名稱"
-#: cmdline/apt-config.cc:41
-msgid "Arguments not in pairs"
-msgstr "參數並非一對"
+#: methods/ftp.cc:779
+msgid "Unable to send PORT command"
+msgstr "無法送出「PORT」命令"
-#: cmdline/apt-config.cc:76
-msgid ""
-"Usage: apt-config [options] command\n"
-"\n"
-"apt-config is a simple tool to read the APT config file\n"
-"\n"
-"Commands:\n"
-" shell - Shell mode\n"
-" dump - Show the configuration\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"用法:apt-config [選項] 命令\n"
-"\n"
-"apt-config 是一個用於讀取 APT 設定檔案的簡單工具\n"
-"\n"
-"命令:\n"
-" shell - Shell 模式\n"
-" dump - 顯示設定檔案\n"
-"\n"
-"選項:\n"
-" -h 本幫助訊息。\n"
-" -c=? 讀取指定的設定檔案\n"
-" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
+#: methods/ftp.cc:789
+#, c-format
+msgid "Unknown address family %u (AF_*)"
+msgstr "未知的地址成員 %u (AF_*)"
-#: cmdline/apt-extracttemplates.cc:98
+#: methods/ftp.cc:798
#, c-format
-msgid "%s not a valid DEB package."
-msgstr "%s 不是合法的 DEB 套件"
+msgid "EPRT failed, server said: %s"
+msgstr "EPRT 失敗,伺服器回應:%s"
-#: cmdline/apt-extracttemplates.cc:232
-msgid ""
-"Usage: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates is a tool to extract config and template info\n"
-"from debian packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -t Set the temp dir\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-msgstr ""
-"用法: apt-extracttemplates file1 [file2 ...]\n"
-"\n"
-"apt-extracttemplates 是用來從 debian 套件中解壓出設定檔和模板\n"
-"信息的工具\n"
-"\n"
-"選項:\n"
-" -h 本幫助訊息。\n"
-" -t 設定 temp 目錄\n"
-" -c=? 讀取指定的設定檔案\n"
-" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
+#: methods/ftp.cc:818
+msgid "Data socket connect timed out"
+msgstr "Data socket 連線逾時"
-#: cmdline/apt-extracttemplates.cc:310
-msgid "Cannot get debconf version. Is debconf installed?"
-msgstr "ç\84¡æ³\95å\8f\96å¾\97 debconf ç\89\88æ\9c¬ã\80\82debconf æ\98¯å\90¦å®\89è£\9d?"
+#: methods/ftp.cc:825
+msgid "Unable to accept connection"
+msgstr "ç\84¡æ³\95å\85\81許é\80£ç·\9a"
-#: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338
-msgid "Package extension list is too long"
-msgstr "å¥\97件延伸å\88\97表é\81\8eé\95·"
+#: methods/ftp.cc:864 methods/http.cc:959 methods/rsh.cc:303
+msgid "Problem hashing file"
+msgstr "å\95\8fé¡\8cé\9b\9cæ¹\8a表"
-#: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180
-#: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253
-#: ftparchive/apt-ftparchive.cc:267 ftparchive/apt-ftparchive.cc:289
+#: methods/ftp.cc:877
#, c-format
-msgid "Error processing directory %s"
-msgstr "處理目錄 %s 時錯誤"
-
-#: ftparchive/apt-ftparchive.cc:251
-msgid "Source extension list is too long"
-msgstr "原碼的延伸列表太長"
+msgid "Unable to fetch file, server said '%s'"
+msgstr "無法取得檔案,伺服器回應:%s"
-#: ftparchive/apt-ftparchive.cc:368
-msgid "Error writing header to contents file"
-msgstr "寫入標頭資訊到目錄檔案時出錯"
+#: methods/ftp.cc:892 methods/rsh.cc:322
+msgid "Data socket timed out"
+msgstr "Data socket 連線逾時"
-#: ftparchive/apt-ftparchive.cc:398
+#: methods/ftp.cc:922
#, c-format
-msgid "Error processing contents %s"
-msgstr "è\99\95ç\90\86ç\9b®é\8c\84 %s æ\99\82å\87ºé\8c¯"
+msgid "Data transfer failed, server said '%s'"
+msgstr "è³\87æ\96\99å\82³è¼¸å¤±æ\95\97ï¼\8c伺æ\9c\8då\99¨å\9b\9eæ\87\89 %s"
-#: ftparchive/apt-ftparchive.cc:553
-msgid ""
-"Usage: apt-ftparchive [options] command\n"
-"Commands: packages binarypath [overridefile [pathprefix]]\n"
-" sources srcpath [overridefile [pathprefix]]\n"
-" contents path\n"
-" release path\n"
-" generate config [groups]\n"
-" clean config\n"
-"\n"
-"apt-ftparchive generates index files for Debian archives. It supports\n"
-"many styles of generation from fully automated to functional replacements\n"
-"for dpkg-scanpackages and dpkg-scansources\n"
-"\n"
-"apt-ftparchive generates Package files from a tree of .debs. The\n"
-"Package file contains the contents of all the control fields from\n"
-"each package as well as the MD5 hash and filesize. An override file\n"
-"is supported to force the value of Priority and Section.\n"
-"\n"
-"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
-"The --source-override option can be used to specify a src override file\n"
-"\n"
-"The 'packages' and 'sources' command should be run in the root of the\n"
-"tree. BinaryPath should point to the base of the recursive search and \n"
-"override file should contain the override flags. Pathprefix is\n"
-"appended to the filename fields if present. Example usage from the \n"
-"Debian archive:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" --md5 Control MD5 generation\n"
-" -s=? Source override file\n"
-" -q Quiet\n"
-" -d=? Select the optional caching database\n"
-" --no-delink Enable delinking debug mode\n"
-" --contents Control contents file generation\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option"
-msgstr ""
-"用法: apt-ftparchive [選項] 命令\n"
-"命令: packages 二進制套件搜索路徑 [overridefile [pathprefix]]\n"
-" sources 源碼搜索路徑 [overridefile [pathprefix]]\n"
-" contents 搜索路徑\n"
-" release 搜索路徑\n"
-" generate 設定檔 [groups]\n"
-" clean 設定檔\n"
-"\n"
-"apt-ftparchive 用來為 Debian 套件產生索引檔案。它支援\n"
-"多種生成索引的方式,從自動化和功能性來說,是一套取代\n"
-"dpkg-scanpackages 和 dpkg-scansources 的工具\n"
-"\n"
-"apt-ftparchive 能依據一個由 .deb 檔案構成的檔案樹產生 Package 檔案。\n"
-"Package 檔案不僅包含每個套件的 MD5 校驗碼和檔案大小,\n"
-"還有套件的所有控制字段的內容。同時支援 override 檔案,\n"
-"它可以強制指套件的優先等級及其所屬的套件類別。\n"
-"\n"
-"與上頭類似,apt-ftparchive 也能由 .dsc 的檔案樹生成 Source 檔案。\n"
-"使用 --source-override 選項來指定一個 override 檔案\n"
-"\n"
-"使用 'packages' 和 'source' 命令時,必須在檔案樹的根執行該程式。\n"
-"二進制檔案的搜索路徑一定要是遞迴搜索的底層,\n"
-"而且 override 檔案必須包含 override 旗標。如果 Pathprefix\n"
-"存在則加到 filename 字段。\n"
-"以 Debian 檔案庫舉例說明:\n"
-" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
-" dists/potato/main/binary-i386/Packages\n"
-"\n"
-"選項:\n"
-" -h 本幫助說明\n"
-" --md5 產生 MD5 校驗控制碼\n"
-" -s=? 源碼的 override 檔案\n"
-" -q 輸出精簡信息\n"
-" -d=? 指定選擇的快取資料庫\n"
-" --no-delink 開啟delink的偵錯模式\n"
-" --contents 產生控制內容檔案\n"
-" -c=? 讀取指定的設定檔\n"
-" -o=? 設定任意指定的設定選項"
+#. Get the files information
+#: methods/ftp.cc:997
+msgid "Query"
+msgstr "查詢"
+
+#: methods/ftp.cc:1109
+msgid "Unable to invoke "
+msgstr "無法讀取 "
-#: ftparchive/apt-ftparchive.cc:759
-msgid "No selections matched"
-msgstr "找不到符合的選項"
+#: methods/connect.cc:64
+#, c-format
+msgid "Connecting to %s (%s)"
+msgstr "連絡『%s (%s)』中"
-#: ftparchive/apt-ftparchive.cc:832
+#: methods/connect.cc:71
#, c-format
-msgid "Some files are missing in the package file group `%s'"
-msgstr "套件檔案組 `%s' 缺少部份檔案"
+msgid "[IP: %s %s]"
+msgstr "[IP: %s %s]"
-#: ftparchive/cachedb.cc:43
+#: methods/connect.cc:80
#, c-format
-msgid "DB was corrupted, file renamed to %s.old"
-msgstr "DB 已損毀,檔案被更名成 %s.old"
+msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
+msgstr "無法建立到『%s』的 socket (族=%u 型=%u 協定=%u)。"
-#: ftparchive/cachedb.cc:61
+#: methods/connect.cc:86
#, c-format
-msgid "DB is old, attempting to upgrade %s"
-msgstr "DB 過舊,嘗試更新 %s"
+msgid "Cannot initiate the connection to %s:%s (%s)."
+msgstr "無法聯絡到主機『%s:%s (%s)』。"
-#: ftparchive/cachedb.cc:72
-msgid ""
-"DB format is invalid. If you upgraded from a older version of apt, please "
-"remove and re-create the database."
-msgstr "資料庫格式錯誤。如果您升級舊版的 apt,請移除並重建資料庫。"
+#: methods/connect.cc:93
+#, c-format
+msgid "Could not connect to %s:%s (%s), connection timed out"
+msgstr "無法聯絡到主機『%s:%s (%s)』。"
-#: ftparchive/cachedb.cc:77
+#: methods/connect.cc:108
#, c-format
-msgid "Unable to open DB file %s: %s"
-msgstr "無法開啟 DB 檔案 %s:%s"
+msgid "Could not connect to %s:%s (%s)."
+msgstr "無法聯絡到主機『%s:%s (%s)』。"
-#: ftparchive/cachedb.cc:238
-msgid "Archive has no control record"
-msgstr "檔案沒有 control 記錄"
+#. We say this mainly because the pause here is for the
+#. ssh connection that is still going
+#: methods/connect.cc:136 methods/rsh.cc:425
+#, c-format
+msgid "Connecting to %s"
+msgstr "聯絡主機『%s』中"
-#: ftparchive/cachedb.cc:444
-msgid "Unable to get a cursor"
-msgstr "無法取得游標"
+#: methods/connect.cc:167
+#, c-format
+msgid "Could not resolve '%s'"
+msgstr "無法解析位置 %s"
-#: ftparchive/writer.cc:76
+#: methods/connect.cc:173
#, c-format
-msgid "W: Unable to read directory %s\n"
-msgstr "W:無法讀取目錄 %s\n"
+msgid "Temporary failure resolving '%s'"
+msgstr "解析『%s』暫時失敗"
-#: ftparchive/writer.cc:81
+#: methods/connect.cc:176
#, c-format
-msgid "W: Unable to stat %s\n"
-msgstr "W:無法取得 %s 狀態\n"
+msgid "Something wicked happened resolving '%s:%s' (%i)"
+msgstr "無法解析『%s:%s (%i)』。"
-#: ftparchive/writer.cc:132
-msgid "E: "
-msgstr "錯誤:"
+#: methods/connect.cc:223
+#, c-format
+msgid "Unable to connect to %s %s:"
+msgstr "無法聯絡到主機『%s %s』:"
-#: ftparchive/writer.cc:134
-msgid "W: "
-msgstr "警告:"
+#: methods/gpgv.cc:65
+#, c-format
+msgid "Couldn't access keyring: '%s'"
+msgstr "無法存取keyring:%s"
-#: ftparchive/writer.cc:141
-msgid "E: Errors apply to file "
-msgstr "E:套用到檔案時出錯"
+#: methods/gpgv.cc:101
+msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
+msgstr "錯誤:Acquire::gpgv::Options 的參數列表超長。結束執行。"
-#: ftparchive/writer.cc:158 ftparchive/writer.cc:188
+#: methods/gpgv.cc:205
+msgid ""
+"Internal error: Good signature, but could not determine key fingerprint?!"
+msgstr "內部錯誤:簽名正確無誤,但是無法確認密鑰的指紋(key fingerprint)?!"
+
+#: methods/gpgv.cc:210
+msgid "At least one invalid signature was encountered."
+msgstr "至少發現一個無效的簽名。"
+
+#: methods/gpgv.cc:214
#, c-format
-msgid "Failed to resolve %s"
-msgstr "無法解析路徑 %s"
+msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
+msgstr "無法執行“%s”來驗證簽名(您安裝了 gnupg 嗎?)"
-#: ftparchive/writer.cc:170
-msgid "Tree walking failed"
-msgstr "無法走訪目錄樹"
+#: methods/gpgv.cc:219
+msgid "Unknown error executing gpgv"
+msgstr "執行 gpgv 時發生未知錯誤"
-#: ftparchive/writer.cc:195
+#: methods/gpgv.cc:250
+msgid "The following signatures were invalid:\n"
+msgstr "下列的簽名皆不合法:\n"
+
+#: methods/gpgv.cc:257
+msgid ""
+"The following signatures couldn't be verified because the public key is not "
+"available:\n"
+msgstr "由於沒有公鑰,下列簽名無法進行驗證:\n"
+
+#: methods/gzip.cc:64
#, c-format
-msgid "Failed to open %s"
-msgstr "無法開啟 %s"
+msgid "Couldn't open pipe for %s"
+msgstr "無法開啟管線給 %s 使用"
-#: ftparchive/writer.cc:254
+#: methods/gzip.cc:109
#, c-format
-msgid " DeLink %s [%s]\n"
-msgstr " 移除連結 %s [%s]\n"
+msgid "Read error from %s process"
+msgstr "從 %s 進程讀取錯誤"
-#: ftparchive/writer.cc:262
+#: methods/http.cc:377
+msgid "Waiting for headers"
+msgstr "等待標頭"
+
+#: methods/http.cc:523
#, c-format
-msgid "Failed to readlink %s"
-msgstr "無法讀取符號鏈接 %s"
+msgid "Got a single header line over %u chars"
+msgstr "取得一個單行超過 %u 字元的標頭"
-#: ftparchive/writer.cc:266
+#: methods/http.cc:531
+msgid "Bad header line"
+msgstr "壞的標頭"
+
+#: methods/http.cc:550 methods/http.cc:557
+msgid "The HTTP server sent an invalid reply header"
+msgstr "http 伺服器傳送一個無效的回覆標頭"
+
+#: methods/http.cc:586
+msgid "The HTTP server sent an invalid Content-Length header"
+msgstr "http 伺服器傳送一個無效的 Content-Length 標頭"
+
+#: methods/http.cc:601
+msgid "The HTTP server sent an invalid Content-Range header"
+msgstr "http 伺服器傳送一個無效的 Content-Range 標頭"
+
+#: methods/http.cc:603
+msgid "This HTTP server has broken range support"
+msgstr "http 伺服器有損毀的範圍支援"
+
+#: methods/http.cc:627
+msgid "Unknown date format"
+msgstr "未知的資料格式"
+
+#: methods/http.cc:774
+msgid "Select failed"
+msgstr "Select 失敗"
+
+#: methods/http.cc:779
+msgid "Connection timed out"
+msgstr "連線逾時"
+
+#: methods/http.cc:802
+msgid "Error writing to output file"
+msgstr "寫入輸出檔時發生錯誤"
+
+#: methods/http.cc:833
+msgid "Error writing to file"
+msgstr "寫入檔案時發生錯誤"
+
+#: methods/http.cc:861
+msgid "Error writing to the file"
+msgstr "寫入檔案時發生錯誤"
+
+#: methods/http.cc:875
+msgid "Error reading from server. Remote end closed connection"
+msgstr "從遠端主機讀取錯誤,關閉連線"
+
+#: methods/http.cc:877
+msgid "Error reading from server"
+msgstr "從伺服器讀取發生錯誤"
+
+#: methods/http.cc:1104
+msgid "Bad header data"
+msgstr "壞的標頭資料"
+
+#: methods/http.cc:1121 methods/http.cc:1176
+msgid "Connection failed"
+msgstr "連線失敗"
+
+#: methods/http.cc:1228
+msgid "Internal error"
+msgstr "內部錯誤"
+
+#: apt-pkg/contrib/mmap.cc:80
+msgid "Can't mmap an empty file"
+msgstr "不能將空白檔案讀入記憶體"
+
+#: apt-pkg/contrib/mmap.cc:85
#, c-format
-msgid "Failed to unlink %s"
-msgstr "無法 unlink %s"
+msgid "Couldn't make mmap of %lu bytes"
+msgstr "無法讀入檔案 %lu 位元組至記憶體"
-#: ftparchive/writer.cc:273
+#: apt-pkg/contrib/strutl.cc:978
#, c-format
-msgid "*** Failed to link %s to %s"
-msgstr "*** 無法將 %s 鏈接到 %s"
+msgid "Selection %s not found"
+msgstr "選項『%s』找不到。"
-#: ftparchive/writer.cc:283
+#: apt-pkg/contrib/configuration.cc:439
#, c-format
-msgid " DeLink limit of %sB hit.\n"
-msgstr " 達到了 DeLink 的上限 %sB。\n"
+msgid "Unrecognized type abbreviation: '%c'"
+msgstr "不認識的簡寫類型:%c"
-#: ftparchive/writer.cc:387
-msgid "Archive had no package field"
-msgstr "檔案無套件字符"
+#: apt-pkg/contrib/configuration.cc:497
+#, c-format
+msgid "Opening configuration file %s"
+msgstr "開啟組態檔 %s"
-#: ftparchive/writer.cc:395 ftparchive/writer.cc:610
+#: apt-pkg/contrib/configuration.cc:515
+#, fuzzy, c-format
+msgid "Line %d too long (max %u)"
+msgstr "第 %d 行太長(最長 %d)"
+
+#: apt-pkg/contrib/configuration.cc:611
#, c-format
-msgid " %s has no override entry\n"
-msgstr " %s 無 override 項目\n"
+msgid "Syntax error %s:%u: Block starts with no name."
+msgstr "語法錯誤 %s:%u: 區塊沒有名稱"
-#: ftparchive/writer.cc:440 ftparchive/writer.cc:698
+#: apt-pkg/contrib/configuration.cc:630
#, c-format
-msgid " %s maintainer is %s not %s\n"
-msgstr " %s 套件維護者是 %s 非 %s\n"
+msgid "Syntax error %s:%u: Malformed tag"
+msgstr "語法錯誤 %s:%u: 無效的標籤"
-#: ftparchive/writer.cc:620
+#: apt-pkg/contrib/configuration.cc:647
#, c-format
-msgid " %s has no source override entry\n"
-msgstr " %s 無原始碼 override 項目\n"
+msgid "Syntax error %s:%u: Extra junk after value"
+msgstr "語法錯誤 %s:%u: 值後有多餘的垃圾"
-#: ftparchive/writer.cc:624
+#: apt-pkg/contrib/configuration.cc:687
#, c-format
-msgid " %s has no binary override entry either\n"
-msgstr " %s 無二元碼 override 項目\n"
+msgid "Syntax error %s:%u: Directives can only be done at the top level"
+msgstr "語法錯誤: %s:%u: 指令只能於最高層級執行"
-#: ftparchive/contents.cc:317
+#: apt-pkg/contrib/configuration.cc:694
#, c-format
-msgid "Internal error, could not locate member %s"
-msgstr "內部錯誤:無法找到成員 %s"
+msgid "Syntax error %s:%u: Too many nested includes"
+msgstr "語法錯誤 %s:%u: 太多重複引入檔案"
-#: ftparchive/contents.cc:353 ftparchive/contents.cc:384
-msgid "realloc - Failed to allocate memory"
-msgstr "realloc - 無法配置記憶體空間"
+#: apt-pkg/contrib/configuration.cc:698 apt-pkg/contrib/configuration.cc:703
+#, c-format
+msgid "Syntax error %s:%u: Included from here"
+msgstr "語法錯誤 %s:%u: 從此引入"
-#: ftparchive/override.cc:34 ftparchive/override.cc:142
+#: apt-pkg/contrib/configuration.cc:707
#, c-format
-msgid "Unable to open %s"
-msgstr "無法開啟 %s"
+msgid "Syntax error %s:%u: Unsupported directive '%s'"
+msgstr "語法錯誤 %s:%u: 不支援的指令 '%s'"
-#: ftparchive/override.cc:60 ftparchive/override.cc:166
+#: apt-pkg/contrib/configuration.cc:741
#, c-format
-msgid "Malformed override %s line %lu #1"
-msgstr "override 文件 %s 第 %lu 行的格式有誤 #1"
+msgid "Syntax error %s:%u: Extra junk at end of file"
+msgstr "語法錯誤 %s:%u: 檔案後有多餘的垃圾"
-#: ftparchive/override.cc:74 ftparchive/override.cc:178
+#: apt-pkg/contrib/progress.cc:153
#, c-format
-msgid "Malformed override %s line %lu #2"
-msgstr "override 文件 %s 第 %lu 行的格式有誤 #2"
+msgid "%c%s... Error!"
+msgstr "%c%s... 錯誤!"
-#: ftparchive/override.cc:88 ftparchive/override.cc:191
+#: apt-pkg/contrib/progress.cc:155
#, c-format
-msgid "Malformed override %s line %lu #3"
-msgstr "override 文件 %s 第 %lu 行的格式有誤 #3"
+msgid "%c%s... Done"
+msgstr "%c%s... 完成"
-#: ftparchive/override.cc:127 ftparchive/override.cc:201
+#: apt-pkg/contrib/cmndline.cc:77
#, c-format
-msgid "Failed to read the override file %s"
-msgstr "無法讀取 override 檔案 %s"
+msgid "Command line option '%c' [from %s] is not known."
+msgstr "未知的命令列選項「%c」從 %s"
-#: ftparchive/multicompress.cc:71
+#: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
+#: apt-pkg/contrib/cmndline.cc:119
#, c-format
-msgid "Unknown compression algorithm '%s'"
-msgstr "未知的壓縮演算法 '%s'"
+msgid "Command line option %s is not understood"
+msgstr "無法理解的命令列選項 %s"
-#: ftparchive/multicompress.cc:101
+#: apt-pkg/contrib/cmndline.cc:124
#, c-format
-msgid "Compressed output %s needs a compression set"
-msgstr "å£\93縮輸å\87º %s é\9c\80è¦\81ä¸\80å£\93縮æª\94æ¡\88é\9b\86å\90\88"
+msgid "Command line option %s is not boolean"
+msgstr "å\91½ä»¤å\88\97é\81¸é \85 %s ä¸\8dæ\98¯å¸\83æ\9e\97(boolean)è®\8aæ\95¸"
-#: ftparchive/multicompress.cc:194
-msgid "Failed to create FILE*"
-msgstr "無法建立 FILE*"
+#: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
+#, c-format
+msgid "Option %s requires an argument."
+msgstr "選項 %s 需要更多的參數"
-#: ftparchive/multicompress.cc:197
-msgid "Failed to fork"
-msgstr "fork 時失敗"
+#: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
+#, c-format
+msgid "Option %s: Configuration item specification must have an =<val>."
+msgstr "選項 %s: 組態元件描述應該有 =<val>"
-#: ftparchive/multicompress.cc:211
-msgid "Compress child"
-msgstr "壓縮子程序"
+#: apt-pkg/contrib/cmndline.cc:234
+#, c-format
+msgid "Option %s requires an integer argument, not '%s'"
+msgstr "選項 %s 需要整數參數,不是 %s"
-#: ftparchive/multicompress.cc:234
+#: apt-pkg/contrib/cmndline.cc:265
#, c-format
-msgid "Internal error, failed to create %s"
-msgstr "內部錯誤,無法建立 %s"
+msgid "Option '%s' is too long"
+msgstr "選項 %s 太長"
-#: ftparchive/multicompress.cc:285
-msgid "Failed to create subprocess IPC"
-msgstr "無法建立子程序 IPC"
+#: apt-pkg/contrib/cmndline.cc:298
+#, c-format
+msgid "Sense %s is not understood, try true or false."
+msgstr "偵測器 %s 無法理解,試試 true 或 false"
-#: ftparchive/multicompress.cc:320
-msgid "Failed to exec compressor "
-msgstr "無法執行壓縮程序"
+#: apt-pkg/contrib/cmndline.cc:348
+#, c-format
+msgid "Invalid operation %s"
+msgstr "無效的操作:%s"
-#: ftparchive/multicompress.cc:359
-msgid "decompressor"
-msgstr "解壓縮程序"
+#: apt-pkg/contrib/cdromutl.cc:52
+#, c-format
+msgid "Unable to stat the mount point %s"
+msgstr "無法讀取掛載點 %s"
-#: ftparchive/multicompress.cc:402
-msgid "IO to subprocess/file failed"
-msgstr "IO 到子程序/檔案失效"
+#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
+#, c-format
+msgid "Unable to change to %s"
+msgstr "無法進入『%s』目錄。"
-#: ftparchive/multicompress.cc:454
-msgid "Failed to read while computing MD5"
-msgstr "在計算 MD5 時無法讀取資料"
+#: apt-pkg/contrib/cdromutl.cc:187
+msgid "Failed to stat the cdrom"
+msgstr "CD-ROM 狀況讀取失敗"
-#: ftparchive/multicompress.cc:471
+#: apt-pkg/contrib/fileutl.cc:82
#, c-format
-msgid "Problem unlinking %s"
-msgstr "在 unlink %s 時出錯"
+msgid "Not using locking for read only lock file %s"
+msgstr "不使用檔案鎖定於唯獨檔案 %s"
-#: cmdline/apt-get.cc:121
-msgid "Y"
-msgstr "Y"
+#: apt-pkg/contrib/fileutl.cc:87
+#, c-format
+msgid "Could not open lock file %s"
+msgstr "無法開啟『%s』鎖定檔。"
-#: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1673
+#: apt-pkg/contrib/fileutl.cc:105
#, c-format
-msgid "Regex compilation error - %s"
-msgstr "編譯正規表示法出錯 - %s"
+msgid "Not using locking for nfs mounted lock file %s"
+msgstr "不使用檔案鎖定於 nfs 掛載點上得檔案 %s"
-#: cmdline/apt-get.cc:238
-msgid "The following packages have unmet dependencies:"
-msgstr "下列的套件有無法滿足的依存關係:"
+#: apt-pkg/contrib/fileutl.cc:109
+#, c-format
+msgid "Could not get lock %s"
+msgstr "無法取得『%s』鎖。"
-#: cmdline/apt-get.cc:328
+#: apt-pkg/contrib/fileutl.cc:377
#, c-format
-msgid "but %s is installed"
-msgstr "但是『%s』卻已經安裝好了。"
+msgid "Waited for %s but it wasn't there"
+msgstr "等待 %s 但是它不存在"
-#: cmdline/apt-get.cc:330
+#: apt-pkg/contrib/fileutl.cc:387
#, c-format
-msgid "but %s is to be installed"
-msgstr "但是『%s』卻將被安裝。"
+msgid "Sub-process %s received a segmentation fault."
+msgstr "子程序 %s 收到一個記憶體錯誤"
-#: cmdline/apt-get.cc:337
-msgid "but it is not installable"
-msgstr "但是它卻無法安裝。"
+#: apt-pkg/contrib/fileutl.cc:390
+#, c-format
+msgid "Sub-process %s returned an error code (%u)"
+msgstr "子程序 %s 回傳錯誤碼(%u)"
-#: cmdline/apt-get.cc:339
-msgid "but it is a virtual package"
-msgstr "但是它只是虛擬的套件"
+#: apt-pkg/contrib/fileutl.cc:392
+#, c-format
+msgid "Sub-process %s exited unexpectedly"
+msgstr "子程序 %s 不預期的結束"
-#: cmdline/apt-get.cc:342
-msgid "but it is not installed"
-msgstr "但是『』卻還沒有安裝。"
+#: apt-pkg/contrib/fileutl.cc:436
+#, c-format
+msgid "Could not open file %s"
+msgstr "無法開啟『%s』檔案。"
-#: cmdline/apt-get.cc:342
-msgid "but it is not going to be installed"
-msgstr "但是它卻不會被安裝。"
+#: apt-pkg/contrib/fileutl.cc:492
+#, c-format
+msgid "read, still have %lu to read but none left"
+msgstr "讀取,仍有 %lu 未讀"
-#: cmdline/apt-get.cc:347
-msgid " or"
-msgstr "或"
+#: apt-pkg/contrib/fileutl.cc:522
+#, c-format
+msgid "write, still have %lu to write but couldn't"
+msgstr "寫入,仍有 %lu 待寫入但無法寫入"
-#: cmdline/apt-get.cc:376
-msgid "The following NEW packages will be installed:"
-msgstr "下列的【新】套件都將被安裝:"
+#: apt-pkg/contrib/fileutl.cc:597
+msgid "Problem closing the file"
+msgstr "程式關閉檔案"
-#: cmdline/apt-get.cc:402
-msgid "The following packages will be REMOVED:"
-msgstr "下列的套件都將被【刪除】:"
+#: apt-pkg/contrib/fileutl.cc:603
+msgid "Problem unlinking the file"
+msgstr "程式刪除檔案"
-#: cmdline/apt-get.cc:424
-msgid "The following packages have been kept back:"
-msgstr "下列的套件都將維持舊版本:"
+#: apt-pkg/contrib/fileutl.cc:614
+msgid "Problem syncing the file"
+msgstr "程式同步檔案"
-#: cmdline/apt-get.cc:445
-msgid "The following packages will be upgraded:"
-msgstr "下列的套件都將更新:"
+#: apt-pkg/pkgcache.cc:132
+msgid "Empty package cache"
+msgstr "套件暫存檔是空的。"
-#: cmdline/apt-get.cc:466
-msgid "The following packages will be DOWNGRADED:"
-msgstr "下列的套件都將被「降級」:"
+#: apt-pkg/pkgcache.cc:138
+msgid "The package cache file is corrupted"
+msgstr "套件暫存檔損壞。"
-#: cmdline/apt-get.cc:486
-msgid "The following held packages will be changed:"
-msgstr "下列押後的套件都將被更改:"
+#: apt-pkg/pkgcache.cc:143
+msgid "The package cache file is an incompatible version"
+msgstr "套件暫存檔版本不符合。"
-#: cmdline/apt-get.cc:539
+#: apt-pkg/pkgcache.cc:148
#, c-format
-msgid "%s (due to %s) "
-msgstr "%s(因為 %s)"
+msgid "This APT does not support the versioning system '%s'"
+msgstr "本軟體不支持『%s』版本系統。"
-#: cmdline/apt-get.cc:547
-msgid ""
-"WARNING: The following essential packages will be removed.\n"
-"This should NOT be done unless you know exactly what you are doing!"
-msgstr ""
-"警告:下列的基本套件都將被移除。\n"
-"除非您很清楚在做什麼,請勿輕易嘗試。"
+#: apt-pkg/pkgcache.cc:153
+msgid "The package cache was built for a different architecture"
+msgstr "套件暫存檔是在另一種系統上產生的。"
-#: cmdline/apt-get.cc:578
-#, c-format
-msgid "%lu upgraded, %lu newly installed, "
-msgstr "更新 %lu 個套件,新安裝 %lu 個套件,"
+#: apt-pkg/pkgcache.cc:224
+msgid "Depends"
+msgstr "依存關係"
-#: cmdline/apt-get.cc:582
-#, c-format
-msgid "%lu reinstalled, "
-msgstr "重新安裝 %lu 個套件,"
+#: apt-pkg/pkgcache.cc:224
+msgid "PreDepends"
+msgstr "特別依存關係"
-#: cmdline/apt-get.cc:584
-#, c-format
-msgid "%lu downgraded, "
-msgstr "降 %lu 個套件的版,"
+#: apt-pkg/pkgcache.cc:224
+msgid "Suggests"
+msgstr "建議"
-#: cmdline/apt-get.cc:586
-#, c-format
-msgid "%lu to remove and %lu not upgraded.\n"
-msgstr "刪除 %lu 個套件,另不更新 %lu 個套件。\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Recommends"
+msgstr "推薦"
-#: cmdline/apt-get.cc:590
-#, c-format
-msgid "%lu not fully installed or removed.\n"
-msgstr "%lu 個套件沒有完全安裝或刪除完畢。\n"
+#: apt-pkg/pkgcache.cc:225
+msgid "Conflicts"
+msgstr "衝突"
-#: cmdline/apt-get.cc:664
-msgid "Correcting dependencies..."
-msgstr "更正依存關係中..."
+#: apt-pkg/pkgcache.cc:225
+msgid "Replaces"
+msgstr "取代"
-#: cmdline/apt-get.cc:667
-msgid " failed."
-msgstr "失敗"
+#: apt-pkg/pkgcache.cc:226
+msgid "Obsoletes"
+msgstr "淘汰"
-#: cmdline/apt-get.cc:670
-msgid "Unable to correct dependencies"
-msgstr "無法更正依存關係。"
+#: apt-pkg/pkgcache.cc:226
+msgid "Breaks"
+msgstr ""
-#: cmdline/apt-get.cc:673
-msgid "Unable to minimize the upgrade set"
-msgstr "無法最小化升級的套件集合"
+#: apt-pkg/pkgcache.cc:237
+msgid "important"
+msgstr "重要"
-#: cmdline/apt-get.cc:675
-msgid " Done"
-msgstr " 完成"
+#: apt-pkg/pkgcache.cc:237
+msgid "required"
+msgstr "必要"
-#: cmdline/apt-get.cc:679
-msgid "You might want to run `apt-get -f install' to correct these."
-msgstr "用『apt-get -f install』指令或許能修正這些問題。"
+#: apt-pkg/pkgcache.cc:237
+msgid "standard"
+msgstr "標準"
-#: cmdline/apt-get.cc:682
-msgid "Unmet dependencies. Try using -f."
-msgstr "無法滿足相依關係。試試看 -f 選項。"
+#: apt-pkg/pkgcache.cc:238
+msgid "optional"
+msgstr "次要"
-#: cmdline/apt-get.cc:704
-msgid "WARNING: The following packages cannot be authenticated!"
-msgstr "警告:下列的套件驗證失敗!"
+#: apt-pkg/pkgcache.cc:238
+msgid "extra"
+msgstr "添加"
-#: cmdline/apt-get.cc:708
-msgid "Authentication warning overridden.\n"
-msgstr "忽略了認證警告。\n"
+#: apt-pkg/depcache.cc:121 apt-pkg/depcache.cc:150
+msgid "Building dependency tree"
+msgstr "了解套件依存關係中"
-#: cmdline/apt-get.cc:715
-msgid "Install these packages without verification [y/N]? "
-msgstr "不驗證這些套件就直接安裝?[y/N]"
+#: apt-pkg/depcache.cc:122
+msgid "Candidate versions"
+msgstr "候選版本"
-#: cmdline/apt-get.cc:717
-msgid "Some packages could not be authenticated"
-msgstr "部份套件無法驗證"
+#: apt-pkg/depcache.cc:151
+msgid "Dependency generation"
+msgstr "產生套件依存關係"
-#: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
-msgid "There are problems and -y was used without --force-yes"
-msgstr "出現一些問題,您使用了 -y 選項但是沒有用 --force-yes"
+#: apt-pkg/depcache.cc:172 apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
+#, fuzzy
+msgid "Reading state information"
+msgstr "結合現有資料中"
-#: cmdline/apt-get.cc:770
-msgid "Internal error, InstallPackages was called with broken packages!"
-msgstr "內部錯誤,InstallPackages 被用在了無法安裝的套上!"
+#: apt-pkg/depcache.cc:219
+#, fuzzy, c-format
+msgid "Failed to open StateFile %s"
+msgstr "無法開啟 %s"
-#: cmdline/apt-get.cc:779
-msgid "Packages need to be removed but remove is disabled."
-msgstr "有套件需要被移除,但移除動作被禁止。"
+#: apt-pkg/depcache.cc:225
+#, fuzzy, c-format
+msgid "Failed to write temporary StateFile %s"
+msgstr "寫入檔案 %s 失敗"
-#: cmdline/apt-get.cc:790
-msgid "Internal error, Ordering didn't finish"
-msgstr "內部錯誤,Ordering didn't finish"
+#: apt-pkg/tagfile.cc:102
+#, c-format
+msgid "Unable to parse package file %s (1)"
+msgstr "無法辨識套件『%s』(1)。"
-#: cmdline/apt-get.cc:806 cmdline/apt-get.cc:2012 cmdline/apt-get.cc:2045
-msgid "Unable to lock the download directory"
-msgstr "無法鎖定下載的目錄"
+#: apt-pkg/tagfile.cc:189
+#, c-format
+msgid "Unable to parse package file %s (2)"
+msgstr "無法辨識套件『%s』(1)。"
-#: cmdline/apt-get.cc:831
-msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
-msgstr "怪了……檔案大小不符,發信給 apt@packages.debian.org 吧"
+#: apt-pkg/sourcelist.cc:90
+#, c-format
+msgid "Malformed line %lu in source list %s (URI)"
+msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號)。"
-#: cmdline/apt-get.cc:836
+#: apt-pkg/sourcelist.cc:92
#, c-format
-msgid "Need to get %sB/%sB of archives.\n"
-msgstr "需要下載 %2$sB 中 %1$sB 的檔案。\n"
+msgid "Malformed line %lu in source list %s (dist)"
+msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本)。"
-#: cmdline/apt-get.cc:839
+#: apt-pkg/sourcelist.cc:95
#, c-format
-msgid "Need to get %sB of archives.\n"
-msgstr "需要下載 %sB 的檔案。\n"
+msgid "Malformed line %lu in source list %s (URI parse)"
+msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (通用資源識別號分辨)。"
-#: cmdline/apt-get.cc:844
+#: apt-pkg/sourcelist.cc:101
#, c-format
-msgid "After unpacking %sB of additional disk space will be used.\n"
-msgstr "解壓縮後將消耗 %sB 的空間。\n"
+msgid "Malformed line %lu in source list %s (absolute dist)"
+msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (特定版本)。"
-#: cmdline/apt-get.cc:847
+#: apt-pkg/sourcelist.cc:108
#, c-format
-msgid "After unpacking %sB disk space will be freed.\n"
-msgstr "解壓縮後將空出 %sB 的空間。\n"
+msgid "Malformed line %lu in source list %s (dist parse)"
+msgstr "來源檔『%2$s』第 %1$lu 行有錯誤 (版本分辨)。"
-#: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2188
+#: apt-pkg/sourcelist.cc:199
#, c-format
-msgid "Couldn't determine free space in %s"
-msgstr "%s 無法足夠的空間。"
+msgid "Opening %s"
+msgstr "開啟『%s』中"
-#: cmdline/apt-get.cc:864
+#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448
#, c-format
-msgid "You don't have enough free space in %s."
-msgstr "『%s』內沒有足夠的空間。"
+msgid "Line %u too long in source list %s."
+msgstr "來源檔『%2$s』第 %1$u 行太長。"
-#: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
-msgid "Trivial Only specified but this is not a trivial operation."
-msgstr "雖然您指定了 Trivial Only,但這不是個顯而易懂的(trivial)操作。"
+#: apt-pkg/sourcelist.cc:236
+#, c-format
+msgid "Malformed line %u in source list %s (type)"
+msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (類別)。"
-#: cmdline/apt-get.cc:881
-msgid "Yes, do as I say!"
-msgstr "是的,請執行我所指定的"
+#: apt-pkg/sourcelist.cc:240
+#, c-format
+msgid "Type '%s' is not known on line %u in source list %s"
+msgstr "未知的類別 %1$s 於來源檔 %3$s 第 %2$u 行"
+
+#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
+#, c-format
+msgid "Malformed line %u in source list %s (vendor id)"
+msgstr "來源檔『%2$s』第 %1$u 行有錯誤 (商家名稱)。"
-#: cmdline/apt-get.cc:883
+#: apt-pkg/packagemanager.cc:399
#, c-format
msgid ""
-"You are about to do something potentially harmful.\n"
-"To continue type in the phrase '%s'\n"
-" ?] "
+"This installation run will require temporarily removing the essential "
+"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+"you really want to do it, activate the APT::Force-LoopBreak option."
msgstr ""
-"您的操作會導致潛在的危險\n"
-"若要繼續的話,就輸入下面的句子“%s”\n"
-" ?] "
-
-#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
-msgid "Abort."
-msgstr "放棄執行。"
+"此安裝因衝突或特別依存關係,需暫時刪除『%s』這個重要套件。這種情形通常有問"
+"題,但您確定的話請啟動『APT::Force-LoopBreak』選項。"
-#: cmdline/apt-get.cc:904
-msgid "Do you want to continue [Y/n]? "
-msgstr "繼續執行嗎? 是按 [Y] 鍵,否按 [n] 鍵 "
+#: apt-pkg/pkgrecords.cc:32
+#, c-format
+msgid "Index file type '%s' is not supported"
+msgstr "本軟體不支持『%s』型的索引檔。"
-#: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2231
+#: apt-pkg/algorithms.cc:247
#, c-format
-msgid "Failed to fetch %s %s\n"
-msgstr "無法下載『%s』檔案。%s\n"
+msgid ""
+"The package %s needs to be reinstalled, but I can't find an archive for it."
+msgstr "套件『%s』需要重新安裝,但找不到軟件檔案。"
-#: cmdline/apt-get.cc:994
-msgid "Some files failed to download"
-msgstr "部份檔案無法下載"
+#: apt-pkg/algorithms.cc:1105
+msgid ""
+"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
+"held packages."
+msgstr "無法解決依存關係。可能原因是某些套件被押後。"
-#: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2240
-msgid "Download complete and in download only mode"
-msgstr "下載完畢,目前是“僅下載”模式"
+#: apt-pkg/algorithms.cc:1107
+msgid "Unable to correct problems, you have held broken packages."
+msgstr "無法解決問題,因為某些損毀的套件被押後。"
-#: cmdline/apt-get.cc:1001
-msgid ""
-"Unable to fetch some archives, maybe run apt-get update or try with --fix-"
-"missing?"
-msgstr ""
-"有幾個檔案無法下載,您可以執行 apt-get update 或者嘗試加上--fix-missing \n"
-"選項?"
+#: apt-pkg/acquire.cc:59
+#, c-format
+msgid "Lists directory %spartial is missing."
+msgstr "找不到『%spartial』清單目錄。"
-#: cmdline/apt-get.cc:1005
-msgid "--fix-missing and media swapping is not currently supported"
-msgstr "目前還不支援 --fix-missing 和媒體置換(media swapping)"
+#: apt-pkg/acquire.cc:63
+#, c-format
+msgid "Archive directory %spartial is missing."
+msgstr "找不到『%spartial』檔案目錄。"
-#: cmdline/apt-get.cc:1010
-msgid "Unable to correct missing packages."
-msgstr "無法更正遺失的套件。"
+#. only show the ETA if it makes sense
+#. two days
+#: apt-pkg/acquire.cc:827
+#, c-format
+msgid "Retrieving file %li of %li (%s remaining)"
+msgstr "正在下載第 %li 個文件(共 %li 個,尚需 %s)"
-#: cmdline/apt-get.cc:1011
-msgid "Aborting install."
-msgstr "放棄安裝。"
+#: apt-pkg/acquire.cc:829
+#, c-format
+msgid "Retrieving file %li of %li"
+msgstr "正在下載第%li個檔案(共有%li)"
-#: cmdline/apt-get.cc:1045
+#: apt-pkg/acquire-worker.cc:110
#, c-format
-msgid "Note, selecting %s instead of %s\n"
-msgstr "注æ\84\8f,é\81¸æ\93\87äº\86 %s è\80\8cé\9d\9e %s\n"
+msgid "The method driver %s could not be found."
+msgstr "æ\89¾ä¸\8då\88°å®\89è£\9dæ\96¹å¼\8fã\80\8e%sã\80\8fç\9a\84é©\85å\8b\95ç¨\8bå¼\8fã\80\82"
-#: cmdline/apt-get.cc:1055
+#: apt-pkg/acquire-worker.cc:159
#, c-format
-msgid "Skipping %s, it is already installed and upgrade is not set.\n"
-msgstr "忽ç\95¥ %s,å®\83å·²ç¶\93被å®\89è£\9dè\80\8cä¸\94æ²\92æ\9c\89æ\8c\87å®\9aè¦\81å\8d\87ç´\9aã\80\82\n"
+msgid "Method %s did not start correctly"
+msgstr "å®\89è£\9dæ\96¹å¼\8fã\80\8e%sã\80\8fæ²\92æ\9c\89æ£ç¢ºå\95\9få\8b\95ã\80\82"
-#: cmdline/apt-get.cc:1073
+#: apt-pkg/acquire-worker.cc:398
#, c-format
-msgid "Package %s is not installed, so not removed\n"
-msgstr "套件『%s』沒有安裝,所以無法刪除。\n"
+msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
+msgstr "更換媒體:請把名為 '%s' 的光碟置入 '%s' 碟機,然後按 [Enter] 鍵。"
-#: cmdline/apt-get.cc:1084
+#: apt-pkg/init.cc:124
#, c-format
-msgid "Package %s is a virtual package provided by:\n"
-msgstr "虛擬套件『%s』的提供者是:\n"
+msgid "Packaging system '%s' is not supported"
+msgstr "本軟體不支持『%s』包裝法。"
-#: cmdline/apt-get.cc:1096
-msgid " [Installed]"
-msgstr "【已安裝】"
+#: apt-pkg/init.cc:140
+msgid "Unable to determine a suitable packaging system type"
+msgstr "無法明白系統類別。"
-#: cmdline/apt-get.cc:1101
-msgid "You should explicitly select one to install."
-msgstr "請您明確地選擇一個來進行安裝。"
+#: apt-pkg/clean.cc:57
+#, c-format
+msgid "Unable to stat %s."
+msgstr "無法讀取『%s』的目錄資料。"
+
+#: apt-pkg/srcrecords.cc:44
+msgid "You must put some 'source' URIs in your sources.list"
+msgstr "『sources.list』檔中必須有一些『source』指令。"
-#: cmdline/apt-get.cc:1106
+#: apt-pkg/cachefile.cc:69
+msgid "The package lists or status file could not be parsed or opened."
+msgstr "無法讀取套件清單或狀況檔。"
+
+#: apt-pkg/cachefile.cc:73
+msgid "You may want to run apt-get update to correct these problems"
+msgstr "用『apt-get -f install』指令或許能修正這些問題。"
+
+#: apt-pkg/policy.cc:267
+msgid "Invalid record in the preferences file, no Package header"
+msgstr "喜好檔有錯誤—缺少套件前置檔。"
+
+#: apt-pkg/policy.cc:289
#, 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"
+msgid "Did not understand pin type %s"
+msgstr "本軟體不支持『%s』型的版本釘子。"
-#: cmdline/apt-get.cc:1125
-msgid "However the following packages replace it:"
-msgstr "但是下列的套件將取代它:"
+#: apt-pkg/policy.cc:297
+msgid "No priority (or zero) specified for pin"
+msgstr "對於釘住的檔案無優先順序"
+
+#: apt-pkg/pkgcachegen.cc:72
+msgid "Cache has an incompatible versioning system"
+msgstr "套件暫存檔使用的是不相容的版本系統。"
-#: cmdline/apt-get.cc:1128
+#: apt-pkg/pkgcachegen.cc:115
#, c-format
-msgid "Package %s has no installation candidate"
-msgstr "套件 %s 還沒有可供安裝的候選版本"
+msgid "Error occurred while processing %s (NewPackage)"
+msgstr "處理『%s』時發生錯誤 (NewPackage)。"
-#: cmdline/apt-get.cc:1148
+#: apt-pkg/pkgcachegen.cc:130
#, c-format
-msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
-msgstr "不能重新安裝 %s,因為無法下載它。\n"
+msgid "Error occurred while processing %s (UsePackage1)"
+msgstr "處理『%s』時發生錯誤 (UsePackage1)。"
-#: cmdline/apt-get.cc:1156
+#: apt-pkg/pkgcachegen.cc:153
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc1)"
+msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
+
+#: apt-pkg/pkgcachegen.cc:178
#, c-format
-msgid "%s is already the newest version.\n"
-msgstr "『%s』已經是最新版本了。\n"
+msgid "Error occurred while processing %s (UsePackage2)"
+msgstr "處理『%s』時發生錯誤 (UsePackage2)。"
-#: cmdline/apt-get.cc:1185
+#: apt-pkg/pkgcachegen.cc:182
#, c-format
-msgid "Release '%s' for '%s' was not found"
-msgstr "未找到“%2$s”的“%1$s”發布版本"
+msgid "Error occurred while processing %s (NewFileVer1)"
+msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
-#: cmdline/apt-get.cc:1187
+#: apt-pkg/pkgcachegen.cc:213
#, c-format
-msgid "Version '%s' for '%s' was not found"
-msgstr "未找到“%2$s”的“%1$s”版本"
+msgid "Error occurred while processing %s (NewVersion1)"
+msgstr "處理『%s』時發生錯誤 (NewVersion1)。"
-#: cmdline/apt-get.cc:1193
+#: apt-pkg/pkgcachegen.cc:217
#, c-format
-msgid "Selected version %s (%s) for %s\n"
-msgstr "選定的版本為 %s (%s) 的 %s\n"
+msgid "Error occurred while processing %s (UsePackage3)"
+msgstr "處理『%s』時發生錯誤 (UsePackage3)。"
-#: cmdline/apt-get.cc:1330
-msgid "The update command takes no arguments"
-msgstr "update 指令不需任何參數"
+#: apt-pkg/pkgcachegen.cc:221
+#, c-format
+msgid "Error occurred while processing %s (NewVersion2)"
+msgstr "處理『%s』時發生錯誤 (NewVersion2)。"
-#: cmdline/apt-get.cc:1343
-msgid "Unable to lock the list directory"
-msgstr "無法鎖定列表目錄"
+#: apt-pkg/pkgcachegen.cc:245
+#, fuzzy, c-format
+msgid "Error occurred while processing %s (NewFileDesc2)"
+msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
-#: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
-msgid ""
-"Some index files failed to download, they have been ignored, or old ones "
-"used instead."
-msgstr "有一些索引檔案不能下載,它們可能被忽略了,也可能轉而使用了舊的索引檔案。"
+#: apt-pkg/pkgcachegen.cc:251
+msgid "Wow, you exceeded the number of package names this APT is capable of."
+msgstr "套件數量超過本程式的能力。"
-#: cmdline/apt-get.cc:1433
-msgid "We are not supposed to delete stuff, can't start AutoRemover"
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:254
+msgid "Wow, you exceeded the number of versions this APT is capable of."
+msgstr "套件版本數量超過本程式的能力。"
-#: cmdline/apt-get.cc:1465
+#: apt-pkg/pkgcachegen.cc:257
#, fuzzy
-msgid ""
-"The following packages were automatically installed and are no longer "
-"required:"
-msgstr "下列的【新】套件都將被安裝:"
+msgid "Wow, you exceeded the number of descriptions this APT is capable of."
+msgstr "套件版本數量超過本程式的能力。"
-#: cmdline/apt-get.cc:1467
-msgid "Use 'apt-get autoremove' to remove them."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:260
+msgid "Wow, you exceeded the number of dependencies this APT is capable of."
+msgstr "依存關係數量超過本程式的能力。"
-#: cmdline/apt-get.cc:1472
-msgid ""
-"Hmm, seems like the AutoRemover destroyed something which really\n"
-"shouldn't happen. Please file a bug report against apt."
-msgstr ""
+#: apt-pkg/pkgcachegen.cc:288
+#, c-format
+msgid "Error occurred while processing %s (FindPkg)"
+msgstr "處理『%s』時發生錯誤 (FindPkg)。"
-#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1755
-msgid "The following information may help to resolve the situation:"
-msgstr "底下的資訊有助於解決現在的情況:"
+#: apt-pkg/pkgcachegen.cc:301
+#, c-format
+msgid "Error occurred while processing %s (CollectFileProvides)"
+msgstr "處理『%s』時發生錯誤 (CollectFileProvides)。"
-#: cmdline/apt-get.cc:1479
-#, fuzzy
-msgid "Internal Error, AutoRemover broke stuff"
-msgstr "內部錯誤,problem resolver 處理失敗"
+#: apt-pkg/pkgcachegen.cc:307
+#, c-format
+msgid "Package %s %s was not found while processing file dependencies"
+msgstr "當計算相依性時找不到套件 %s %s "
-#: cmdline/apt-get.cc:1498
-msgid "Internal error, AllUpgrade broke stuff"
-msgstr "內部錯誤,AllUpgrade 造成錯誤"
+#: apt-pkg/pkgcachegen.cc:678
+#, c-format
+msgid "Couldn't stat source package list %s"
+msgstr "無法讀取來源檔『%s』的目錄資料。"
-#: cmdline/apt-get.cc:1545
-#, fuzzy, c-format
-msgid "Couldn't find task %s"
-msgstr "無法找到 %s 套件。"
+#: apt-pkg/pkgcachegen.cc:763
+msgid "Collecting File Provides"
+msgstr "收集檔案供應"
-#: cmdline/apt-get.cc:1660 cmdline/apt-get.cc:1696
-#, c-format
-msgid "Couldn't find package %s"
-msgstr "無法找到 %s 套件。"
+#: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
+msgid "IO Error saving source cache"
+msgstr "無法寫入來源暫存檔。"
-#: cmdline/apt-get.cc:1683
+#: apt-pkg/acquire-item.cc:127
#, c-format
-msgid "Note, selecting %s for regex '%s'\n"
-msgstr "注æ\84\8f,æ ¹æ\93\9aæ£è¦\8f表示æ³\95â\80\9c%2$sâ\80\9dé\81¸æ\93\87äº\86 %1$s\n"
+msgid "rename failed, %s (%s -> %s)."
+msgstr "æª\94å\90\8då\9b ã\80\8e%sã\80\8fæ\9b´æ\8f\9b失æ\95\97 (%s â\86\92 %s)ã\80\82"
-#: cmdline/apt-get.cc:1714
-#, fuzzy, c-format
-msgid "%s set to manual installed.\n"
-msgstr "但是『%s』卻將被安裝。"
+#: apt-pkg/acquire-item.cc:401
+msgid "MD5Sum mismatch"
+msgstr "MD5 檢查碼不符合。"
-#: cmdline/apt-get.cc:1727
-msgid "You might want to run `apt-get -f install' to correct these:"
-msgstr "用『apt-get -f install』指令或許能修正這些問題。"
+#: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1408
+#, fuzzy
+msgid "Hash Sum mismatch"
+msgstr "MD5 檢查碼不符合。"
+
+#: apt-pkg/acquire-item.cc:1100
+msgid "There is no public key available for the following key IDs:\n"
+msgstr "以下 key ID 沒有可用的公鑰:\n"
-#: cmdline/apt-get.cc:1730
+#: apt-pkg/acquire-item.cc:1213
+#, c-format
msgid ""
-"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
-"solution)."
-msgstr ""
-"無法滿足的相依關係。請嘗試不指定套件明成來執行“apt-get -f install”(或指>\n"
-"定一個解決辦法)。"
+"I wasn't able to locate a file for the %s package. This might mean you need "
+"to manually fix this package. (due to missing arch)"
+msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
-#: cmdline/apt-get.cc:1742
+#: apt-pkg/acquire-item.cc:1272
+#, c-format
msgid ""
-"Some packages could not be installed. This may mean that you have\n"
-"requested an impossible situation or if you are using the unstable\n"
-"distribution that some required packages have not yet been created\n"
-"or been moved out of Incoming."
-msgstr ""
-"有一些套件無法被安裝。這也許是系統無法實現您要求的狀態\n"
-"或是您使用不穩定(unstable)發行版而這些需要的套件尚未完成\n"
-"或從 Incoming 目錄移除。"
+"I wasn't able to locate file for the %s package. This might mean you need to "
+"manually fix this package."
+msgstr "找不到套件『%s』需要的某檔案。請您修理這個套件再試試。"
-#: cmdline/apt-get.cc:1750
+#: apt-pkg/acquire-item.cc:1313
+#, c-format
msgid ""
-"Since you only requested a single operation it is extremely likely that\n"
-"the package is simply not installable and a bug report against\n"
-"that package should be filed."
-msgstr ""
-"您僅要求對單一套件進行操作,這極有可能是因為\n"
-"該套件無法安裝,您最好提交一個針對這個套件\n"
-"的臭蟲報告。"
+"The package index files are corrupted. No Filename: field for package %s."
+msgstr "套件『%s』索引檔損壞—缺少『Filename:』欄。"
-#: cmdline/apt-get.cc:1758
-msgid "Broken packages"
-msgstr "æ\90\8dæ¯\80ç\9a\84å¥\97ä»¶"
+#: apt-pkg/acquire-item.cc:1400
+msgid "Size mismatch"
+msgstr "æª\94æ¡\88大å°\8fä¸\8d符å\90\88ã\80\82"
-#: cmdline/apt-get.cc:1787
-msgid "The following extra packages will be installed:"
-msgstr "下列的【新】套件都將被安裝:"
+#: apt-pkg/vendorlist.cc:66
+#, c-format
+msgid "Vendor block %s contains no fingerprint"
+msgstr "廠商區段%s有錯誤。"
-#: cmdline/apt-get.cc:1876
-msgid "Suggested packages:"
-msgstr "建議(Suggested)的套件:"
+#: apt-pkg/cdrom.cc:529
+#, c-format
+msgid ""
+"Using CD-ROM mount point %s\n"
+"Mounting CD-ROM\n"
+msgstr ""
+"使用光碟機掛載點 %s\n"
+"掛載光碟機中\n"
-#: cmdline/apt-get.cc:1877
-msgid "Recommended packages:"
-msgstr "æ\8e¨è\96¦(Recommended)ç\9a\84å¥\97ä»¶:"
+#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627
+msgid "Identifying.. "
+msgstr "æ¨\99è\98ä¸.."
-#: cmdline/apt-get.cc:1905
-msgid "Calculating upgrade... "
-msgstr "籌畫升級套件中..."
+#: apt-pkg/cdrom.cc:563
+#, c-format
+msgid "Stored label: %s\n"
+msgstr "保存標誌:%s \n"
-#: cmdline/apt-get.cc:1913
-msgid "Done"
-msgstr "完成"
+#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841
+#, fuzzy
+msgid "Unmounting CD-ROM...\n"
+msgstr "卸載光碟機中..."
-#: cmdline/apt-get.cc:1980 cmdline/apt-get.cc:1988
-msgid "Internal error, problem resolver broke stuff"
-msgstr "內部錯誤,problem resolver 處理失敗"
+#: apt-pkg/cdrom.cc:590
+#, c-format
+msgid "Using CD-ROM mount point %s\n"
+msgstr "使用光碟機掛載點 %s\n"
-#: cmdline/apt-get.cc:2088
-msgid "Must specify at least one package to fetch source for"
-msgstr "å¿\85é \88æ\8c\87å®\9aè\87³å°\91ä¸\80å\80\8bå°\8dæ\87\89ç\9a\84å¥\97ä»¶æ\89\8dè\83½ä¸\8bè¼\89æº\90碼"
+#: apt-pkg/cdrom.cc:608
+msgid "Unmounting CD-ROM\n"
+msgstr "å\8d¸è¼\89å\85\89ç¢\9fæ©\9fä¸\n"
-#: cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2352
-#, c-format
-msgid "Unable to find a source package for %s"
-msgstr "無法找到 %s 套件的源碼"
+#: apt-pkg/cdrom.cc:612
+msgid "Waiting for disc...\n"
+msgstr "等待磁碟中...\n"
-#: cmdline/apt-get.cc:2167
-#, c-format
-msgid "Skipping already downloaded file '%s'\n"
-msgstr "略過已被下載的檔案“%s”\n"
+#. Mount the new CDROM
+#: apt-pkg/cdrom.cc:620
+msgid "Mounting CD-ROM...\n"
+msgstr "掛載光碟機中... \n"
-#: cmdline/apt-get.cc:2191
-#, c-format
-msgid "You don't have enough free space in %s"
-msgstr "『%s』內沒有足夠的空間。"
+#: apt-pkg/cdrom.cc:638
+msgid "Scanning disc for index files..\n"
+msgstr "掃描碟片中的索引檔案..\n"
-#: cmdline/apt-get.cc:2196
-#, c-format
-msgid "Need to get %sB/%sB of source archives.\n"
-msgstr "需要下載 %2$sB 中 %1$sB 的原始檔案。\n"
+#: apt-pkg/cdrom.cc:678
+#, fuzzy, c-format
+msgid ""
+"Found %u package indexes, %u source indexes, %u translation indexes and %u "
+"signatures\n"
+msgstr "找到 %i 個套件索引,%i 源碼索引和 %i 簽名\n"
-#: cmdline/apt-get.cc:2199
-#, c-format
-msgid "Need to get %sB of source archives.\n"
-msgstr "需要下載 %sB 的原始檔案。\n"
+#: apt-pkg/cdrom.cc:715
+#, fuzzy, c-format
+msgid "Found label '%s'\n"
+msgstr "保存標誌:%s \n"
+
+#: apt-pkg/cdrom.cc:744
+msgid "That is not a valid name, try again.\n"
+msgstr "這不是合法名稱,重試一下。\n"
-#: cmdline/apt-get.cc:2205
+#: apt-pkg/cdrom.cc:760
#, c-format
-msgid "Fetch source %s\n"
-msgstr "下載源碼 %s\n"
+msgid ""
+"This disc is called: \n"
+"'%s'\n"
+msgstr ""
+"這個碟片名為:\n"
+"'%s'\n"
-#: cmdline/apt-get.cc:2236
-msgid "Failed to fetch some archives."
-msgstr "無法下載某些檔案。"
+#: apt-pkg/cdrom.cc:764
+msgid "Copying package lists..."
+msgstr "複製套件清單中"
+
+#: apt-pkg/cdrom.cc:790
+msgid "Writing new source list\n"
+msgstr "寫入新的來源列表中\n"
-#: cmdline/apt-get.cc:2264
-#, c-format
-msgid "Skipping unpack of already unpacked source in %s\n"
-msgstr "略過已經被解開到 %s 目錄的源碼檔案\n"
+#: apt-pkg/cdrom.cc:799
+msgid "Source list entries for this disc are:\n"
+msgstr "該碟片的來源列表項目為:\n"
-#: cmdline/apt-get.cc:2276
+#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:823
#, c-format
-msgid "Unpack command '%s' failed.\n"
-msgstr "å\9f·è¡\8cè§£é\96\8bå¥\97ä»¶æ\8c\87令 '%s' æ\99\82失æ\95\97。\n"
+msgid "Wrote %i records.\n"
+msgstr "寫å\85¥ %i ç\86ç´\80é\8c\84。\n"
-#: cmdline/apt-get.cc:2277
+#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:825
#, c-format
-msgid "Check if the 'dpkg-dev' package is installed.\n"
-msgstr "請檢查是否安裝了“dpkg-dev”套件。\n"
+msgid "Wrote %i records with %i missing files.\n"
+msgstr "寫入 %i 筆遺失 %i 個檔案的紀錄。\n"
-#: cmdline/apt-get.cc:2294
+#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:828
#, c-format
-msgid "Build command '%s' failed.\n"
-msgstr "å\9f·è¡\8c建ç«\8bå¥\97ä»¶æ\8c\87令 '%s' æ\99\82失æ\95\97。\n"
+msgid "Wrote %i records with %i mismatched files\n"
+msgstr "寫å\85¥ %i ç\86 %i å\80\8bä¸\8då\8c¹é\85\8dæª\94æ¡\88ç\9a\84ç´\80é\8c\84。\n"
-#: cmdline/apt-get.cc:2313
-msgid "Child process failed"
-msgstr "子程序失敗"
+#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:831
+#, c-format
+msgid "Wrote %i records with %i missing files and %i mismatched files\n"
+msgstr "寫入 %i 筆遺失 %i 個檔案和 %i 個不匹配檔案的紀錄。\n"
-#: cmdline/apt-get.cc:2329
-msgid "Must specify at least one package to check builddeps for"
-msgstr "必須指定至少一個套件才能檢查其建立相依關係(builddeps)"
+#: apt-pkg/deb/dpkgpm.cc:513
+#, fuzzy, c-format
+msgid "Directory '%s' missing"
+msgstr "找不到『%spartial』清單目錄。"
-#: cmdline/apt-get.cc:2357
+#: apt-pkg/deb/dpkgpm.cc:596
#, c-format
-msgid "Unable to get build-dependency information for %s"
-msgstr "無法取得 %s 的建構相依關係。"
+msgid "Preparing %s"
+msgstr "準備配置%s中"
-#: cmdline/apt-get.cc:2377
+#: apt-pkg/deb/dpkgpm.cc:597
#, c-format
-msgid "%s has no build depends.\n"
-msgstr "%s 無建立相依關係訊息。\n"
+msgid "Unpacking %s"
+msgstr "解開%s中"
-#: cmdline/apt-get.cc:2429
+#: apt-pkg/deb/dpkgpm.cc:602
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because the package %s cannot be "
-"found"
-msgstr "由於無法找到套件 %3$s ,因此不能滿足 %2$s 所要求的 %1$s 相依關係"
+msgid "Preparing to configure %s"
+msgstr "準備設定%s檔"
-#: cmdline/apt-get.cc:2482
+#: apt-pkg/deb/dpkgpm.cc:603
#, c-format
-msgid ""
-"%s dependency for %s cannot be satisfied because no available versions of "
-"package %s can satisfy version requirements"
-msgstr ""
-"由於無法找到符合要求的套件 %3$s 的可用版本,因此不能滿足 %2$s 所要求的 %1$s 的"
-"相依關係"
+msgid "Configuring %s"
+msgstr "設定%s中"
-#: cmdline/apt-get.cc:2518
-#, c-format
-msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
-msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:已安裝的套件 %3$s 太新了"
+#: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
+#, fuzzy, c-format
+msgid "Processing triggers for %s"
+msgstr "處理目錄 %s 時錯誤"
-#: cmdline/apt-get.cc:2543
+#: apt-pkg/deb/dpkgpm.cc:608
#, c-format
-msgid "Failed to satisfy %s dependency for %s: %s"
-msgstr "無法滿足 %2$s 所要求 %1$s 相依關係:%3$s"
+msgid "Installed %s"
+msgstr "已安裝%s"
-#: cmdline/apt-get.cc:2557
+#: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
+#: apt-pkg/deb/dpkgpm.cc:616
#, c-format
-msgid "Build-dependencies for %s could not be satisfied."
-msgstr "無法滿足套件 %s 所要求的建構相依關係。"
-
-#: cmdline/apt-get.cc:2561
-msgid "Failed to process build dependencies"
-msgstr "無法處理建構相依關係"
-
-#: cmdline/apt-get.cc:2593
-msgid "Supported modules:"
-msgstr "支援模組:"
-
-#: cmdline/apt-get.cc:2634
-#, fuzzy
-msgid ""
-"Usage: apt-get [options] command\n"
-" apt-get [options] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [options] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get is a simple command line interface for downloading and\n"
-"installing packages. The most frequently used commands are update\n"
-"and install.\n"
-"\n"
-"Commands:\n"
-" update - Retrieve new lists of packages\n"
-" upgrade - Perform an upgrade\n"
-" install - Install new packages (pkg is libc6 not libc6.deb)\n"
-" remove - Remove packages\n"
-" autoremove - Remove all automatic unused packages\n"
-" purge - Remove and purge packages\n"
-" source - Download source archives\n"
-" build-dep - Configure build-dependencies for source packages\n"
-" dist-upgrade - Distribution upgrade, see apt-get(8)\n"
-" dselect-upgrade - Follow dselect selections\n"
-" clean - Erase downloaded archive files\n"
-" autoclean - Erase old downloaded archive files\n"
-" check - Verify that there are no broken dependencies\n"
-"\n"
-"Options:\n"
-" -h This help text.\n"
-" -q Loggable output - no progress indicator\n"
-" -qq No output except for errors\n"
-" -d Download only - do NOT install or unpack archives\n"
-" -s No-act. Perform ordering simulation\n"
-" -y Assume Yes to all queries and do not prompt\n"
-" -f Attempt to continue if the integrity check fails\n"
-" -m Attempt to continue if archives are unlocatable\n"
-" -u Show a list of upgraded packages as well\n"
-" -b Build the source package after fetching it\n"
-" -V Show verbose version numbers\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
-"pages for more information and options.\n"
-" This APT has Super Cow Powers.\n"
-msgstr ""
-"用法: apt-get [選項] 命令\n"
-" apt-get [選項] install|remove pkg1 [pkg2 ...]\n"
-" apt-get [選項] source pkg1 [pkg2 ...]\n"
-"\n"
-"apt-get 提供了一個用於下載和安裝套件的簡易命令界面。\n"
-"最常用命令是 update 和 install。\n"
-"\n"
-"命令:\n"
-" update - 下載更新套件列表訊息\n"
-" upgrade - 進行一次升級\n"
-" install - 安裝新的套件(注:套件名稱是 libc6 而非 libc6.deb)\n"
-" remove - 移除套件\n"
-" source - 下載源碼檔案\n"
-" build-dep - 為源碼配置所需的建構相依關係\n"
-" dist-upgrade - 發布版本升級,見 apt-get(8) dselect-upgrade - 根據 "
-"dselect \n"
-"的選擇來進行升級\n"
-" clean - 刪除所有已下載的套件檔案\n"
-" auto-clean - 刪除已下載的套件檔案較舊的版本\n"
-" check - 核對以確認系統的相依關係的完整性\n"
-"\n"
-"選項:\n"
-" -h 本幫助訊息。\n"
-" -q 讓輸出作為記錄檔 - 不顯示進度\n"
-" -qq 除了錯誤外,什麼都不輸出\n"
-" -d 僅下載 - 『不』安裝或解開套件檔案\n"
-" -s 不作實際操作。只是模擬執行命令\n"
-" -y 對所有詢問都作肯定的回答,同時不作任何提示\n"
-" -f 當沒有通過完整性測試時,仍嘗試繼續執行\n"
-" -m 當有套件檔案無法找到時,仍嘗試繼續執行\n"
-" -u 顯示已升級的套件列表\n"
-" -b 在下載完源碼後,編譯生成相應的套件\n"
-" -V 顯示詳盡的版本號\n"
-" -c=? 讀取指定的設定檔案\n"
-" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
-"請查閱 apt-get(8)、sources.list(5) 和 apt.conf(5)的參考手冊\n"
-"以取得更多訊息和選項。\n"
-" 本 APT 有著超級牛力。\n"
-
-#: cmdline/acqprogress.cc:55
-msgid "Hit "
-msgstr "已有 "
-
-#: cmdline/acqprogress.cc:79
-msgid "Get:"
-msgstr "下載:"
-
-#: cmdline/acqprogress.cc:110
-msgid "Ign "
-msgstr "略過 "
-
-#: cmdline/acqprogress.cc:114
-msgid "Err "
-msgstr "錯誤 "
+msgid "Preparing for removal of %s"
+msgstr "正在準備 %s 的刪除操作"
-#: cmdline/acqprogress.cc:135
+#: apt-pkg/deb/dpkgpm.cc:618
#, c-format
-msgid "Fetched %sB in %s (%sB/s)\n"
-msgstr "讀取 %sB 用了 %s (%sB/s)\n"
+msgid "Removing %s"
+msgstr "移除%s中"
-#: cmdline/acqprogress.cc:225
+#: apt-pkg/deb/dpkgpm.cc:619
#, c-format
-msgid " [Working]"
-msgstr " [工作中]"
+msgid "Removed %s"
+msgstr "已移除%s"
-#: cmdline/acqprogress.cc:271
+#: apt-pkg/deb/dpkgpm.cc:624
#, 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"
+msgid "Preparing to completely remove %s"
+msgstr "準備完整移除 %s"
-#: cmdline/apt-sortpkgs.cc:86
-msgid "Unknown package record!"
-msgstr "未知的套件記錄!"
+#: apt-pkg/deb/dpkgpm.cc:625
+#, c-format
+msgid "Completely removed %s"
+msgstr "已完整移除%s"
-#: cmdline/apt-sortpkgs.cc:150
-msgid ""
-"Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
-"to indicate what kind of file it is.\n"
-"\n"
-"Options:\n"
-" -h This help text\n"
-" -s Use source file sorting\n"
-" -c=? Read this configuration file\n"
-" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+#: apt-pkg/deb/dpkgpm.cc:775
+msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
msgstr ""
-"用法: apt-sortpkgs [選項] file1 [file2 ...]\n"
-"\n"
-"apt-sortpkgs 是對套件索引檔案內容進行排序的簡單工具。-s 選項\n"
-"是用來指出該檔的檔案類型。\n"
-"\n"
-"選項:\n"
-" -h 本幫助訊息。\n"
-" -s 根據源碼檔案排序\n"
-" -c=? 讀取指定的設定檔案\n"
-" -o=? 設定任意指定的設定選項,例如:-o dir::cache=/tmp\n"
-#: dselect/install:32
-msgid "Bad default setting!"
-msgstr "錯誤的預設設定!"
+#: methods/rred.cc:219
+msgid "Could not patch file"
+msgstr "無法開啟『%s』檔案。"
-#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
-#: dselect/install:104 dselect/update:45
-msgid "Press enter to continue."
-msgstr "請按 [Enter] 鍵繼續。"
+#: methods/rsh.cc:330
+msgid "Connection closed prematurely"
+msgstr "連線不預期的結束"
-#: dselect/install:100
-msgid "Some errors occurred while unpacking. I'm going to configure the"
-msgstr "解開套件時發生錯誤。我要準備設定"
+#, fuzzy
+#~ msgid "Line %d too long (max %d)"
+#~ msgstr "第 %d 行太長(最長 %d)"
-#: dselect/install:101
-msgid "packages that were installed. This may result in duplicate errors"
-msgstr "套件已安裝過。這將造成重複性的錯誤"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc1)"
+#~ msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
-#: dselect/install:102
-msgid "or errors caused by missing dependencies. This is OK, only the errors"
-msgstr "或因為失去相依關係所造成的錯誤。只有該錯誤可被容忍"
+#, fuzzy
+#~ msgid "Error occured while processing %s (NewFileDesc2)"
+#~ msgstr "處理『%s』時發生錯誤 (NewFileVer1)。"
-#: dselect/install:103
-msgid ""
-"above this message are important. Please fix them and run [I]nstall again"
-msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]"
+#, fuzzy
+#~ msgid "Stored label: %s \n"
+#~ msgstr "保存標誌:%s \n"
-#: dselect/update:30
-msgid "Merging available information"
-msgstr "結合現有資料中"
+#, fuzzy
+#~ msgid ""
+#~ "Found %i package indexes, %i source indexes, %i translation indexes and %"
+#~ "i signatures\n"
+#~ msgstr "找到 %i 個套件索引,%i 源碼索引和 %i 簽名\n"
#, fuzzy
#~ msgid "openpty failed\n"