From: Michael Vogt Date: Tue, 2 Apr 2013 13:20:16 +0000 (+0200) Subject: merged lp:~mvo/apt/fix-inrelease5 X-Git-Tag: 0.9.8~20 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/c1b21367668fb435cfb8a2a18c3292e006c2e795?hp=-c merged lp:~mvo/apt/fix-inrelease5 --- c1b21367668fb435cfb8a2a18c3292e006c2e795 diff --combined apt-pkg/acquire-item.cc index a71886a87,39b842dfb..9b7862111 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@@ -1503,20 -1503,17 +1503,17 @@@ void pkgAcqMetaIndex::Failed(string Mes if (AuthPass == true) { // gpgv method failed, if we have a good signature - string LastGoodSigFile = _config->FindDir("Dir::State::lists"); - if (DestFile == SigFile) - LastGoodSigFile.append(URItoFileName(RealURI)); - else - LastGoodSigFile.append("partial/").append(URItoFileName(RealURI)).append(".gpg.reverify"); + string LastGoodSigFile = _config->FindDir("Dir::State::lists").append("partial/").append(URItoFileName(RealURI)); + if (DestFile != SigFile) + LastGoodSigFile.append(".gpg"); + LastGoodSigFile.append(".reverify"); if(FileExists(LastGoodSigFile)) { + string VerifiedSigFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); if (DestFile != SigFile) - { - string VerifiedSigFile = _config->FindDir("Dir::State::lists") + - URItoFileName(RealURI) + ".gpg"; - Rename(LastGoodSigFile,VerifiedSigFile); - } + VerifiedSigFile.append(".gpg"); + Rename(LastGoodSigFile, VerifiedSigFile); Status = StatTransientNetworkError; _error->Warning(_("A error occurred during the signature " "verification. The repository is not updated " @@@ -1577,6 -1574,15 +1574,15 @@@ pkgAcqMetaClearSig::pkgAcqMetaClearSig( MetaSigURI(MetaSigURI), MetaSigURIDesc(MetaSigURIDesc), MetaSigShortDesc(MetaSigShortDesc) { SigFile = DestFile; + + // keep the old InRelease around in case of transistent network errors + string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); + struct stat Buf; + if (stat(Final.c_str(),&Buf) == 0) + { + string const LastGoodSig = DestFile + ".reverify"; + Rename(Final,LastGoodSig); + } } /*}}}*/ // pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/ @@@ -1730,7 -1736,7 +1736,7 @@@ bool pkgAcqArchive::QueueNext( { if(stringcasecmp(ForceHash, "sha512") == 0) ExpectedHash = HashString("SHA512", Parse.SHA512Hash()); - if(stringcasecmp(ForceHash, "sha256") == 0) + else if(stringcasecmp(ForceHash, "sha256") == 0) ExpectedHash = HashString("SHA256", Parse.SHA256Hash()); else if (stringcasecmp(ForceHash, "sha1") == 0) ExpectedHash = HashString("SHA1", Parse.SHA1Hash()); diff --combined apt-pkg/deb/deblistparser.cc index 56d5297fc,2c014a734..d84a6a26d --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@@ -28,13 -28,12 +28,13 @@@ using std::string; -static debListParser::WordList PrioList[] = {{"important",pkgCache::State::Important}, - {"required",pkgCache::State::Required}, - {"standard",pkgCache::State::Standard}, - {"optional",pkgCache::State::Optional}, - {"extra",pkgCache::State::Extra}, - {}}; +static debListParser::WordList PrioList[] = { + {"required",pkgCache::State::Required}, + {"important",pkgCache::State::Important}, + {"standard",pkgCache::State::Standard}, + {"optional",pkgCache::State::Optional}, + {"extra",pkgCache::State::Extra}, + {}}; // ListParser::debListParser - Constructor /*{{{*/ // --------------------------------------------------------------------- @@@ -801,13 -800,12 +801,12 @@@ bool debListParser::LoadReleaseInfo(pkg map_ptrloc const storage = WriteUniqString(component); FileI->Component = storage; - // FIXME: Code depends on the fact that Release files aren't compressed + // FIXME: should use FileFd and TagSection FILE* release = fdopen(dup(File.Fd()), "r"); if (release == NULL) return false; char buffer[101]; - bool gpgClose = false; while (fgets(buffer, sizeof(buffer), release) != NULL) { size_t len = 0; @@@ -819,15 -817,6 +818,6 @@@ if (buffer[len] == '\0') continue; - // only evalute the first GPG section - if (strncmp("-----", buffer, 5) == 0) - { - if (gpgClose == true) - break; - gpgClose = true; - continue; - } - // seperate the tag from the data const char* dataStart = strchr(buffer + len, ':'); if (dataStart == NULL) diff --combined apt-pkg/indexrecords.cc index 649b6059d,1461a24bb..e37a78cfb --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@@ -12,6 -12,7 +12,7 @@@ #include #include #include + #include #include #include @@@ -57,7 -58,10 +58,10 @@@ bool indexRecords::Exists(string const bool indexRecords::Load(const string Filename) /*{{{*/ { - FileFd Fd(Filename, FileFd::ReadOnly); + FileFd Fd; + if (OpenMaybeClearSignedFile(Filename, Fd) == false) + return false; + pkgTagFile TagFile(&Fd, Fd.Size() + 256); // XXX if (_error->PendingError() == true) { @@@ -173,7 -177,7 +177,7 @@@ bool indexRecords::parseSumData(const c Hash = ""; Size = 0; /* Skip over the first blank */ - while ((*Start == '\t' || *Start == ' ' || *Start == '\n') + while ((*Start == '\t' || *Start == ' ' || *Start == '\n' || *Start == '\r') && Start < End) Start++; if (Start >= End) @@@ -215,8 -219,7 +219,8 @@@ EntryEnd = Start; /* Find the end of the third entry (the filename) */ - while ((*EntryEnd != '\t' && *EntryEnd != ' ' && *EntryEnd != '\n') + while ((*EntryEnd != '\t' && *EntryEnd != ' ' && + *EntryEnd != '\n' && *EntryEnd != '\r') && EntryEnd < End) EntryEnd++; diff --combined configure.in index b2414e649,84b6d1b24..f3a365ded --- a/configure.in +++ b/configure.in @@@ -18,7 -18,7 +18,7 @@@ AC_CONFIG_AUX_DIR(buildlib AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" - PACKAGE_VERSION="0.9.7.9~exp1" -PACKAGE_VERSION="0.9.7.8" ++PACKAGE_VERSION="0.9.7.9~exp2~20130402" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --combined debian/changelog index 21e76c818,7c02b2689..239fb308c --- a/debian/changelog +++ b/debian/changelog @@@ -1,55 -1,32 +1,79 @@@ -apt (0.9.7.9) UNRELEASED; urgency=low +apt (0.9.7.9~exp2) UNRELEASED; urgency=low + + [ Programs translations ] + * Update all PO files and apt-all.pot + * French translation completed (Christian Perrier) + + [ Daniel Hartwig ] + * cmdline/apt-get.cc: + - do not have space between "-a" and option when cross building + (closes: #703792) + * test/integration/test-apt-get-download: + - fix test now that #1098752 is fixed + * po/{ca,cs,ru}.po: + - fix merge artifact - + + [ David Kalnischkies ] + * apt-pkg/indexcopy.cc: + - rename RunGPGV to ExecGPGV and move it to apt-pkg/contrib/gpgv.cc + * apt-pkg/contrib/gpgv.cc: + - ExecGPGV is a method which should never return, so mark it as such + and fix the inconsistency of returning in error cases + - don't close stdout/stderr if it is also the statusfd + - if ExecGPGV deals with a clear-signed file it will split this file + into data and signatures, pass it to gpgv for verification + - add method to open (maybe) clearsigned files transparently + * apt-pkg/acquire-item.cc: + - keep the last good InRelease file around just as we do it with + Release.gpg in case the new one we download isn't good for us + * apt-pkg/deb/debmetaindex.cc: + - reenable InRelease by default + * ftparchive/writer.cc, + apt-pkg/deb/debindexfile.cc, + apt-pkg/deb/deblistparser.cc: + - use OpenMaybeClearSignedFile to be free from detecting and + skipping clearsigning metadata in dsc and Release files + [ Michael Vogt ] + * add regression test for CVE-2013-1051 + * implement GPGSplit() based on the idea from Ansgar Burchardt + (many thanks!) + * methods/connect.cc: + - use Errno() instead of strerror(), thanks to David Kalnischk + * doc/apt.conf.5.xml: + - document Acquire::ForceIPv{4,6} + - -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 ++ -- Michael Vogt Tue, 02 Apr 2013 15:13:50 +0200 + +apt (0.9.7.9~exp1) experimental; urgency=low + + [ Niels Thykier ] + * test/libapt/assert.h, test/libapt/run-tests: + - exit with status 1 on test failure + + [ Daniel Hartwig ] + * test/integration/framework: + - continue after test failure but preserve exit status - -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 + [ Programs translation updates ] + * Turkish (Mert Dirik). Closes: #703526 + + [ Colin Watson ] + * methods/connect.cc: + - provide useful error message in case of EAI_SYSTEM + (closes: #703603) + + [ Michael Vogt ] + * add new config options "Acquire::ForceIPv4" and + "Acquire::ForceIPv6" to allow focing one or the other + (closes: #611891) + * lp:~mvo/apt/fix-tagfile-hash: + - fix false positives in pkgTagSection.Exists(), thanks to + Niels Thykier for the testcase (closes: #703240) + - this will require rebuilds of the clients as this used to + be a inline function + + -- Michael Vogt Fri, 22 Mar 2013 21:57:08 +0100 apt (0.9.7.8) unstable; urgency=criticial @@@ -65,58 -42,6 +89,58 @@@ -- Michael Vogt Thu, 14 Mar 2013 07:47:36 +0100 +apt (0.9.7.8~exp2) experimental; urgency=low + + * include two missing patches to really fix bug #696225, thanks to + Guillem Jover + * ensure sha512 is really used when available, thanks to Tyler Hicks + (LP: #1098752) + + -- Michael Vogt Fri, 01 Mar 2013 19:06:55 +0100 + +apt (0.9.7.8~exp1) experimental; urgency=low + + [ Manpages translation updates ] + * Italian (Beatrice Torracca). Closes: #696601 + + [ Programs translation updates ] + * Japanese (Kenshi Muto). Closes: #699783 + + [ Michael Vogt ] + * fix pkgProblemResolver::Scores, thanks to Paul Wise. + Closes: #697577 + * fix missing translated apt.8 manpages, thanks to Helge Kreutzmann + for the report. Closes: #696923 + * apt-pkg/contrib/progress.cc: + - Make "..." translatable to fix inconsistencies in the output + of e.g. apt-get update. While this adds new translatable strings, + not having translations for them will not break anything. + Thanks to Guillem Jover. Closes: #696225 + * debian/apt.cron.daily: + - when reading from /dev/urandom, use less entropy and fix a rare + bug when the random number chksum is less than 1000. + Closes: #695285 + * methods/https.cc: + - reuse connection in https, thanks to Thomas Bushnell, BSG for the + patch. LP: #1087543, Closes: #695359 + - add missing curl_easy_cleanup() + * methods/http.cc: + - quote spaces in filenames to ensure as the http method is also + (potentially) used for non deb,dsc content that may contain + spaces, thanks to Daniel Hartwig and Thomas Bushnell + (LP: #1086997) + - quote plus in filenames to work around a bug in the S3 server + (LP: #1003633) + * apt-pkg/indexrecords.cc: + - support '\r' in the Release file + + [ David Kalnischkies ] + * apt-pkg/depcache.cc: + - prefer to install packages which have an already installed M-A:same + sibling while choosing providers (LP: #1130419) + + -- Michael Vogt Fri, 01 Mar 2013 14:16:42 +0100 + apt (0.9.7.7) unstable; urgency=low [ Program translation updates ] diff --combined doc/apt-verbatim.ent index 7bc82695f,f3885ef7c..240b368b0 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@@ -213,7 -213,7 +213,7 @@@ "> - - ++ diff --combined doc/po/apt-doc.pot index 99cb3dfca,99cb3dfca..fae040cd5 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@@ -6,9 -6,9 +6,9 @@@ #, fuzzy msgid "" msgstr "" --"Project-Id-Version: apt-doc 0.9.7.8\n" ++"Project-Id-Version: apt-doc 0.9.7.9~exp1\n" "Report-Msgid-Bugs-To: APT Development Team \n" --"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@@ -1105,12 -1105,12 +1105,12 @@@ msgid " msgstr "" #. type: Content of: --#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 ++#: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "See Also" msgstr "" @@@ -2982,13 -2982,13 +2982,23 @@@ msgid " "\"<literal>none</literal>\")." msgstr "" ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -3000,7 -3000,7 +3010,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -3013,7 -3013,7 +3023,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -3023,7 -3023,7 +3033,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -3031,7 -3031,7 +3041,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@@ -3043,7 -3043,7 +3053,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -3056,7 -3056,7 +3066,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -3067,12 -3067,12 +3077,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -3080,7 -3080,7 +3090,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, " @@@ -3094,40 -3094,40 +3104,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -3135,7 -3135,7 +3145,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3144,7 -3144,7 +3154,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3154,7 -3154,7 +3164,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -3165,26 -3165,26 +3175,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -3199,7 -3199,7 +3209,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -3209,7 -3209,7 +3219,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -3223,7 -3223,7 +3233,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -3236,7 -3236,7 +3246,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is " @@@ -3254,7 -3254,7 +3264,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure " "--pending</command> to let &dpkg; handle all required configurations and " @@@ -3266,7 -3266,7 +3276,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -3277,7 -3277,7 +3287,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -3289,7 -3289,7 +3299,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -3303,12 -3303,12 +3313,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -3317,12 -3317,12 +3327,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -3333,7 -3333,7 +3343,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@@ -3341,7 -3341,7 +3351,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@@ -3349,7 -3349,7 +3359,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -3359,65 -3359,65 +3369,65 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -3425,52 -3425,52 +3435,52 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@@ -3480,7 -3480,7 +3490,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@@ -3498,45 -3498,45 +3508,45 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -3544,19 -3544,19 +3554,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 apt-ftparchive.1.xml:596 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 apt-ftparchive.1.xml:596 msgid "Examples" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -3564,7 -3564,7 +3574,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" diff --combined doc/po/de.po index 373cf8eb5,373cf8eb5..e4c7420b4 --- a/doc/po/de.po +++ b/doc/po/de.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-doc 0.9.7\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-06-25 22:49+0100\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" @@@ -1543,14 -1543,14 +1543,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "Dateien" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -4269,13 -4269,13 +4269,23 @@@ msgstr " "in <filename>/var/lib/apt/lists/</filename> gefunden werden, an das Ende der " "Liste hinzugefügt (nach einem impliziten »<literal>none</literal>«)." ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "Verzeichnisse" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4295,7 -4295,7 +4305,7 @@@ msgstr " "nicht mit <filename>/</filename> oder <filename>./</filename> beginnen." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4318,7 -4318,7 +4328,7 @@@ msgstr " "Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4333,7 -4333,7 +4343,7 @@@ msgstr " "Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4345,7 -4345,7 +4355,7 @@@ msgstr " "geladen." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4363,7 -4363,7 +4373,7 @@@ msgstr " "Programms an." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4383,7 -4383,7 +4393,7 @@@ msgstr " "<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4401,12 -4401,12 +4411,12 @@@ msgstr " "diese Muster verwandt werden." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4417,7 -4417,7 +4427,7 @@@ msgstr " "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4440,7 -4440,7 +4450,7 @@@ msgstr " "vor dem Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@@ -4449,7 -4449,7 +4459,7 @@@ msgstr " "übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@@ -4458,7 -4458,7 +4468,7 @@@ msgstr " "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@@ -4467,12 -4467,12 +4477,12 @@@ msgstr " "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "Wie APT &dpkg; aufruft" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@@ -4481,7 -4481,7 +4491,7 @@@ msgstr " "stehen im Abschnitt <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4492,7 -4492,7 +4502,7 @@@ msgstr " "jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4506,7 -4506,7 +4516,7 @@@ msgstr " "APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4522,7 -4522,7 +4532,7 @@@ msgstr " "die es installieren wird, auf der Standardeingabe übergeben, einen pro Zeile." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4538,7 -4538,7 +4548,7 @@@ msgstr " "literal> gegeben wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@@ -4547,7 -4547,7 +4557,7 @@@ msgstr " "die Vorgabe ist <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@@ -4557,12 -4557,12 +4567,12 @@@ msgstr " "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "Dpkd-Trigger-Benutzung (und zugehörige Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4589,7 -4589,7 +4599,7 @@@ msgstr " "Pakete konfiguriert werden." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4603,7 -4603,7 +4613,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4628,7 -4628,7 +4638,7 @@@ msgstr " "Optionenkombination wäre <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4651,7 -4651,7 +4661,7 @@@ msgstr " "anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4681,7 -4681,7 +4691,7 @@@ msgstr " "enden könnte und möglicherweise nicht mehr startbar ist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4700,7 -4700,7 +4710,7 @@@ msgstr " "deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4716,7 -4716,7 +4726,7 @@@ msgstr " "benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4734,7 -4734,7 +4744,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4758,12 -4758,12 +4768,12 @@@ msgstr " "mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "Periodische- und Archivoptionen" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4777,12 -4777,12 +4787,12 @@@ msgstr " "Dokumentation dieser Optionen zu erhalten." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "Fehlersuchoptionen" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4800,7 -4800,7 +4810,7 @@@ msgstr " "könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4811,7 -4811,7 +4821,7 @@@ msgstr " "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4822,7 -4822,7 +4832,7 @@@ msgstr " "<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4834,7 -4834,7 +4844,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@@ -4843,12 -4843,12 +4853,12 @@@ msgstr " "Daten in CD-ROM-IDs aus." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@@ -4856,28 -4856,28 +4866,28 @@@ "literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@@ -4886,7 -4886,7 +4896,7 @@@ msgstr " "mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@@ -4895,13 -4895,13 +4905,13 @@@ msgstr " "CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@@ -4910,7 -4910,7 +4920,7 @@@ msgstr " "Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4921,7 -4921,7 +4931,7 @@@ msgstr " "ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@@ -4931,14 -4931,14 +4941,14 @@@ msgstr " "gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" "protokolliert, wenn Elemente aus der globalen Warteschlange zum " "Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@@ -4947,7 -4947,7 +4957,7 @@@ msgstr " "und kryptografischen Signaturen von heruntergeladenen Dateien beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@@ -4956,7 -4956,7 +4966,7 @@@ msgstr " "Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@@ -4966,7 -4966,7 +4976,7 @@@ msgstr " "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@@ -4974,7 -4974,7 +4984,7 @@@ "durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@@ -4984,7 -4984,7 +4994,7 @@@ msgstr " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -5000,7 -5000,7 +5010,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -5033,7 -5033,7 +5043,7 @@@ msgstr " "erscheint." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@@ -5043,7 -5043,7 +5053,7 @@@ msgstr " "sind, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@@ -5052,7 -5052,7 +5062,7 @@@ msgstr " "und alle während deren Auswertung gefundenen Fehler aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@@ -5062,7 -5062,7 +5072,7 @@@ msgstr " "soll." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@@ -5070,12 -5070,12 +5080,12 @@@ "von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "gibt die Priorität jeder Paketliste beim Start aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@@ -5085,7 -5085,7 +5095,7 @@@ msgstr " "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -5097,7 -5097,7 +5107,7 @@@ msgstr " "Marker</literal> beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@@ -5106,13 -5106,13 +5116,13 @@@ msgstr " "filename> gelesenen Anbieter aus." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -5122,7 -5122,7 +5132,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/es.po index 374af43e9,374af43e9..ade98d9cb --- a/doc/po/es.po +++ b/doc/po/es.po @@@ -38,7 -38,7 +38,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-07-14 12:21+0200\n" "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" @@@ -1619,14 -1619,14 +1619,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "Ficheros" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -4307,13 -4307,13 +4307,23 @@@ msgstr " "se añaden al final de la lista (después de un «<literal>none</literal>» " "implícito)." ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "Directorios" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4334,7 -4334,7 +4344,7 @@@ msgstr " "filename> ó <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4356,7 -4356,7 +4366,7 @@@ msgstr " "directorio predeterminado está en <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4372,7 -4372,7 +4382,7 @@@ msgstr " "<envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4383,7 -4383,7 +4393,7 @@@ msgstr " "Al finalizar este proceso carga el fichero de configuración principal." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4400,7 -4400,7 +4410,7 @@@ msgstr " "literal> especifican la ubicación de sus respectivos programas." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4421,7 -4421,7 +4431,7 @@@ msgstr " "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4439,12 -4439,12 +4449,12 @@@ msgstr " "de expresiones regulares." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "APT con DSelect" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4455,7 -4455,7 +4465,7 @@@ msgstr " "encuentran en la sección <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4477,7 -4477,7 +4487,7 @@@ msgstr " "realiza esta acción antes de descargar paquetes nuevos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@@ -4486,7 -4486,7 +4496,7 @@@ msgstr " "la línea de ordenes al ejecutar la fase de instalación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@@ -4495,7 -4495,7 +4505,7 @@@ msgstr " "la línea de ordenes al ejecutar la fase de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@@ -4505,12 -4505,12 +4515,12 @@@ msgstr " "preguntará en caso de error." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "Invocación de APT a dpkg" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@@ -4519,7 -4519,7 +4529,7 @@@ msgstr " "se encuentran en la sección <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4530,7 -4530,7 +4540,7 @@@ msgstr " "introduce a &dpkg; como un sólo argumento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4543,7 -4543,7 +4553,7 @@@ msgstr " "sh</filename>; en caso de fallo, APT cancela la acción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4559,7 -4559,7 +4569,7 @@@ msgstr " "la entrada estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4575,7 -4575,7 +4585,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@@ -4584,7 -4584,7 +4594,7 @@@ msgstr " "predeterminado es <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@@ -4594,12 -4594,12 +4604,12 @@@ msgstr " "paquetes y a producir todos los binarios." #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4626,7 -4626,7 +4636,7 @@@ msgstr " "tiempo (o más) durante la configuración de todos los paquetes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4640,7 -4640,7 +4650,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4664,7 -4664,7 +4674,7 @@@ msgstr " "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4687,7 -4687,7 +4697,7 @@@ msgstr " "eliminación." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4717,7 -4717,7 +4727,7 @@@ msgstr " "imposibilidad de arrancar el sistema. " #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4735,7 -4735,7 +4745,7 @@@ msgstr " "desactivar esta opción en todas las ejecuciones menos la última." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4751,7 -4751,7 +4761,7 @@@ msgstr " "los disparadores necesarios para configurar este paquete." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4769,7 -4769,7 +4779,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4794,12 -4794,12 +4804,12 @@@ msgstr " "<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "Las opciones «Periodic» y «Archives»" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4813,12 -4813,12 +4823,12 @@@ msgstr " "documentación de estas opciones." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "Opciones de depuración" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4835,7 -4835,7 +4845,7 @@@ msgstr " "para un usuario normal, aunque unas cuantas sí son:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4846,7 -4846,7 +4856,7 @@@ msgstr " "purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4857,7 -4857,7 +4867,7 @@@ msgstr " "<literal>apt-get -s install</literal>) como un usuario normal." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4869,7 -4869,7 +4879,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@@ -4878,14 -4878,14 +4888,14 @@@ msgstr " "statfs en los identificadores de los discos ópticos." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "" "A continuación, se muestra la lista completa de las opciones de depuración " "de apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@@ -4893,26 -4893,26 +4903,26 @@@ "<literal>cdrom://</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante " "HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@@ -4921,7 -4921,7 +4931,7 @@@ msgstr " "criptográficas mediante <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@@ -4930,14 -4930,14 +4940,14 @@@ msgstr " "paquetes almacenadas en CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Describe el proceso de resolución de dependencias de compilación en &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@@ -4946,7 -4946,7 +4956,7 @@@ msgstr " "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4957,7 -4957,7 +4967,7 @@@ msgstr " "identificador de un CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@@ -4967,14 -4967,14 +4977,14 @@@ msgstr " "a la vez." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra los elementos que se añaden o se borran de la cola de descarga " "global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@@ -4984,7 -4984,7 +4994,7 @@@ msgstr " "ficheros descargados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@@ -4993,7 -4993,7 +5003,7 @@@ msgstr " "lista de índices de paquetes, y los errores relacionados con éstos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@@ -5003,7 -5003,7 +5013,7 @@@ msgstr " "índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@@ -5011,7 -5011,7 +5021,7 @@@ "descargas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@@ -5020,7 -5020,7 +5030,7 @@@ msgstr " "de los paquetes y con la eliminación de los paquetes sin usar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -5036,7 -5036,7 +5046,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -5067,7 -5067,7 +5077,7 @@@ msgstr " "la sección en la que aparece el paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@@ -5076,7 -5076,7 +5086,7 @@@ msgstr " "invocó, con los argumentos separados por un espacio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@@ -5085,7 -5085,7 +5095,7 @@@ msgstr " "estado y cualquier error encontrado durante el análisis." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@@ -5094,7 -5094,7 +5104,7 @@@ msgstr " "literal> debería entregar los paquetes a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@@ -5102,12 -5102,12 +5112,12 @@@ "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@@ -5116,7 -5116,7 +5126,7 @@@ msgstr " "lo que ocurre cuando se encuentra un problema de dependencias complejo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -5127,7 -5127,7 +5137,7 @@@ msgstr " "misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@@ -5136,13 -5136,13 +5146,13 @@@ msgstr " "vendors.list</filename>." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "Ejemplos" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -5152,7 -5152,7 +5162,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/fr.po index a1def193a,a1def193a..11e30906c --- a/doc/po/fr.po +++ b/doc/po/fr.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-07-04 21:08-0600\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@@ -1538,14 -1538,14 +1538,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "Fichiers" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -4257,13 -4257,13 +4257,23 @@@ msgstr " "<filename>/var/lib/apt/lists/</filename> seront ajoutés à la fin de la liste " "(après un « <literal>none</literal> » implicite)." ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "Les répertoires" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4283,7 -4283,7 +4293,7 @@@ msgstr " "<filename>./</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4306,7 -4306,7 +4316,7 @@@ msgstr " "Cache</literal>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4321,7 -4321,7 +4331,7 @@@ msgstr " "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4332,7 -4332,7 +4342,7 @@@ msgstr " "configuration est chargé." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4350,7 -4350,7 +4360,7 @@@ msgstr " "programmes correspondants." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4372,7 -4372,7 +4382,7 @@@ msgstr " "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4390,12 -4390,12 +4400,12 @@@ msgstr " "est possible d'utiliser la syntaxe des expressions rationnelles." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4406,7 -4406,7 +4416,7 @@@ msgstr " "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4429,7 -4429,7 +4439,7 @@@ msgstr " "avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@@ -4438,7 -4438,7 +4448,7 @@@ msgstr " "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@@ -4447,7 -4447,7 +4457,7 @@@ msgstr " "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@@ -4457,12 -4457,12 +4467,12 @@@ msgstr " "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@@ -4471,7 -4471,7 +4481,7 @@@ msgstr " "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4482,7 -4482,7 +4492,7 @@@ msgstr " "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4495,7 -4495,7 +4505,7 @@@ msgstr " "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4511,7 -4511,7 +4521,7 @@@ msgstr " "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4527,7 -4527,7 +4537,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@@ -4536,7 -4536,7 +4546,7 @@@ msgstr " "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@@ -4546,14 -4546,14 +4556,14 @@@ msgstr " "créés." #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "" "utilisation des actions différées (« triggers ») de dpkg (et options " "associées)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4580,7 -4580,7 +4590,7 @@@ msgstr " "pendant la configuration des paquets." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4594,7 -4594,7 +4604,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4618,7 -4618,7 +4628,7 @@@ msgstr " "<placeholder type=\"literallayout\" id=\"0\"/>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4641,7 -4641,7 +4651,7 @@@ msgstr " "options « unpack » et « remove »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4671,7 -4671,7 +4681,7 @@@ msgstr " "configuré et donc éventuellement non amorçable." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4690,7 -4690,7 +4700,7 @@@ msgstr " "peut conserver l'option active." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4708,7 -4708,7 +4718,7 @@@ msgstr " "celles concernant le paquet en cours de traitement." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4726,7 -4726,7 +4736,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4752,12 -4752,12 +4762,12 @@@ msgstr " "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4769,12 -4769,12 +4779,12 @@@ msgstr " "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4792,7 -4792,7 +4802,7 @@@ msgstr " "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4803,7 -4803,7 +4813,7 @@@ msgstr " "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4815,7 -4815,7 +4825,7 @@@ msgstr " "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4827,7 -4827,7 +4837,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@@ -4836,12 -4836,12 +4846,12 @@@ msgstr " "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@@ -4849,24 -4849,24 +4859,24 @@@ "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@@ -4875,7 -4875,7 +4885,7 @@@ msgstr " "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@@ -4884,14 -4884,14 +4894,14 @@@ msgstr " "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@@ -4900,7 -4900,7 +4910,7 @@@ msgstr " "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4911,7 -4911,7 +4921,7 @@@ msgstr " "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@@ -4921,14 -4921,14 +4931,14 @@@ msgstr " "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@@ -4938,7 -4938,7 +4948,7 @@@ msgstr " "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@@ -4948,7 -4948,7 +4958,7 @@@ msgstr " "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@@ -4958,7 -4958,7 +4968,7 @@@ msgstr " "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@@ -4966,7 -4966,7 +4976,7 @@@ "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@@ -4975,7 -4975,7 +4985,7 @@@ msgstr " "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -4990,7 -4990,7 +5000,7 @@@ msgstr " "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -5026,7 -5026,7 +5036,7 @@@ msgstr " "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@@ -5035,7 -5035,7 +5045,7 @@@ msgstr " "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@@ -5045,7 -5045,7 +5055,7 @@@ msgstr " "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@@ -5054,18 -5054,18 +5064,18 @@@ msgstr " "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@@ -5074,7 -5074,7 +5084,7 @@@ msgstr " "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -5085,7 -5085,7 +5095,7 @@@ msgstr " "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@@ -5094,13 -5094,13 +5104,13 @@@ msgstr " "list</filename>." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "Exemples" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -5110,7 -5110,7 +5120,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/it.po index 544263d0d,716a2ee6e..230f85b07 --- a/doc/po/it.po +++ b/doc/po/it.po @@@ -1,26 -1,23 +1,26 @@@ -# Translation of apt package man pages -# Copyright (C) 2000 Debian Italian l10n team <debian-l10n-italian@lists.debian.org> +# Translation of apt package's po4a documentation +# Copyright (C) 2000-2012 Debian Italian l10n team <debian-l10n-italian@lists.debian.org> # This file is distributed under the same license as the apt package. -# # Translators: -# Eugenia Franzoni <eugenia@linuxcare.com>, 2000 -# -#, fuzzy +# Eugenia Franzoni, 2000 +# Hugh Hartmann, 2000-2012 +# Gabriele Stilli, 2012 +# Beatrice Torracca, 2012 +# Beatrice Torracca <beatricet@libero.it>, 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" -"PO-Revision-Date: 2003-04-26 23:26+0100\n" -"Last-Translator: Traduzione di Eugenia Franzoni <eugenia@linuxcare.com>\n" -"Language-Team: <debian-l10n-italian@lists.debian.org>\n" -"Language: \n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" +"PO-Revision-Date: 2012-12-23 18:04+0200\n" +"Last-Translator: Beatrice Torracca <beatricet@libero.it>\n" +"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" #. type: Plain text #: apt.ent:7 @@@ -33,12 -30,6 +33,12 @@@ msgid " " </author>\n" "\">\n" msgstr "" +"<!ENTITY apt-author.team \"\n" +" <author>\n" +" <othername>Team APT</othername>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" #. type: Plain text #: apt.ent:13 @@@ -50,11 -41,6 +50,11 @@@ msgid " "\t</para>\n" "\">\n" msgstr "" +"<!ENTITY apt-qapage \"\n" +"\t<para>\n" +"\t\t<ulink url='http://packages.qa.debian.org/a/apt.html'>Pagina QA</ulink>\n" +"\t</para>\n" +"\">\n" #. type: Plain text #: apt.ent:24 @@@ -71,17 -57,6 +71,16 @@@ msgid " " </refsect1>\n" "\">\n" msgstr "" +"<!-- Boiler plate Bug reporting section -->\n" +"<!ENTITY manbugs \"\n" +" <refsect1><title>Bug\n" - " Pagina dei bug di " - "APT.\n" ++" Pagina dei bug di APT.\n" +" Se si desidera segnalare un bug in APT, vedere\n" +" /usr/share/doc/debian/bug-reporting.txt o il\n" +" comando &reportbug;.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:32 @@@ -95,14 -70,6 +94,13 @@@ msgid " " \n" "\">\n" msgstr "" +"\n" +"Autore\n" - " APT è stato scritto dal Team APT " - "apt@packages.debian.org.\n" ++" APT è stato scritto dal Team APT apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:42 @@@ -118,15 -85,6 +116,15 @@@ msgid " " \n" " \n" msgstr "" +"\n" +"\n" +" \n" +" Mostra un breve riassunto sull'uso.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:50 @@@ -140,13 -98,6 +138,13 @@@ msgid " " \n" " \n" msgstr "" +" \n" +" \n" +" \n" +" Mostra la versione del programma.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:62 @@@ -164,20 -115,6 +162,18 @@@ msgid " " \n" " \n" msgstr "" +" \n" +" \n" +" \n" - " File di configurazione; specifica un file di " - "configurazione da usare. \n" ++" File di configurazione; specifica un file di configurazione da usare. \n" +" Il programma legge il file di configurazione predefinito e poi questo \n" +" file di configurazione. Se è necessario modificare le impostazioni di \n" +" configurazione prima che vengano analizzati i file di configurazione \n" - " predefiniti, specificare un file con la variabile d'ambiente " - "APT_CONFIG. \n" ++" predefiniti, specificare un file con la variabile d'ambiente APT_CONFIG. \n" +" Vedere &apt-conf; per informazioni sulla sintassi.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:74 @@@ -195,19 -132,6 +191,17 @@@ msgid " " \n" "\">\n" msgstr "" +" \n" +" \n" +" \n" - " Imposta un'opzione di configurazione; imposterà una " - "qualunque\n" - " opzione di configurazione. La sintassi è .\n" ++" Imposta un'opzione di configurazione; imposterà una qualunque\n" ++" opzione di configurazione. La sintassi è .\n" +" e si possono usare più\n" +" volte per impostare opzioni diverse.\n" +" \n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:85 @@@ -224,19 -148,6 +218,16 @@@ msgid " " \n" "\">\n" msgstr "" +"\n" +"Tutte le opzioni a riga di comando si possono impostare usando il " - "file di\n" - " configurazione; le descrizioni indicano l'opzione da impostare. Per le " - "opzioni\n" ++" Tutte le opzioni a riga di comando si possono impostare usando il file di\n" ++" configurazione; le descrizioni indicano l'opzione da impostare. Per le opzioni\n" +" booleane si può scavalcare il file di configurazione usando \n" - "qualcosa come , , " - "\n" ++"qualcosa come , , \n" +" o diverse altre varianti.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:91 @@@ -248,12 -159,6 +239,11 @@@ msgid " " Configuration Item: Dir::Etc::Main.\n" " \n" msgstr "" +"/etc/apt/apt.conf\n" +" File di configurazione di APT.\n" - " Voce di configurazione: " - "Dir::Etc::Main.\n" ++" Voce di configurazione: Dir::Etc::Main.\n" +" \n" #. type: Plain text #: apt.ent:97 @@@ -265,12 -170,6 +255,11 @@@ msgid " " \n" "\">\n" msgstr "" +" /etc/apt/apt.conf.d/\n" +" Frammenti di file di configurazione di APT.\n" - " Voce di configurazione: " - "Dir::Etc::Parts.\n" ++" Voce di configurazione: Dir::Etc::Parts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:103 @@@ -282,13 -181,6 +271,11 @@@ msgid " " Configuration Item: Dir::Cache::Archives.\n" " \n" msgstr "" +"&cachedir;/archives/\n" - " Area di archiviazione per i file dei pacchetti " - "recuperati.\n" - " Voce di configurazione: " - "Dir::Cache::Archives.\n" ++" Area di archiviazione per i file dei pacchetti recuperati.\n" ++" Voce di configurazione: Dir::Cache::Archives.\n" +" \n" #. type: Plain text #: apt.ent:109 @@@ -300,15 -192,6 +287,11 @@@ msgid " " \n" "\">\n" msgstr "" - " " - "&cachedir;/archives/partial/\n" - " Area di archiviazione per i file dei pacchetti in " - "transito.\n" - " Voce di configurazione: Dir::Cache::Archives " - "(partial verrà implicitamente aggiunto in fondo al " - "nome)\n" ++" &cachedir;/archives/partial/\n" ++" Area di archiviazione per i file dei pacchetti in transito.\n" ++" Voce di configurazione: Dir::Cache::Archives (partial verrà implicitamente aggiunto in fondo al nome)\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:119 @@@ -324,16 -207,6 +307,15 @@@ msgid " " Configuration Item: Dir::Etc::Preferences.\n" " \n" msgstr "" +"/etc/apt/preferences\n" +" File di preferenze di versione.\n" +" Qui si specifica il "pinning",\n" +" ossia una preferenza a prendere determinati pacchetti\n" +" da una fonte separata\n" +" o da una diversa versione di una distribuzione.\n" - " Voce di configurazione: " - "Dir::Etc::Preferences.\n" ++" Voce di configurazione: Dir::Etc::Preferences.\n" +" \n" #. type: Plain text #: apt.ent:125 @@@ -345,12 -218,6 +327,11 @@@ msgid " " \n" "\">\n" msgstr "" +" /etc/apt/preferences.d/\n" +" Frammenti di file per le preferenze di versione.\n" - " Voce di configurazione: " - "Dir::Etc::PreferencesParts.\n" ++" Voce di configurazione: Dir::Etc::PreferencesParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:131 @@@ -362,12 -229,6 +343,11 @@@ msgid " " Configuration Item: Dir::Etc::SourceList.\n" " \n" msgstr "" +"/etc/apt/sources.list\n" +" Posizioni da cui scaricare i pacchetti.\n" - " Voce di configurazione: " - "Dir::Etc::SourceList.\n" ++" Voce di configurazione: Dir::Etc::SourceList.\n" +" \n" #. type: Plain text #: apt.ent:137 @@@ -379,14 -240,6 +359,11 @@@ msgid " " \n" "\">\n" msgstr "" - " " - "/etc/apt/sources.list.d/\n" - " Frammenti di file per le posizioni da cui scaricare i " - "pacchetti.\n" - " Voce di configurazione: " - "Dir::Etc::SourceParts.\n" ++" /etc/apt/sources.list.d/\n" ++" Frammenti di file per le posizioni da cui scaricare i pacchetti.\n" ++" Voce di configurazione: Dir::Etc::SourceParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:144 @@@ -399,14 -252,6 +376,12 @@@ msgid " " Configuration Item: Dir::State::Lists.\n" " \n" msgstr "" +"&statedir;/lists/\n" - " Area di archiviazione per le informazioni sullo stato " - "di ciascuna risorsa dei pacchetti specificata in\n" ++" Area di archiviazione per le informazioni sullo stato di ciascuna risorsa dei pacchetti specificata in\n" +" &sources-list;\n" - " Voce di configurazione: " - "Dir::State::Lists.\n" ++" Voce di configurazione: Dir::State::Lists.\n" +" \n" #. type: Plain text #: apt.ent:150 @@@ -418,15 -263,6 +393,11 @@@ msgid " " \n" "\">\n" msgstr "" - " " - "&statedir;/lists/partial/\n" - " Area di archiviazione per le informazioni di stato in " - "transito.\n" - " Voce di configurazione: Dir::State::Lists " - "(partial verrà implicitamente aggiunto in fondo al " - "nome)\n" ++" &statedir;/lists/partial/\n" ++" Area di archiviazione per le informazioni di stato in transito.\n" ++" Voce di configurazione: Dir::State::Lists (partial verrà implicitamente aggiunto in fondo al nome)\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:156 @@@ -438,13 -274,6 +409,11 @@@ msgid " " Configuration Item: Dir::Etc::Trusted.\n" " \n" msgstr "" +"/etc/apt/trusted.gpg\n" - " Portachiavi delle chiavi fidate locali; qui saranno " - "aggiunte le nuove chiavi.\n" - " Voce di configurazione: " - "Dir::Etc::Trusted.\n" ++" Portachiavi delle chiavi fidate locali; qui saranno aggiunte le nuove chiavi.\n" ++" Voce di configurazione: Dir::Etc::Trusted.\n" +" \n" #. type: Plain text #: apt.ent:163 @@@ -457,15 -286,6 +426,12 @@@ msgid " " \n" "\">\n" msgstr "" +" /etc/apt/trusted.gpg.d/\n" - " Frammenti di file per le chiavi fidate, qui potranno " - "essere memorizzati\n" - " ulteriori portachiavi (da parte di altri pacchetti o " - "dall'amministratore).\n" - " Voce di configurazione " - "Dir::Etc::TrustedParts.\n" ++" Frammenti di file per le chiavi fidate, qui potranno essere memorizzati\n" ++" ulteriori portachiavi (da parte di altri pacchetti o dall'amministratore).\n" ++" Voce di configurazione Dir::Etc::TrustedParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:171 @@@ -479,16 -299,6 +445,13 @@@ msgid " " \n" "\">\n" msgstr "" +"/var/lib/apt/extended_states\n" - " Elenco degli stati dei pacchetti installati " - "automaticamente.\n" - " Voce di configurazione: " - "Dir::State::extended_states.\n" ++" /var/lib/apt/extended_states\n" ++" Elenco degli stati dei pacchetti installati automaticamente.\n" ++" Voce di configurazione: Dir::State::extended_states.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:175 @@@ -498,11 -308,6 +461,9 @@@ msgid " " to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" "\n" msgstr "" - "\n" ++"\n" +"\n" #. type: Plain text #: apt.ent:184 @@@ -517,17 -322,6 +478,12 @@@ msgid " " Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" "\">\n" msgstr "" - "\n" +"debian-l10n-italian@lists.debian.org. In particolare " - "hanno contribuito Eugenia Franzoni (2000), Hugh Hartmann (2000-2012), " - "Gabriele Stilli (2012), Beatrice Torracca (2012).\n" ++" Traduzione in italiano a cura del Team italiano di localizzazione di Debian debian-l10n-italian@lists.debian.org. In particolare hanno contribuito Eugenia Franzoni (2000), Hugh Hartmann (2000-2012), Gabriele Stilli (2012), Beatrice Torracca (2012).\n" +"\">\n" #. type: Plain text #: apt.ent:195 @@@ -544,20 -338,6 +500,14 @@@ msgid " " translation is lagging behind the original content.\n" "\">\n" msgstr "" - "\n" +"\n" #. type: Plain text #: apt.ent:198 @@@ -565,9 -345,6 +515,8 @@@ msgid " " " msgstr "" - " " ++" " #. type: Plain text #: apt.ent:201 @@@ -575,8 -352,6 +524,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:204 @@@ -585,9 -360,6 +534,9 @@@ msgid " "t=squeeze apt/experimental --> " msgstr "" - " " #. type: Plain text #: apt.ent:207 @@@ -595,8 -367,6 +544,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:210 @@@ -604,8 -374,6 +553,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:213 @@@ -613,8 -381,6 +562,8 @@@ msgid " " " msgstr "" - " " - "" ++" " #. type: Plain text #: apt.ent:216 @@@ -622,8 -388,6 +571,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:219 @@@ -631,8 -395,6 +580,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:222 @@@ -640,8 -402,6 +589,8 @@@ msgid " " " msgstr "" - " " ++" " #. type: Plain text #: apt.ent:225 @@@ -650,9 -410,6 +599,9 @@@ msgid " "apt-extracttemplates -t=/tmp --> " msgstr "" +" " #. type: Plain text #: apt.ent:228 @@@ -660,8 -417,6 +609,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:231 @@@ -669,9 -424,6 +618,9 @@@ msgid " " " msgstr "" +" " ++"packages path override-file pathprefix --> " #. type: Plain text #: apt.ent:234 @@@ -680,9 -432,6 +629,9 @@@ msgid " "packages path override-file pathprefix --> " msgstr "" +" " #. type: Plain text #: apt.ent:237 @@@ -691,9 -440,6 +640,9 @@@ msgid " "packages path override-file pathprefix --> " msgstr "" +" " #. type: Plain text #: apt.ent:240 @@@ -701,8 -447,6 +650,8 @@@ msgid " " " msgstr "" +" " #. type: Plain text #: apt.ent:243 @@@ -710,14 -454,12 +659,14 @@@ msgid " " " msgstr "" +" " #. type: Content of: #: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26 #: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26 msgid "8" -msgstr "" +msgstr "8" #. type: Content of: #: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27 @@@ -725,13 -467,12 +674,13 @@@ #: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27 #: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27 msgid "APT" -msgstr "" +msgstr "APT" #. type: Content of: #: apt-get.8.xml:33 msgid "APT package handling utility -- command-line interface" msgstr "" +"strumento APT per la gestione dei pacchetti, interfaccia a riga di comando" #. type: Content of: #: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38 @@@ -739,7 -480,7 +688,7 @@@ #: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36 #: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38 msgid "Description" -msgstr "" +msgstr "Descrizione" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:39 @@@ -749,10 -490,6 +698,10 @@@ msgid " "library. Several \"front-end\" interfaces exist, such as &dselect;, " "&aptitude;, &synaptic; and &wajig;." msgstr "" +"<command>apt-get</command> è lo strumento a riga di comando per gestire " +"pacchetti e può essere considerato il «backend» dell'utente per altri " +"strumenti che usano la libreria APT. Esistono diversi «frontend» per " +"interfaccia, come &dselect;, &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44 @@@ -761,8 -498,6 +710,8 @@@ msgid " "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" - "A meno che non venga fornita l'opzione <option>-h</option> o " - "<option>--help</option>, deve essere presente uno dei comandi seguenti." ++"A meno che non venga fornita l'opzione <option>-h</option> o <option>--help</" ++"option>, deve essere presente uno dei comandi seguenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:49 @@@ -777,17 -512,6 +726,16 @@@ msgid " "literal>. Please be aware that the overall progress meter will be incorrect " "as the size of the package files cannot be known in advance." msgstr "" +"<literal>update</literal> è usato per sincronizzare nuovamente i file degli " +"indici dei pacchetti dalle loro fonti. Gli indici dei pacchetti disponibili " - "sono scaricati dalle posizioni specificate in " - "<filename>/etc/apt/sources.list</filename>. Per esempio, quando si usa un " - "archivio Debian, questo comando recupera e analizza i file " - "<filename>Packages.gz</filename>, in modo da rendere disponibili " - "informazioni sui pacchetti nuovi e quelli aggiornati. Si dovrebbe sempre " - "fare un <literal>update</literal> prima di un <literal>upgrade</literal> o " - "<literal>dist-upgrade</literal>. Notare che l'indicatore di avanzamento " - "globale non è preciso perché è impossibile conoscere in anticipo la " - "dimensione dei file degli indici dei pacchetti." ++"sono scaricati dalle posizioni specificate in <filename>/etc/apt/sources." ++"list</filename>. Per esempio, quando si usa un archivio Debian, questo " ++"comando recupera e analizza i file <filename>Packages.gz</filename>, in modo " ++"da rendere disponibili informazioni sui pacchetti nuovi e quelli aggiornati. " ++"Si dovrebbe sempre fare un <literal>update</literal> prima di un " ++"<literal>upgrade</literal> o <literal>dist-upgrade</literal>. Notare che " ++"l'indicatore di avanzamento globale non è preciso perché è impossibile " ++"conoscere in anticipo la dimensione dei file degli indici dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:61 @@@ -803,17 -527,6 +751,17 @@@ msgid " "<literal>update</literal> must be performed first so that <command>apt-get</" "command> knows that new versions of packages are available." msgstr "" +"<literal>upgrade</literal> è usato per installare le versioni più recenti di " +"tutti i pacchetti attualmente installati sul sistema, usando le fonti " +"elencate in <filename>/etc/apt/sources.list</filename>. I pacchetti " +"attualmente installati con nuove versioni disponibili sono recuperati e " +"aggiornati; in nessun caso vengono rimossi pacchetti attualmente installati " +"oppure recuperati e installati pacchetti che non lo sono già. I pacchetti " +"attualmente installati che hanno una nuova versione, ma che non possono " +"essere aggiornati senza cambiare lo stato di installazione di un altro " +"pacchetto, vengono lasciati alla versione attuale. Deve essere prima " - "effettuato un <literal>update</literal> in modo che <command>apt-" - "get</command> sappia se sono disponibili nuove versioni dei pacchetti." ++"effettuato un <literal>update</literal> in modo che <command>apt-get</" ++"command> sappia se sono disponibili nuove versioni dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:74 @@@ -829,17 -542,6 +777,16 @@@ msgid " "preferences; for a mechanism for overriding the general settings for " "individual packages." msgstr "" +"<literal>dist-upgrade</literal>, oltre ad effettuare le funzioni di " +"<literal>upgrade</literal>, gestisce anche in maniera intelligente le " +"modifiche delle dipendenze delle nuove versioni dei pacchetti; <command>apt-" +"get</command> ha un sistema «intelligente» di risoluzione dei conflitti e " +"cerca di aggiornare i pacchetti più importanti a scapito di quelli meno " +"importanti, se necessario. Il comando <literal>dist-upgrade</literal> può " - "quindi rimuovere alcuni pacchetti. Il file " - "<filename>/etc/apt/sources.list</filename> contiene un elenco di posizioni " - "da cui recuperare i file di pacchetto desiderati. Vedere anche &apt-" - "preferences; per un meccanismo per scavalcare le impostazioni generali per " - "singoli pacchetti." ++"quindi rimuovere alcuni pacchetti. Il file <filename>/etc/apt/sources.list</" ++"filename> contiene un elenco di posizioni da cui recuperare i file di " ++"pacchetto desiderati. Vedere anche &apt-preferences; per un meccanismo per " ++"scavalcare le impostazioni generali per singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:87 @@@ -851,12 -553,6 +798,12 @@@ msgid " "realize that state (for instance, the removal of old and the installation of " "new packages)." msgstr "" +"<literal>dselect-upgrade</literal> viene usato insieme a &dselect;, il " - "frontend tradizionale per i pacchetti di Debian. <literal>dselect-" - "upgrade</literal> segue i cambiamenti fatti da &dselect; al campo " - "<literal>Status</literal> dei pacchetti disponibili, ed effettua le azioni " - "necessarie per realizzare tale stato (ad esempio la rimozione di vecchi " - "pacchetti e l'installazione di nuovi)." ++"frontend tradizionale per i pacchetti di Debian. <literal>dselect-upgrade</" ++"literal> segue i cambiamenti fatti da &dselect; al campo <literal>Status</" ++"literal> dei pacchetti disponibili, ed effettua le azioni necessarie per " ++"realizzare tale stato (ad esempio la rimozione di vecchi pacchetti e " ++"l'installazione di nuovi)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:98 @@@ -874,19 -570,6 +821,19 @@@ msgid " "install. These latter features may be used to override decisions made by apt-" "get's conflict resolution system." msgstr "" +"<literal>install</literal> è seguito da uno o più pacchetti da installare o " +"aggiornare. Ogni pacchetto è un nome di pacchetto, non un nome di file " +"pienamente qualificato (ad esempio, in un sistema Debian, l'argomento " +"fornito sarebbe <package>apt-utils</package>, non <filename>apt-utils_&apt-" +"product-version;_amd64.deb</filename>). Tutti i pacchetti richiesti dai " +"pacchetti specificati per l'installazione saranno anch'essi recuperati e " +"installati. Il file <filename>/etc/apt/sources.list</filename> viene usato " +"per localizzare i pacchetti desiderati. Se viene aggiunto un segno meno alla " +"fine del nome di pacchetto (senza spazio), il pacchetto specificato viene " +"rimosso, se è installato. Analogamente un segno più può essere usato per " +"specificare un pacchetto da installare. Queste ultime funzionalità possono " +"essere usate per scavalcare decisioni prese dal sistema di risoluzione dei " +"conflitti di apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:116 @@@ -898,13 -581,6 +845,13 @@@ msgid " "package name with a slash and the version of the distribution or the Archive " "name (stable, testing, unstable)." msgstr "" +"È possibile selezionare una versione specifica di un pacchetto per " +"l'installazione scrivendo dopo il nome del pacchetto un segno di uguale e la " +"versione del pacchetto da selezionare. Ciò farà sì che venga localizzata e " +"selezionata per l'installazione quella versione. In alternativa può essere " +"selezionata una distribuzione specifica scrivendo dopo il nome del pacchetto " +"una sbarra («/») e la versione della distribuzione o il nome dell'archivio " +"(stable, testing, unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:123 @@@ -912,8 -588,6 +859,8 @@@ msgid " "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" +"Entrambi i meccanismi di selezione della versione possono far retrocedere " +"pacchetti e devono essere usati con cautela." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:126 @@@ -926,14 -600,6 +873,14 @@@ msgid " "you wish to upgrade, and if a newer version is available, it (and its " "dependencies, as described above) will be downloaded and installed." msgstr "" +"Questa è l'azione da usare anche quando si desiderano aggiornare uno o più " +"pacchetti già installati senza aggiornare ogni pacchetto nel sistema. A " +"differenza dell'azione «upgrade», che aggiorna alla versione più recente " +"tutti i pacchetti installati, «install» installa la versione più recente " +"solamente per i pacchetti specificati. Basta fornire il nome dei pacchetti " +"che si desiderano aggiornare e, se è disponibile una versione più recente, " +"essa (e tutte le sue dipendenze come descritto sopra) verrà scaricata e " +"installata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:137 @@@ -941,8 -607,6 +888,8 @@@ msgid " "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." msgstr "" +"Da ultimo, il meccanismo &apt-preferences; permette di creare una politica " +"di installazione alternativa per i singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:141 @@@ -955,14 -619,6 +902,14 @@@ msgid " "expression with a '^' or '$' character, or create a more specific regular " "expression." msgstr "" +"Se nessun pacchetto corrisponde all'espressione specificata e questa " +"contiene uno tra «.», «?» o «*», allora viene considerata come " +"un'espressione regolare POSIX e viene confrontata con tutti i nomi di " +"pacchetto nel database. Ogni corrispondenza viene quindi installata (o " +"rimossa). Notare che la corrispondenza avviene con sottostringhe, perciò " +"«bass.*» trova corrispondenza con «quanto-bass» e «bassissimo». Se ciò non è " - "quello che si desidera, ancorare l'espressione regolare con un carattere " - "«^» o «$», oppure creare un'espressione regolare più specifica." ++"quello che si desidera, ancorare l'espressione regolare con un carattere «^» " ++"o «$», oppure creare un'espressione regolare più specifica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:151 @@@ -973,11 -629,6 +920,11 @@@ msgid " "the package name (with no intervening space), the identified package will be " "installed instead of removed." msgstr "" +"<literal>remove</literal> è identico a <literal>install</literal> tranne per " +"il fatto che i pacchetti sono rimossi invece che installati. Notare che la " +"rimozione di un pacchetto lascia i suoi file di configurazione nel sistema. " +"Se viene aggiunto un segno più in fondo al nome del pacchetto (senza spazi " +"in mezzo), il pacchetto specificato viene installato invece che rimosso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:159 @@@ -986,9 -637,6 +933,9 @@@ msgid " "that packages are removed and purged (any configuration files are deleted " "too)." msgstr "" +"<literal>purge</literal> è identico a <literal>remove</literal> tranne per " +"il fatto che i pacchetti sono rimossi ed eliminati completamente (viene " +"eliminato anche ogni file di configurazione)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:164 @@@ -1001,13 -649,6 +948,13 @@@ msgid " "literal>, the <option>-t</option> option or per package with the " "<literal>pkg/release</literal> syntax, if possible." msgstr "" +"<literal>source</literal> fa sì che <command>apt-get</command> scarichi i " +"pacchetti sorgente. APT esaminerà i pacchetti disponibili per decidere quali " +"pacchetti sorgente scaricare. Poi, se possibile, troverà e scaricherà nella " +"directory corrente la versione più recente disponibile di quel pacchetto " +"sorgente rispettando il rilascio predefinito, impostato con l'opzione " +"<literal>APT::Default-Release</literal>, l'opzione <option>-t</option> o per " +"i singoli pacchetti con la sintassi <literal>pacch/rilascio</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:172 @@@ -1018,12 -659,6 +965,12 @@@ msgid " "otherwise you will probably get either the wrong (too old/too new) source " "versions or none at all." msgstr "" +"Il sistema tiene traccia dei pacchetti sorgente in modo separato dai " +"pacchetti binari, attraverso righe <literal>deb-src</literal> nel file " +"&sources-list;. Ciò significa che sarà necessario aggiungere una riga di " +"questo tipo per ciascun repository da cui si desiderano ottenere sorgenti; " +"in caso contrario probabilmente si otterrà la versione sorgente sbagliata " +"(troppo vecchia o troppo nuova) oppure nessuna versione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:178 @@@ -1034,12 -669,6 +981,11 @@@ msgid " "option. If <option>--download-only</option> is specified then the source " "package will not be unpacked." msgstr "" +"Se viene specificata l'opzione <option>--compile</option> allora il " +"pacchetto verrà compilato in un .deb binario usando <command>dpkg-" +"buildpackage</command> per l'architettura così come definita dall'opzione " - "<command>--host-architecture</command>. Se viene usata l'opzione <option" - ">--download-only</option>, allora il pacchetto sorgente non verrà " - "spacchettato." ++"<command>--host-architecture</command>. Se viene usata l'opzione <option>--" ++"download-only</option>, allora il pacchetto sorgente non verrà spacchettato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:185 @@@ -1050,12 -679,6 +996,11 @@@ msgid " "name and version, implicitly enabling the <literal>APT::Get::Only-Source</" "literal> option." msgstr "" +"Può essere recuperata una specifica versione sorgente facendo seguire al " +"nome del sorgente un segno uguale e quindi la versione da scaricare, in modo " +"simile al meccanismo usato per i file di pacchetto. Ciò permette la " +"corrispondenza esatta con il nome e la versione del pacchetto sorgente, " - "abilitando implicitamente l'opzione <literal>APT::Get::Only-" - "Source</literal>." ++"abilitando implicitamente l'opzione <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:191 @@@ -1064,10 -687,6 +1009,10 @@@ msgid " "<command>dpkg</command> database like binary packages; they are simply " "downloaded to the current directory, like source tarballs." msgstr "" +"Notare che i pacchetti sorgente non vengono installati né viene tenuta " +"traccia di essi nel database di <command>dpkg</command> come per i pacchetti " +"binari; sono semplicemente scaricati nella directory corrente, come archivi " +"tar dei sorgenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:197 @@@ -1078,12 -697,6 +1023,12 @@@ msgid " "host-architecture can be specified with the <option>--host-architecture</" "option> option instead." msgstr "" +"<literal>build-dep</literal> fa sì che apt-get installi o rimuova pacchetti, " +"nel tentativo di soddisfare le dipendenze di compilazione di un pacchetto " +"sorgente. In modo predefinito sono soddisfatte le dipendenze per compilare " +"il pacchetto in modo nativo. Se lo si desidera, è possibile invece " +"specificare un'architettura ospite con l'opzione <option>--host-" +"architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:204 @@@ -1091,8 -704,6 +1036,8 @@@ msgid " "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." msgstr "" +"<literal>check</literal> è uno strumento diagnostico; aggiorna la cache dei " +"pacchetti e controlla la presenza di dipendenze non soddisfatte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:209 @@@ -1100,8 -711,6 +1045,8 @@@ msgid " "<literal>download</literal> will download the given binary package into the " "current directory." msgstr "" +"<literal>download</literal> scarica il pacchetto binario specificato nella " +"directory corrente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:215 @@@ -1114,14 -723,6 +1059,13 @@@ msgid " "want to run <literal>apt-get clean</literal> from time to time to free up " "disk space." msgstr "" +"<literal>clean</literal> ripulisce il repository locale dei file di " - "pacchetto recuperati. Rimuove tutto da " - "<filename>&cachedir;/archives/</filename> e " - "<filename>&cachedir;/archives/partial/</filename>, tranne il file di lock. " - "Quando APT viene usato come metodo per &dselect;, <literal>clean</literal> " - "viene eseguito automaticamente. Chi non usa dselect probabilmente è bene che " - "usi <literal>apt-get clean</literal> di quando in quando per liberare " - "spazio su disco." ++"pacchetto recuperati. Rimuove tutto da <filename>&cachedir;/archives/</" ++"filename> e <filename>&cachedir;/archives/partial/</filename>, tranne il " ++"file di lock. Quando APT viene usato come metodo per &dselect;, " ++"<literal>clean</literal> viene eseguito automaticamente. Chi non usa dselect " ++"probabilmente è bene che usi <literal>apt-get clean</literal> di quando in " ++"quando per liberare spazio su disco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:225 @@@ -1134,13 -735,6 +1078,13 @@@ msgid " "Installed</literal> will prevent installed packages from being erased if it " "is set to off." msgstr "" +"Come <literal>clean</literal>, <literal>autoclean</literal> ripulisce il " +"repository locale dei file di pacchetto recuperati. La differenza sta nel " +"fatto che rimuove solo i file di pacchetto che non possono più essere " +"scaricati e sono per lo più inutili. Questo permette di mantenere una cache " +"per un periodo lungo senza che cresca fuori controllo. Se l'opzione di " +"configurazione <literal>APT::Clean-Installed</literal> è disabilitata, " +"impedisce che vengano eliminati i pacchetti installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:235 @@@ -1149,9 -743,6 +1093,9 @@@ msgid " "automatically installed to satisfy dependencies for other packages and are " "now no longer needed." msgstr "" +"<literal>autoremove</literal> viene usato per rimuovere i pacchetti che sono " +"stati installati automaticamente per soddisfare delle dipendenze per altri " +"pacchetti e che non sono più necessari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:240 @@@ -1166,22 -757,13 +1110,22 @@@ msgid " "installed. However, you can specify the same options as for the " "<option>install</option> command." msgstr "" +"<literal>changelog</literal> scarica il changelog di un pacchetto e lo " +"visualizza usando <command>sensible-pager</command>. Il nome e la directory " - "di base del server sono definiti nella variabile " - "<literal>APT::Changelogs::Server</literal> (ad esempio <ulink url=\"http://pa" - "ckages.debian.org/changelogs\">packages.debian.org/changelogs</ulink> per " - "Debian o <ulink url=\"http://changelogs.ubuntu.com/changelogs\">changelogs.ubu" - "ntu.com/changelogs</ulink> per Ubuntu). In modo predefinito visualizza il " - "changelog per la versione che è installata. Tuttavia si possono specificare " - "le stesse opzioni del comando <option>install</option>." ++"di base del server sono definiti nella variabile <literal>APT::Changelogs::" ++"Server</literal> (ad esempio <ulink url=\"http://packages.debian.org/" ++"changelogs\">packages.debian.org/changelogs</ulink> per Debian o <ulink url=" ++"\"http://changelogs.ubuntu.com/changelogs\">changelogs.ubuntu.com/" ++"changelogs</ulink> per Ubuntu). In modo predefinito visualizza il changelog " ++"per la versione che è installata. Tuttavia si possono specificare le stesse " ++"opzioni del comando <option>install</option>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108 #: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48 #: apt-ftparchive.1.xml:504 msgid "options" -msgstr "" +msgstr "opzioni" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:263 @@@ -1189,9 -771,6 +1133,9 @@@ msgid " "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" +"Non considerare i pacchetti raccomandati come una dipendenza per " - "l'installazione. Voce di configurazione: <literal>APT::Install-" - "Recommends</literal>." ++"l'installazione. Voce di configurazione: <literal>APT::Install-Recommends</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:268 @@@ -1199,8 -778,6 +1143,8 @@@ msgid " "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" +"Considera i pacchetti suggeriti come una dipendenza per l'installazione. " +"Voce di configurazione:<literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:273 @@@ -1208,9 -785,6 +1152,9 @@@ msgid " "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" +"Scarica solamente; i file di pacchetto sono solo recuperati e non " - "spacchettati o installati. Voce di configurazione: <literal>APT::Get" - "::Download-Only</literal>." ++"spacchettati o installati. Voce di configurazione: <literal>APT::Get::" ++"Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:278 @@@ -1227,18 -801,6 +1171,18 @@@ msgid " "option> may produce an error in some situations. Configuration Item: " "<literal>APT::Get::Fix-Broken</literal>." msgstr "" +"Aggiusta; cerca di correggere un sistema che ha dipendenze non soddisfatte. " +"Questa opzione, quando usata con install o remove, può omettere qualsiasi " +"pacchetto per permettere ad APT di trovare una soluzione valida. Se sono " +"specificati dei pacchetti, questi devono risolvere completamente il " +"problema. L'opzione è a volte necessaria quando si esegue APT per la prima " +"volta; APT stesso non permette l'esistenza di pacchetti con dipendenze non " +"soddisfatte in un sistema. È possibile che la struttura di dipendenze di un " +"sistema sia corrotta a tal punto da richiedere un intervento manuale (il che " +"di solito significa usare &dselect; o <command>dpkg --remove</command> per " +"eliminare alcuni dei pacchetti che creano problemi). L'uso di questa opzione " +"insieme a <option>-m</option> può in alcune situazioni produrre un errore. " +"Voce di configurazione: <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:293 @@@ -1251,14 -813,6 +1195,14 @@@ msgid " "it could not be downloaded then it will be silently held back. " "Configuration Item: <literal>APT::Get::Fix-Missing</literal>." msgstr "" +"Ignora i pacchetti mancanti; se alcuni pacchetti non possono essere " +"recuperati o fallisce il controllo sulla loro integrità dopo il recupero " +"(file di pacchetto corrotti), mantiene bloccati tali pacchetti e gestisce il " +"risultato. L'uso di questa opzione insieme a <option>-f</option> può " +"produrre un errore in alcune situazioni. Se un pacchetto è selezionato per " +"l'installazione (particolarmente se è indicato nella riga di comando) e non " +"può essere scaricato verrà silenziosamente mantenuto invariato. Voce di " +"configurazione: <literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:304 @@@ -1267,9 -821,6 +1211,9 @@@ msgid " "missing</option> to force APT to use only the .debs it has already " "downloaded. Configuration Item: <literal>APT::Get::Download</literal>." msgstr "" - "Disabilita lo scaricamento dei pacchetti. È usato al meglio con <option" - ">--ignore-missing</option> per forzare APT ad usare solo i .deb che ha già " ++"Disabilita lo scaricamento dei pacchetti. È usato al meglio con <option>--" ++"ignore-missing</option> per forzare APT ad usare solo i .deb che ha già " +"scaricato. Voce di configurazione: <literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:311 @@@ -1282,15 -833,6 +1226,14 @@@ msgid " "may decide to do something you did not expect. Configuration Item: " "<literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto alla registrazione, omettendo gli " +"indicatori di avanzamento. L'uso di più «q» produce un output più silenzioso " +"fino a un massimo di 2. Si può anche usare <option>-q=n</option> per " +"impostare il livello di silenziosità a n, scavalcando il file di " - "configurazione. Notare che il livello di silenziosità 2 implica " - "<option>-y</option>; non si dovrebbe mai usare -qq senza un modificatore che " - "non fa azioni come -d, --print-uris o -s, dato che APT potrebbe decidere di " - "fare qualcosa di inatteso. Voce di configurazione: " - "<literal>quiet</literal>." ++"configurazione. Notare che il livello di silenziosità 2 implica <option>-y</" ++"option>; non si dovrebbe mai usare -qq senza un modificatore che non fa " ++"azioni come -d, --print-uris o -s, dato che APT potrebbe decidere di fare " ++"qualcosa di inatteso. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:326 @@@ -1299,9 -841,6 +1242,9 @@@ msgid " "actually change the system. Configuration Item: <literal>APT::Get::" "Simulate</literal>." msgstr "" +"Nessuna azione; effettua una simulazione degli eventi che si " +"verificherebbero, ma non cambia realmente il sistema. Voce di " +"configurazione: <literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:330 @@@ -1314,13 -853,6 +1257,13 @@@ msgid " "should know what they are doing without further warnings from <literal>apt-" "get</literal>." msgstr "" +"Le esecuzioni simulate effettuate da un utente disattivano automaticamente " +"il lock (<literal>Debug::NoLocking</literal>) e se è impostata l'opzione " +"<literal>APT::Get::Show-User-Simulation-Note</literal> (come predefinito), " +"viene anche visualizzato un messaggio che indica che quella fatta è solo una " - "simulazione. Le esecuzioni effettuate da root non attivano né NoLocking né " - "i messaggi: i superutenti dovrebbero sapere ciò che stanno facendo senza " ++"simulazione. Le esecuzioni effettuate da root non attivano né NoLocking né i " ++"messaggi: i superutenti dovrebbero sapere ciò che stanno facendo senza " +"bisogno di ulteriori avvertimenti da <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:338 @@@ -1331,12 -863,6 +1274,12 @@@ msgid " "Square brackets indicate broken packages, and empty square brackets indicate " "breaks that are of no consequence (rare)." msgstr "" +"Le esecuzioni simulate stampano una serie di righe, ciascuna delle quali " +"rappresenta un'operazione di <command>dpkg</command>: configurazione " +"(<literal>Conf</literal>), rimozione (<literal>Remv</literal>) o " +"spacchettamento (<literal>Inst</literal>). Le parentesi quadre indicano i " +"pacchetti difettosi e le parentesi quadre vuote indicano difetti che non " +"hanno conseguenze (rari)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:346 @@@ -1347,13 -873,6 +1290,13 @@@ msgid " "essential package occurs then <literal>apt-get</literal> will abort. " "Configuration Item: <literal>APT::Get::Assume-Yes</literal>." msgstr "" +"Rispondi automaticamente «sì» ai prompt; assume «sì» come risposta a tutti i " +"prompt e viene eseguito in modo non interattivo. Se si verifica una " +"situazione non desiderabile, come il cambiamento di un pacchetto bloccato, " +"il tentativo di installazione di un pacchetto non autenticato o la rimozione " +"di un pacchetto essenziale, allora <literal>apt-get</literal> annullerà " - "l'esecuzione. Voce di configurazione: <literal>APT::Get::Assume-" - "Yes</literal>." ++"l'esecuzione. Voce di configurazione: <literal>APT::Get::Assume-Yes</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:354 @@@ -1361,8 -880,6 +1304,8 @@@ msgid " "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." msgstr "" +"Rispondi automaticamente «no» a tutti i prompt. Voce di configurazione: " +"<literal>APT::Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:359 @@@ -1370,9 -887,6 +1313,9 @@@ msgid " "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" +"Mostra i pacchetti aggiornati; stampa un elenco di tutti i pacchetti che " +"devono essere aggiornati. Voce di configurazione: <literal>APT::Get::Show-" +"Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:365 @@@ -1380,8 -894,6 +1323,8 @@@ msgid " "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" +"Mostra la versione completa dei pacchetti aggiornati e installati. Voce di " +"configurazione: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:371 @@@ -1393,13 -905,6 +1336,12 @@@ msgid " "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" "Architecture</literal>" msgstr "" +"Questa opzione controlla l'architettura per la quale <command>apt-get source " - "--compile</command> compila i pacchetti e come le dipendenze di " - "compilazione incrociata sono soddisfatte. In modo predefinito non è " - "impostata, il che significa che l'architettura ospite è la stessa " - "dell'architettura di compilazione (che è definita da " - "<literal>APT::Architecture</literal>). Voce di configurazione: " - "<literal>APT::Get::Host-Architecture</literal>." ++"--compile</command> compila i pacchetti e come le dipendenze di compilazione " ++"incrociata sono soddisfatte. In modo predefinito non è impostata, il che " ++"significa che l'architettura ospite è la stessa dell'architettura di " ++"compilazione (che è definita da <literal>APT::Architecture</literal>). Voce " ++"di configurazione: <literal>APT::Get::Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:381 @@@ -1407,8 -912,6 +1349,8 @@@ msgid " "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" +"Compila i pacchetti sorgente dopo averli scaricati. Voce di configurazione: " +"<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:386 @@@ -1418,10 -921,6 +1360,10 @@@ msgid " "<literal>dist-upgrade</literal> to override a large number of undesired " "holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." msgstr "" +"Ignora i blocchi sui pacchetti; ciò fa sì che <command>apt-get</command> " - "ignori il blocco posto su un pacchetto. Può essere utile insieme a <literal" - ">dist-upgrade</literal> per scavalcare un grande numero di blocchi non " - "desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>." ++"ignori il blocco posto su un pacchetto. Può essere utile insieme a " ++"<literal>dist-upgrade</literal> per scavalcare un grande numero di blocchi " ++"non desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:393 @@@ -1431,10 -930,6 +1373,10 @@@ msgid " "line from being upgraded if they are already installed. Configuration Item: " "<literal>APT::Get::Upgrade</literal>." msgstr "" - "Non aggiornare i pacchetti; quando usato insieme a " - "<literal>install</literal>, <literal>no-upgrade</literal> impedisce che i " - "pacchetti nella riga di comando vengano aggiornati se sono già installati. " - "Voce di configurazione: <literal>APT::Get::Upgrade</literal>." ++"Non aggiornare i pacchetti; quando usato insieme a <literal>install</" ++"literal>, <literal>no-upgrade</literal> impedisce che i pacchetti nella riga " ++"di comando vengano aggiornati se sono già installati. Voce di " ++"configurazione: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:400 @@@ -1444,11 -939,6 +1386,11 @@@ msgid " "installed packages only and ignore requests to install new packages. " "Configuration Item: <literal>APT::Get::Only-Upgrade</literal>." msgstr "" - "Non installare nuovi pacchetti; quando usato insieme a " - "<literal>install</literal>, <literal>only-upgrade</literal> installa gli " - "aggiornamenti solamente per i pacchetti già installati e ignora le richieste " - "di installarne di nuovi. Voce di configurazione: <literal>APT::Get::Only-" ++"Non installare nuovi pacchetti; quando usato insieme a <literal>install</" ++"literal>, <literal>only-upgrade</literal> installa gli aggiornamenti " ++"solamente per i pacchetti già installati e ignora le richieste di " ++"installarne di nuovi. Voce di configurazione: <literal>APT::Get::Only-" +"Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:408 @@@ -1459,12 -949,6 +1401,12 @@@ msgid " "literal> can potentially destroy your system! Configuration Item: " "<literal>APT::Get::force-yes</literal>." msgstr "" +"Forza «sì»; questa è un'opzione pericolosa che fa sì che apt, se sta facendo " +"qualcosa di potenzialmente pericoloso, continui senza chiedere " +"l'autorizzazione all'utente. Non dovrebbe essere usata se non in situazioni " +"molto particolari. L'uso di <literal>force-yes</literal> può potenzialmente " +"distruggere il sistema. Voce di configurazione: <literal>APT::Get::force-" +"yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:416 @@@ -1478,14 -962,6 +1420,14 @@@ msgid " "to decompress any compressed files. Configuration Item: <literal>APT::Get::" "Print-URIs</literal>." msgstr "" +"Invece di scaricare i file per l'installazione, stampa i loro URI. Ogni URI " +"ha il percorso, il nome del file di destinazione, la dimensione e l'hash MD5 " +"atteso. Notare che il nome file in cui scrivere non corrisponde sempre al " +"nome file sul sito remoto. Questo funziona anche con i comandi " +"<literal>source</literal> e <literal>update</literal>. Quando usato con il " +"comando <literal>update</literal> l'hash MD5 e la dimensione non sono " +"inclusi, e sta all'utente decomprimere qualsiasi file compresso. Voce di " +"configurazione: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:427 @@@ -1495,11 -971,6 +1437,10 @@@ msgid " "<option>remove --purge</option> is equivalent to the <option>purge</option> " "command. Configuration Item: <literal>APT::Get::Purge</literal>." msgstr "" +"Usa purge invece di remove per ogni cosa da rimuovere. Verrà visualizzato un " - "asterisco («*») vicino ai pacchetti pianificati per l'eliminazione " - "completa. <option>remove --purge</option> è equivalente al comando " - "<option>purge</option>. Voce di configurazione: " - "<literal>APT::Get::Purge</literal>." ++"asterisco («*») vicino ai pacchetti pianificati per l'eliminazione completa. " ++"<option>remove --purge</option> è equivalente al comando <option>purge</" ++"option>. Voce di configurazione: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:435 @@@ -1507,8 -978,6 +1448,8 @@@ msgid " "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" +"Reinstalla i pacchetti che sono già installati alla nuova versione. Voce di " +"configurazione: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:440 @@@ -1520,13 -989,6 +1461,12 @@@ msgid " "frequently change your sources list. Configuration Item: <literal>APT::Get::" "List-Cleanup</literal>." msgstr "" +"Questa opzione è attivata in modo predefinito; usare <literal>--no-list-" - "cleanup</literal> per disabilitarla. Quando è attivata <command>apt-" - "get</command> gestisce automaticamente il contenuto di " - "<filename>&statedir;/lists</filename> per garantire che i file obsoleti " - "siano eliminati. L'unica ragione per disabilitarla è se si cambia di " - "frequente la propria lista di fonti. Voce di configurazione: " - "<literal>APT::Get::List-Cleanup</literal>." ++"cleanup</literal> per disabilitarla. Quando è attivata <command>apt-get</" ++"command> gestisce automaticamente il contenuto di <filename>&statedir;/" ++"lists</filename> per garantire che i file obsoleti siano eliminati. L'unica " ++"ragione per disabilitarla è se si cambia di frequente la propria lista di " ++"fonti. Voce di configurazione: <literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:450 @@@ -1541,16 -1003,6 +1481,16 @@@ msgid " "option>. Configuration Item: <literal>APT::Default-Release</literal>; see " "also the &apt-preferences; manual page." msgstr "" +"Questa opzione controlla l'input predefinito per il motore delle politiche; " +"crea un pin predefinito alla priorità 990 usando la stringa di rilascio " - "specificata. Ciò scavalca le impostazioni generali in " - "<filename>/etc/apt/preferences</filename>. Questa opzione non ha effetto sui " - "pacchetti su cui si usa specificatamente il pinning. In breve, questa " - "opzione permette di avere un semplice controllo sulla distribuzione da cui " - "verranno recuperati i pacchetti. Alcuni esempi comuni possono essere " - "<option>-t '2.1*'</option>, <option>-t unstable</option> o <option>-t " - "sid</option>. Voce di configurazione: <literal>APT::Default-" - "Release</literal>; vedere anche la pagina di manuale di &apt-preferences;." ++"specificata. Ciò scavalca le impostazioni generali in <filename>/etc/apt/" ++"preferences</filename>. Questa opzione non ha effetto sui pacchetti su cui " ++"si usa specificatamente il pinning. In breve, questa opzione permette di " ++"avere un semplice controllo sulla distribuzione da cui verranno recuperati i " ++"pacchetti. Alcuni esempi comuni possono essere <option>-t '2.1*'</option>, " ++"<option>-t unstable</option> o <option>-t sid</option>. Voce di " ++"configurazione: <literal>APT::Default-Release</literal>; vedere anche la " ++"pagina di manuale di &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:465 @@@ -1560,11 -1012,6 +1500,11 @@@ msgid " "option> will answer yes to any prompt, <option>--trivial-only</option> will " "answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." msgstr "" +"Effettua solo le operazioni che sono «banali». Può essere correlato " - "logicamente a <option>--assume-yes</option>: mentre <option>--assume-" - "yes</option> risponde «sì» a tutti i prompt, <option>--trivial-only</option> " - "risponde «no». Voce di configurazione: <literal>APT::Get::Trivial-" - "Only</literal>." ++"logicamente a <option>--assume-yes</option>: mentre <option>--assume-yes</" ++"option> risponde «sì» a tutti i prompt, <option>--trivial-only</option> " ++"risponde «no». Voce di configurazione: <literal>APT::Get::Trivial-Only</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:472 @@@ -1572,9 -1019,6 +1512,9 @@@ msgid " "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" +"Se un qualsiasi pacchetto dovrebbe essere rimosso, apt-get immediatamente " - "annulla l'operazione senza chiedere. Voce di configurazione: " - "<literal>APT::Get::Remove</literal>." ++"annulla l'operazione senza chiedere. Voce di configurazione: <literal>APT::" ++"Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:478 @@@ -1584,11 -1028,6 +1524,11 @@@ msgid " "literal> command, removing unused dependency packages. Configuration Item: " "<literal>APT::Get::AutomaticRemove</literal>." msgstr "" +"Se il comando è <literal>install</literal> oppure <literal>remove</literal>, " +"allora questa opzione si comporta come se si eseguisse il comando " +"<literal>autoremove</literal>, rimuovendo i pacchetti di dipendenza non " - "utilizzati. Voce di configurazione: " - "<literal>APT::Get::AutomaticRemove</literal>." ++"utilizzati. Voce di configurazione: <literal>APT::Get::AutomaticRemove</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:485 @@@ -1601,13 -1040,6 +1541,13 @@@ msgid " "corresponding source package. Configuration Item: <literal>APT::Get::Only-" "Source</literal>." msgstr "" - "Ha significato solo per i comandi <literal>source</literal> e <literal" - ">build-dep</literal>. Indica che i nomi dei sorgenti indicati non devono " - "essere mappati usando la tabella dei binari; ciò significa che, se viene " ++"Ha significato solo per i comandi <literal>source</literal> e <literal>build-" ++"dep</literal>. Indica che i nomi dei sorgenti indicati non devono essere " ++"mappati usando la tabella dei binari; ciò significa che, se viene " +"specificata questa opzione, tali comandi accetteranno solamente nomi di " +"pacchetti sorgente come argomento, invece di accettare nomi di pacchetti " +"binari e cercare il pacchetto sorgente corrispondente. Voce di " +"configurazione: <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:496 @@@ -1616,9 -1048,6 +1556,9 @@@ msgid " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" "literal>, and <literal>APT::Get::Tar-Only</literal>." msgstr "" +"Scarica solo il file diff, dsc o tar di un archivio sorgente. Voce di " - "configurazione: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get" - "::Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>." ++"configurazione: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::" ++"Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:502 @@@ -1626,8 -1055,6 +1566,8 @@@ msgid " "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" +"Elabora solo le dipendenze di compilazione dipendenti dall'architettura. " +"Voce di configurazione: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:507 @@@ -1636,24 -1063,21 +1576,24 @@@ msgid " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" "AllowUnauthenticated</literal>." msgstr "" +"Ignora se i pacchetti non possono essere autenticati e non chiedere " +"all'utente cosa fare. È utile per strumenti come pbuilder. Voce di " +"configurazione: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" -msgstr "" +msgstr "File" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" -msgstr "" +msgstr "Vedere anche" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:529 @@@ -1662,16 -1086,13 +1602,16 @@@ msgid " "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" "preferences;, the APT Howto." msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " - "&apt-config;, &apt-secure;, la Guida dell'utente di APT in &guidesdir;, " - "&apt-preferences;, l'APT Howto." ++"&apt-config;, &apt-secure;, la Guida dell'utente di APT in &guidesdir;, &apt-" ++"preferences;, l'APT Howto." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135 #: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74 #: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611 msgid "Diagnostics" -msgstr "" +msgstr "Diagnostica" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:535 @@@ -1679,13 -1100,11 +1619,13 @@@ msgid " "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" +"<command>apt-get</command> restituisce zero in caso di funzionamento normale " +"e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-cache.8.xml:33 msgid "query the APT cache" -msgstr "" +msgstr "interroga la cache di APT" #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:39 @@@ -1695,10 -1114,6 +1635,10 @@@ msgid " "the system but does provide operations to search and generate interesting " "output from the package metadata." msgstr "" +"<command>apt-cache</command> esegue una varietà di operazioni sulla cache " +"dei pacchetti di APT. <command>apt-cache</command> non manipola lo stato del " +"sistema ma fornisce operazioni per fare ricerche e generare risultati " +"interessanti partendo dai metadati dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:49 @@@ -1706,16 -1121,13 +1646,16 @@@ msgid " "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." msgstr "" +"<literal>gencaches</literal> crea la cache dei pacchetti di APT. Ciò viene " +"fatto implicitamente da tutti i comandi che hanno bisogno di tale cache, se " +"essa manca o non è aggiornata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163 #: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206 #: apt-cache.8.xml:224 apt-cache.8.xml:236 msgid "&synopsis-pkg;" -msgstr "" +msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:54 @@@ -1730,15 -1142,6 +1670,15 @@@ msgid " "dependencies need not be. For instance, <command>apt-cache showpkg " "libreadline2</command> would produce output similar to the following:" msgstr "" +"<literal>showpkg</literal> mostra informazioni sui pacchetti elencati nella " +"riga di comando. I restanti argomenti sono nomi di pacchetto. Sono elencate " +"le versioni disponibili e le dipendenze inverse di ogni pacchetto, oltre " +"alle dipendenze dirette per ogni versione. Le dipendenze dirette (normali) " +"sono quei pacchetti da cui dipende il pacchetto in questione; le dipendenze " +"inverse sono quei pacchetti che dipendono dal pacchetto in questione. " +"Quindi, per un pacchetto, devono essere soddisfatte le dipendenze dirette, " +"ma non necessariamente quelle inverse. Per esempio, <command>apt-cache " +"showpkg libreadline2</command> produce un risultato simile al seguente:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-cache.8.xml:66 @@@ -1755,16 -1158,6 +1695,16 @@@ msgid " "2.1-12 - \n" "Reverse Provides: \n" msgstr "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/pinco_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:78 @@@ -1777,13 -1170,6 +1717,13 @@@ msgid " "installed. For the specific meaning of the remainder of the output it is " "best to consult the apt source code." msgstr "" +"Quindi si vede che libreadline2, versione 2.1-12, dipende da libc5 e " +"ncurses3.0 che devono essere installati affinché libreadline2 funzioni. A " +"loro volta, libreadlineg2 e libreadline2-altdev dipendono da libreadline2. " +"Se libreadline2 è installato, devono esserlo anche libc5 e ncurses3.0 (e " - "ldso); non necessariamente devono esserlo libreadlineg2 e " - "libreadline2-altdev. Per il significato specifico del resto dell'output è " - "meglio consultare il codice sorgente di apt." ++"ldso); non necessariamente devono esserlo libreadlineg2 e libreadline2-" ++"altdev. Per il significato specifico del resto dell'output è meglio " ++"consultare il codice sorgente di apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:87 @@@ -1791,8 -1177,6 +1731,8 @@@ msgid " "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" +"<literal>stats</literal> mostra alcune statistiche sulla cache. Non sono " +"previsti ulteriori argomenti. Le statistiche riportate sono:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:90 @@@ -1800,8 -1184,6 +1740,8 @@@ msgid " "<literal>Total package names</literal> is the number of package names found " "in the cache." msgstr "" +"<literal>Totale nomi dei pacchetti</literal> è il numero di nomi di " +"pacchetto trovati nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:94 @@@ -1811,10 -1193,6 +1751,10 @@@ msgid " "between their names and the names used by other packages for them in " "dependencies. The majority of packages fall into this category." msgstr "" +"<literal>Pacchetti normali</literal> è il numero di nomi di pacchetti " +"regolari, normali; sono pacchetti che hanno una corrispondenza uno-a-uno fra " +"il loro nome e il nome usato da altri pacchetti per indicarli nelle loro " +"dipendenze. La maggioranza dei pacchetti ricade in questa categoria." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:100 @@@ -1826,12 -1204,6 +1766,12 @@@ msgid " "several packages provide \"mail-transport-agent\", but there is no package " "named \"mail-transport-agent\"." msgstr "" +"<literal>Pacchetti virtuali puri</literal> è il numero di pacchetti che " +"esistono solo come nome di pacchetto virtuale; vale a dire, i pacchetti " +"«forniscono» solamente il nome del pacchetto virtuale e nessun pacchetto in " +"realtà usa quel nome. Per esempio, «mail-transport-agent» nel sistema Debian " +"è un pacchetto virtuale puro; diversi pacchetti forniscono «mail-transport-" +"agent», ma non c'è alcun pacchetto chiamato «mail-transport-agent»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:108 @@@ -1841,10 -1213,6 +1781,10 @@@ msgid " "Debian system, \"X11-text-viewer\" is a virtual package, but only one " "package, xless, provides \"X11-text-viewer\"." msgstr "" +"<literal>Pacchetti virtuali singoli</literal> è il numero di pacchetti " +"virtuali per cui esiste solo un pacchetto che li fornisce. Per esempio, nel " +"sistema Debian «X11-text-viewer» è un pacchetto virtuale, ma solo un " +"pacchetto, xless, fornisce «X11-text-viewer»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:114 @@@ -1854,10 -1222,6 +1794,10 @@@ msgid " "as the package name. For instance, in the Debian system, \"debconf\" is both " "an actual package, and provided by the debconf-tiny package." msgstr "" +"<literal>Pacchetti virtuali misti</literal> è il numero di pacchetti che " +"forniscono un particolare pacchetto virtuale oppure hanno il nome uguale a " +"quello del pacchetto virtuale. Per esempio, nel sistema Debian «debconf» è " +"sia un pacchetto vero e proprio, sia è fornito dal pacchetto debconf-tiny." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:121 @@@ -1868,12 -1232,6 +1808,12 @@@ msgid " "package (real or virtual) has been dropped from the distribution. Usually " "they are referenced from Conflicts or Breaks statements." msgstr "" +"<literal>Mancanti</literal> è il numero di nomi di pacchetto che vengono " +"menzionati in una dipendenza ma non sono forniti da alcun pacchetto. I " +"pacchetti mancanti possono essere un segno che non si ha accesso a una " +"distribuzione completa o che un pacchetto (reale o virtuale) è stato " +"eliminato da una distribuzione. Di solito vengono menzionati da clausole " +"Conflicts o Breaks." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:128 @@@ -1884,11 -1242,6 +1824,11 @@@ msgid " "instance, \"stable\" and \"unstable\"), this value can be considerably " "larger than the number of total package names." msgstr "" +"<literal>Totale versioni distinte</literal> è il numero di versioni di " +"pacchetti trovate nella cache; questo valore pertanto è almeno pari al " +"numero dei nomi totali di pacchetto. Se si ha accesso a più di una " +"distribuzione (ad esempio sia «stable» che «unstable»), questo valore può " +"essere decisamente più grande del numero dei nomi totali di pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:135 @@@ -1896,8 -1249,6 +1836,8 @@@ msgid " "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" +"<literal>Totale dipendenze</literal> è il numero di relazioni di dipendenza " +"dichiarate da tutti i pacchetti nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:143 @@@ -1906,10 -1257,6 +1846,10 @@@ msgid " "match the given package names. All versions are shown, as well as all " "records that declare the name to be a binary package." msgstr "" +"<literal>showsrc</literal> mostra tutti i pacchetti sorgente che " +"corrispondono ai nomi dei pacchetti specificati. Vengono mostrate tutte le " +"versioni, così come tutti i record che dichiarano che il nome è quello di un " +"pacchetto binario." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:149 @@@ -1917,8 -1264,6 +1857,8 @@@ msgid " "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." msgstr "" +"<literal>dump</literal> mostra un breve elenco di tutti i pacchetti nella " +"cache. Serve soprattutto a scopo di debug." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:154 @@@ -1926,8 -1271,6 +1866,8 @@@ msgid " "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" +"<literal>dumpavail</literal> stampa una lista di pacchetti disponibili su " +"stdout. Questa è adatta all'uso con &dpkg; ed è usata dal metodo &dselect;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:159 @@@ -1935,8 -1278,6 +1875,8 @@@ msgid " "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" +"<literal>unmet</literal> mostra un riassunto di tutte le dipendenze non " +"soddisfatte nella cache dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:164 @@@ -1944,13 -1285,11 +1884,13 @@@ msgid " "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." msgstr "" +"<literal>show</literal> esegue una funzione simile a <command>dpkg --print-" +"avail</command>; mostra i record dei pacchetti per i pacchetti specificati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-cache.8.xml:169 msgid "&synopsis-regex;" -msgstr "" +msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:170 @@@ -1964,16 -1303,6 +1904,16 @@@ msgid " "package, and if <option>--names-only</option> is given then the long " "description is not searched, only the package name is." msgstr "" +"<literal>search</literal> esegue una ricerca completa a tutto testo in tutti " +"gli elenchi di pacchetti disponibili cercando il modello di espressione " +"regolare POSIX specificato; vedere ®ex;. Cerca le occorrenze " +"dell'espressione regolare nei nomi e nelle descrizioni dei pacchetti e " +"stampa il nome e la descrizione breve dei pacchetti, inclusi quelli " +"virtuali. Se viene fornita l'opzione <option>--full</option>, per ciascun " +"pacchetto che soddisfa la ricerca viene prodotto un output identico a quello " - "di <literal>show</literal>; se viene fornita l'opzione <option>--names-" - "only</option> la ricerca viene fatta solo sul nome del pacchetto e non sulla " ++"di <literal>show</literal>; se viene fornita l'opzione <option>--names-only</" ++"option> la ricerca viene fatta solo sul nome del pacchetto e non sulla " +"descrizione lunga." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:181 @@@ -1981,8 -1310,6 +1921,8 @@@ msgid " "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" +"È possibile usare argomenti separati per specificare più modelli di ricerca " +"che vengono combinati con un AND." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:186 @@@ -1990,9 -1317,6 +1930,9 @@@ msgid " "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" +"<literal>depends</literal> mostra un elenco con ogni dipendenza di un " +"pacchetto e tutti i possibili altri pacchetti che possono soddisfare quella " +"dipendenza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:191 @@@ -2000,13 -1324,11 +1940,13 @@@ msgid " "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" +"<literal>rdepends</literal> mostra un elenco di tutte le dipendenze inverse " +"di un pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:195 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" -msgstr "" +msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:196 @@@ -2017,11 -1339,6 +1957,11 @@@ msgid " "extremely quickly. This command is best used with the <option>--generate</" "option> option." msgstr "" +"Questo comando stampa il nome di tutti i pacchetti che APT conosce. " +"L'argomento opzionale è un prefisso per filtrare l'elenco dei nomi. Il " +"risultato è adatto ad essere usato in una funzione di shell di completamento " +"automatico tramite Tab e viene generato molto rapidamente. Questo comando " +"viene usato al meglio con l'opzione <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:201 @@@ -2030,9 -1347,6 +1970,9 @@@ msgid " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" +"Notare che un pacchetto che APT conosce non è necessariamente disponibile " +"per essere scaricato, installabile o installato; ad esempio, i pacchetti " +"virtuali sono anch'essi compresi nell'elenco generato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:207 @@@ -2046,15 -1360,6 +1986,15 @@@ msgid " "the packages listed on the command line, set the <literal>APT::Cache::" "GivenOnly</literal> option." msgstr "" +"<literal>dotty</literal> accetta un elenco di pacchetti dalla riga di " +"comando e genera un output adatto all'uso da parte di dotty del pacchetto " - "<ulink " - "url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink>. Il " - "risultato sarà un insieme di nodi e linee che rappresentano le relazioni fra " - "i pacchetti. In modo predefinito dai pacchetti dati si risalirà a tutti i " - "pacchetti delle dipendenze; ciò può produrre un grafo molto grande. Per " - "limitare il risultato ai soli pacchetti elencati sulla riga di comando, " - "impostare l'opzione <literal>APT::Cache::GivenOnly</literal>." ++"<ulink url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</" ++"ulink>. Il risultato sarà un insieme di nodi e linee che rappresentano le " ++"relazioni fra i pacchetti. In modo predefinito dai pacchetti dati si " ++"risalirà a tutti i pacchetti delle dipendenze; ciò può produrre un grafo " ++"molto grande. Per limitare il risultato ai soli pacchetti elencati sulla " ++"riga di comando, impostare l'opzione <literal>APT::Cache::GivenOnly</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:216 @@@ -2064,18 -1369,11 +2004,18 @@@ msgid " "missing packages are hexagons. Orange boxes mean recursion was stopped (leaf " "packages), blue lines are pre-depends, green lines are conflicts." msgstr "" +"I nodi risultanti avranno diverse forme: i pacchetti normali sono " +"rettangoli, i pacchetti virtuali puri sono triangoli, i pacchetti virtuali " +"misti sono rombi, i pacchetti mancanti sono esagoni. I rettangoli arancioni " +"indicano che la ricorsione è stata arrestata (pacchetti foglia), le linee " +"blu sono pre-dipendenze, le linee verdi sono conflitti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:221 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" +"Attenzione: dotty non può creare i grafi degli insiemi più grandi di " +"pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:225 @@@ -2083,14 -1381,11 +2023,14 @@@ msgid " "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." msgstr "" - "Stessa cosa di <literal>dotty</literal>, ma per xvcg dello <ulink " - "url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">strumento " - "VCG</ulink>." ++"Stessa cosa di <literal>dotty</literal>, ma per xvcg dello <ulink url=" ++"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">strumento VCG</" ++"ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:229 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" -msgstr "" +msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:230 @@@ -2100,10 -1395,6 +2040,10 @@@ msgid " "source. Otherwise it prints out detailed information about the priority " "selection of the named package." msgstr "" +"<literal>policy</literal> è pensato per aiutare a fare il debug di problemi " +"relativi al file delle preferenze. Senza argomenti stampa le priorità di " +"ciascuna fonte. Altrimenti stampa informazioni dettagliate sulla selezione " +"di priorità del pacchetto indicato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:237 @@@ -2116,13 -1407,6 +2056,13 @@@ msgid " "architecture for which APT has retrieved package lists (<literal>APT::" "Architecture</literal>)." msgstr "" +"Il comando <literal>madison</literal> di <literal>apt-cache</literal> cerca " +"di imitare il formato di uscita e un sottoinsieme delle funzionalità di " +"<literal>madison</literal>, lo strumento di gestione dell'archivio di " +"Debian. Mostra le versioni disponibili di un pacchetto in forma tabellare. " +"Contrariamente al <literal>madison</literal> originale, può mostrare " +"informazioni solamente per l'architettura per cui APT ha recuperato gli " +"elenchi dei pacchetti (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:253 @@@ -2131,9 -1415,6 +2071,9 @@@ msgid " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" "pkgcache</literal>." msgstr "" +"Seleziona il file in cui memorizzare la cache dei pacchetti. Questa è la " +"cache primaria usata da tutte le operazioni. Voce di configurazione: " +"<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:259 @@@ -2144,12 -1425,6 +2084,12 @@@ msgid " "cache is used to avoid reparsing all of the package files. Configuration " "Item: <literal>Dir::Cache::srcpkgcache</literal>." msgstr "" +"Seleziona il file in cui memorizzare la cache dei sorgenti. Questa è usata " +"solo da <literal>gencaches</literal> e memorizza una versione analizzata " +"delle informazioni sui pacchetti provenienti da fonti remote. Al momento " +"della costruzione della cache dei pacchetti, la cache dei sorgenti viene " +"usata per evitare di rileggere tutti i file dei pacchetti. Voce di " +"configurazione: <literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:267 @@@ -2159,12 -1434,6 +2099,11 @@@ msgid " "<option>-q=#</option> to set the quietness level, overriding the " "configuration file. Configuration Item: <literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto per un file di registro, omettendo gli " +"indicatori di avanzamento. Ulteriori q produrranno un risultato ancor più " - "silenzioso, fino a un massimo di 2. È anche possibile usare " - "<option>-q=n</option> per impostare il livello di silenziosità a n, " - "scavalcando il file di configurazione. Voce di configurazione: " - "<literal>quiet</literal>." ++"silenzioso, fino a un massimo di 2. È anche possibile usare <option>-q=n</" ++"option> per impostare il livello di silenziosità a n, scavalcando il file di " ++"configurazione. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:274 @@@ -2173,10 -1442,6 +2112,10 @@@ msgid " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " "be printed. Configuration Item: <literal>APT::Cache::Important</literal>." msgstr "" +"Stampa solo le dipendenze importanti; da usarsi con <literal>unmet</literal> " +"e <literal>depends</literal>. Fa sì che vengano stampate solo le relazioni " - "Depends e Pre-Depends. Voce di configurazione: " - "<literal>APT::Cache::Important</literal>." ++"Depends e Pre-Depends. Voce di configurazione: <literal>APT::Cache::" ++"Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:288 @@@ -2187,11 -1452,6 +2126,11 @@@ msgid " "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::" "Cache::ShowRecommends</literal>." msgstr "" +"In modo predefinito <literal>depends</literal> e <literal>rdepends</literal> " +"stampano tutte le dipendenze. Ciò può essere modificato con queste opzioni " - "che omettono il tipo specificato di dipendenza. Voce di configurazione <lite" - "ral>APT::Cache::Show<replaceable>TipoDipendenza</replaceable></literal>, ad " - "es. <literal>APT::Cache::ShowRecommends</literal>." ++"che omettono il tipo specificato di dipendenza. Voce di configurazione " ++"<literal>APT::Cache::Show<replaceable>TipoDipendenza</replaceable></" ++"literal>, ad es. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:295 @@@ -2199,8 -1459,6 +2138,8 @@@ msgid " "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" +"Stampa l'intero record dei pacchetti durante la ricerca. Voce di " +"configurazione: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:300 @@@ -2212,13 -1470,6 +2151,13 @@@ msgid " "applicable to the <literal>show</literal> command. Configuration Item: " "<literal>APT::Cache::AllVersions</literal>." msgstr "" +"Stampa i record completi per tutte le versioni disponibili. Questa è " +"l'impostazione predefinita; per disattivarla, usare <option>--no-all-" +"versions</option>. Se si specifica <option>--no-all-versions</option>, verrà " +"visualizzata solo la versione candidata (quella che sarebbe scelta per " +"l'installazione). Questa opzione è applicabile solo al comando " - "<literal>show</literal>. Voce di configurazione: " - "<literal>APT::Cache::AllVersions</literal>." ++"<literal>show</literal>. Voce di configurazione: <literal>APT::Cache::" ++"AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:309 @@@ -2227,10 -1478,6 +2166,10 @@@ msgid " "it is. This is the default; to turn it off, use <option>--no-generate</" "option>. Configuration Item: <literal>APT::Cache::Generate</literal>." msgstr "" +"Esegui la rigenerazione automatica della cache dei pachetti, piuttosto che " +"usare la cache così com'è. Questa è l'impostazione predefinita; per " +"disattivarla, usare <option>--no-generate</option>. Voce di configurazione: " +"<literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:315 @@@ -2238,8 -1485,6 +2177,8 @@@ msgid " "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." msgstr "" +"Cerca soltanto nei nomi dei pacchetti, non nelle descrizioni lunghe. Voce di " +"configurazione: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:320 @@@ -2248,9 -1493,6 +2187,9 @@@ msgid " "and missing dependencies. Configuration Item: <literal>APT::Cache::" "AllNames</literal>." msgstr "" +"Fai sì che <literal>pkgnames</literal> stampi tutti i nomi, inclusi i " +"pacchetti virtuali e le dipendenze mancanti. Voce di configurazione: " +"<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:326 @@@ -2259,9 -1501,6 +2198,9 @@@ msgid " "that all packages mentioned are printed once. Configuration Item: " "<literal>APT::Cache::RecurseDepends</literal>." msgstr "" +"Rendi ricorsivi <literal>depends</literal> e <literal>rdepends</literal> in " +"modo che tutti i pacchetti menzionati siano stampati una sola volta. Voce di " +"configurazione: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:333 @@@ -2270,14 -1509,11 +2209,14 @@@ msgid " "literal> to packages which are currently installed. Configuration Item: " "<literal>APT::Cache::Installed</literal>." msgstr "" +"Limita l'output di <literal>depends</literal> e <literal>rdepends</literal> " - "ai pacchetti attualmente installati. Voce di configurazione: " - "<literal>APT::Cache::Installed</literal>." ++"ai pacchetti attualmente installati. Voce di configurazione: <literal>APT::" ++"Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:351 msgid "&apt-conf;, &sources-list;, &apt-get;" -msgstr "" +msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:356 @@@ -2285,13 -1521,11 +2224,13 @@@ msgid " "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-cache</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-key.8.xml:32 msgid "APT key management utility" -msgstr "" +msgstr "strumento APT per la gestione delle chiavi" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:39 @@@ -2300,14 -1534,11 +2239,14 @@@ msgid " "authenticate packages. Packages which have been authenticated using these " "keys will be considered trusted." msgstr "" +"<command>apt-key</command> viene usato per gestire l'elenco delle chiavi " +"usate da apt per autenticare i pacchetti. I pacchetti che sono stati " +"autenticati usando queste chiavi verranno considerati fidati." #. type: Content of: <refentry><refsect1><title> #: apt-key.8.xml:45 msgid "Commands" -msgstr "" +msgstr "Comandi" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:50 @@@ -2316,34 -1547,31 +2255,35 @@@ msgid " "filename given with the parameter &synopsis-param-filename; or if the " "filename is <literal>-</literal> from standard input." msgstr "" +"Aggiunge una nuova chiave all'elenco delle chiavi fidate. La chiave viene " +"letta dal file specificato con il parametro &synopsis-param-filename; o, se " +"il nome file è <literal>-</literal>, dallo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:63 msgid "Remove a key from the list of trusted keys." -msgstr "" +msgstr "Rimuove una chiave dall'elenco delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:74 msgid "Output the key &synopsis-param-keyid; to standard output." - msgstr "Visualizza sullo standard output l'&synopsis-param-keyid; della chiave." + msgstr "" ++"Visualizza sullo standard output l'&synopsis-param-keyid; della chiave." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:85 msgid "Output all trusted keys to standard output." -msgstr "" +msgstr "Visualizza sullo standard output tutte le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:96 msgid "List trusted keys." -msgstr "" +msgstr "Elenca le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:107 msgid "List fingerprints of trusted keys." -msgstr "" +msgstr "Elenca le impronte digitali delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:118 @@@ -2351,8 -1579,6 +2291,8 @@@ msgid " "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" +"Passa opzioni avanzate a gpg. Con adv --recv-key è possibile scaricare la " +"chiave pubblica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:130 @@@ -2363,11 -1589,6 +2303,11 @@@ msgid " "distribution, e.g. the <literal>debian-archive-keyring</literal> package in " "Debian." msgstr "" +"Aggiorna il portachiavi locale con il portachiavi dell'archivio e rimuove " +"dal portachiavi locale le chiavi di archivio che non sono più valide. Il " - "portachiavi degli archivi è fornito nel pacchetto <literal>archive-" - "keyring</literal> delle diverse distribuzioni, ad esempio il pacchetto " ++"portachiavi degli archivi è fornito nel pacchetto <literal>archive-keyring</" ++"literal> delle diverse distribuzioni, ad esempio il pacchetto " +"<literal>debian-archive-keyring</literal> in Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:144 @@@ -2379,18 -1600,11 +2319,18 @@@ msgid " "APT in Debian does not support this command, relying on <command>update</" "command> instead, but Ubuntu's APT does." msgstr "" +"Effettua un aggiornamento funzionando in modo simile al comando " +"<command>update</command> descritto prima, ma ottiene invece il portachiavi " +"degli archivi da un URI e lo convalida usando una chiave master. Ciò " +"richiede che &wget; sia installato, e una versione di APT configurata per " +"avere un server da cui scaricare e un portachiavi master per la convalida. " +"APT in Debian non supporta questo comando, ma fa affidamento sul comando " +"<command>update</command>; APT in Ubuntu invece lo fa." #. type: Content of: <refentry><refsect1><title> #: apt-key.8.xml:160 apt-cdrom.8.xml:80 msgid "Options" -msgstr "" +msgstr "Opzioni" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:161 @@@ -2398,8 -1612,6 +2338,8 @@@ msgid " "Note that options need to be defined before the commands described in the " "previous section." msgstr "" +"Notare che le opzioni devono essere definite prima dei comandi descritti " +"nella sezione precedente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:164 @@@ -2411,54 -1623,47 +2351,55 @@@ msgid " "filename> is the primary keyring which means that e.g. new keys are added to " "this one." msgstr "" +"Con questa opzione è possibile specificare un particolare file portachiavi " +"su cui deve operare il comando. Il comportamento predefinito esegue i " +"comandi sul file <filename>trusted.gpg</filename>, così come su tutte le " - "parti nella directory <filename>trusted.gpg.d</filename>; " - "<filename>trusted.gpg</filename> è però il portachiavi primario il che " - "significa, ad esempio, che le nuove chiavi sono aggiunte ad esso." ++"parti nella directory <filename>trusted.gpg.d</filename>; <filename>trusted." ++"gpg</filename> è però il portachiavi primario il che significa, ad esempio, " ++"che le nuove chiavi sono aggiunte ad esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:179 msgid "<filename>/etc/apt/trustdb.gpg</filename>" -msgstr "" +msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:180 msgid "Local trust database of archive keys." -msgstr "" +msgstr "Database locale di fiducia delle chiavi archiviate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:183 msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" -msgstr "" +msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:184 msgid "Keyring of Debian archive trusted keys." -msgstr "" +msgstr "Portachiavi delle chiavi fidate degli archivi Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:187 msgid "" "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:188 msgid "Keyring of Debian archive removed trusted keys." -msgstr "" +msgstr "Portachiavi delle chiavi fidate rimosse degli archivi Debian." #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:197 msgid "&apt-get;, &apt-secure;" -msgstr "" +msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-mark.8.xml:33 msgid "mark/unmark a package as being automatically-installed" - msgstr "mette/toglie il contrassegno di automaticamente installato ai pacchetti" + msgstr "" ++"mette/toglie il contrassegno di automaticamente installato ai pacchetti" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:39 @@@ -2466,8 -1671,6 +2407,8 @@@ msgid " "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" +"<command>apt-mark</command> cambia il contrassegno di un pacchetto che " +"indica se è stato installato automaticamente." #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:43 @@@ -2478,12 -1681,6 +2419,12 @@@ msgid " "are no longer depended on by any manually installed packages, they will be " "removed by e.g. <command>apt-get</command> or <command>aptitude</command>." msgstr "" +"Quando viene richiesta l'installazione di un pacchetto e ciò fa sì che altri " - "pacchetti vengano installati per soddisfare le sue dipendenze, queste " - "ultime sono contrassegnate come installate automaticamente. Una volta che " - "non c'è più alcun pacchetto installato manualmente che dipende da questi " - "pacchetti installati automaticamente, essi vengono rimossi, ad esempio da " - "<command>apt-get</command> o <command>aptitude</command>." ++"pacchetti vengano installati per soddisfare le sue dipendenze, queste ultime " ++"sono contrassegnate come installate automaticamente. Una volta che non c'è " ++"più alcun pacchetto installato manualmente che dipende da questi pacchetti " ++"installati automaticamente, essi vengono rimossi, ad esempio da <command>apt-" ++"get</command> o <command>aptitude</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:52 @@@ -2492,10 -1689,6 +2433,10 @@@ msgid " "installed, which will cause the package to be removed when no more manually " "installed packages depend on this package." msgstr "" +"<literal>auto</literal> viene usato per contrassegnare un pacchetto come " +"installato automaticamente, il che fa sì che il pacchetto venga rimosso " +"quando non c'è più alcun pacchetto installato manualmente che dipende da " +"esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:60 @@@ -2504,9 -1697,6 +2445,9 @@@ msgid " "installed, which will prevent the package from being automatically removed " "if no other packages depend on it." msgstr "" +"<literal>manual</literal> viene usato per contrassegnare un pacchetto come " +"installato manualmente, il che impedisce che un pacchetto venga rimosso " +"automaticamente se nessun altro dipende da esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:68 @@@ -2517,11 -1707,6 +2458,11 @@@ msgid " "selections</command> and the state is therefore maintained by &dpkg; and not " "affected by the <option>--file</option> option." msgstr "" +"<literal>hold</literal> viene usato per contrassegnare un pacchetto come " +"bloccato, il che impedisce che il pacchetto venga automaticamente " +"installato, aggiornato o rimosso. Il comando è solamente un wrapper per " +"<command>dpkg --set-selections</command> e lo stato è pertanto mantenuto da " +"&dpkg; e non è influenzato dall'opzione <option>--file</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:78 @@@ -2529,8 -1714,6 +2470,8 @@@ msgid " "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." msgstr "" +"<literal>unhold</literal> viene usato per annullare un blocco impostato in " +"precedenza, per permettere nuovamente tutte le azioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:84 @@@ -2540,11 -1723,6 +2481,11 @@@ msgid " "installed packages will be listed if no package is given. If packages are " "given only those which are automatically installed will be shown." msgstr "" +"<literal>showauto</literal> viene usato per stampare un elenco di pacchetti " +"installati automaticamente, ciascuno su una riga. Se non viene specificato " +"alcun pacchetto, vengono elencati tutti i pacchetti installati " +"automaticamente. Se vengono specificati dei pacchetti, verranno mostrati " +"solo quelli automaticamente installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:92 @@@ -2553,9 -1731,6 +2494,9 @@@ msgid " "<literal>showauto</literal> except that it will print a list of manually " "installed packages instead." msgstr "" +"<literal>showmanual</literal> può essere usato nello stesso modo di " +"<literal>showauto</literal>, tranne per il fatto che stampa invece un elenco " +"dei pacchetti installati manualmente" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:99 @@@ -2563,8 -1738,6 +2504,8 @@@ msgid " "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." msgstr "" +"<literal>showhold</literal> viene usato per stampare un elenco di pacchetti " +"bloccati in modo uguale a ciò che fanno gli altri comandi «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:115 @@@ -2574,10 -1747,6 +2515,10 @@@ msgid " "<filename>extended_status</filename> in the directory defined by the " "Configuration Item: <literal>Dir::State</literal>." msgstr "" +"Legge/Scrive le statistiche sui pacchetti dal file specificato con il " +"parametro &synopsis-param-filename; invece che dalla posizione predefinita " +"che è <filename>extended_status</filename> nella directory definita dalla " +"voce di configurazione <literal>Dir::State</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:136 @@@ -2585,13 -1754,11 +2526,13 @@@ msgid " "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" +"<command>apt-mark</command> restituisce zero in caso di funzionamento " +"normale e un valore diverso da zero in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-secure.8.xml:47 msgid "Archive authentication support for APT" -msgstr "" +msgstr "supporto per l'autenticazione degli archivi per APT" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:52 @@@ -2601,10 -1768,6 +2542,10 @@@ msgid " "packages in the archive can't be modified by people who have no access to " "the Release file signing key." msgstr "" +"A partire dalla versione 0.6, <command>apt</command> contiene del codice che " +"controlla le firme dei file Release per tutti gli archivi. Ciò assicura che " +"i pacchetti in quegli archivi non possano essere modificati da persone che " +"non hanno accesso alla chiave di firma dei file Release." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:60 @@@ -2615,12 -1778,6 +2556,12 @@@ msgid " "currently only warn for unsigned archives; future releases might force all " "sources to be verified before downloading packages from them." msgstr "" +"Se un pacchetto proviene da un archivio senza una firma, o con una firma per " +"la quale apt non ha una chiave, tale pacchetto viene considerato non fidato " - "e quando lo si installa si ottiene un importante avvertimento. <command" - ">apt-get</command> attualmente avverte solamente in caso di archivi non " - "firmati; le versioni future potrebbero forzare la verifica di tutte le fonti " - "prima di scaricare pacchetti da esse." ++"e quando lo si installa si ottiene un importante avvertimento. <command>apt-" ++"get</command> attualmente avverte solamente in caso di archivi non firmati; " ++"le versioni future potrebbero forzare la verifica di tutte le fonti prima di " ++"scaricare pacchetti da esse." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:69 @@@ -2628,13 -1785,11 +2569,13 @@@ msgid " "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" +"I frontend per i pacchetti &apt-get;, &aptitude; e &synaptic; supportano " +"questa nuova funzionalità di autenticazione." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:74 msgid "Trusted archives" -msgstr "" +msgstr "Archivi fidati" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:77 @@@ -2646,13 -1801,6 +2587,13 @@@ msgid " "archive maintainer's responsibility to ensure that the archive's integrity " "is preserved." msgstr "" +"La catena di fiducia da un archivio apt all'utente finale è composta di vari " +"passaggi intermedi. <command>apt-secure</command> è l'ultimo della catena; " +"il fatto che si abbia fiducia in un archivio non significa che si abbia " +"fiducia che i suoi pacchetti non contengano codice malevolo, ma significa " +"che si ha fiducia nel manutentore dell'archivio. È responsabilità del " +"manutentore dell'archivio assicurare che sia preservata l'integrità " +"dell'archivio." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:85 @@@ -2662,10 -1810,6 +2603,10 @@@ msgid " "<command>debsign</command> (provided in the debsig-verify and devscripts " "packages respectively)." msgstr "" +"apt-secure non controlla le firme a livello di pacchetto. Se si desiderano " +"strumenti per farlo, si possono guardare <command>debsig-verify</command> e " +"<command>debsign</command> (forniti rispettivamente nei pacchetti debsig-" +"verify e devscripts)." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:92 @@@ -2677,13 -1821,6 +2618,13 @@@ msgid " "keys are signed by other maintainers following pre-established procedures to " "ensure the identity of the key holder." msgstr "" +"La catena di fiducia in Debian ha inizio quando un manutentore carica un " +"nuovo pacchetto o una nuova versione di un pacchetto nell'archivio Debian. " +"Per poter diventare effettivo, questo caricamento deve essere firmato con " +"una chiave contenuta nel portachiavi dei manutentori Debian (disponibile nel " +"pacchetto debian-keyring). Le chiavi dei manutentori sono firmate da altri " +"manutentori seguendo delle procedure prestabilite, per assicurare l'identità " +"del proprietario della chiave." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:102 @@@ -2697,14 -1834,6 +2638,14 @@@ msgid " "are in the Debian archive keyring available in the <package>debian-archive-" "keyring</package> package." msgstr "" +"Una volta che il pacchetto caricato è verificato e incluso nell'archivio, la " +"firma del manutentore viene rimossa e i codici di controllo del pacchetto " +"vengono calcolati e messi nel file Packages. Vengono quindi calcolati i " +"codici di controllo di tutti i file Packages e vengono messi nel file " +"Release. Il file Release viene poi firmato con la chiave dell'archivio per " +"questo rilascio di Debian e viene distribuito insieme ai pacchetti e ai file " +"Packages nei mirror Debian. Le chiavi sono nel portachiavi degli archivi " +"Debian, disponibile nel pacchetto <package>debian-archive-keyring</package>." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:113 @@@ -2713,10 -1842,6 +2654,10 @@@ msgid " "a package from it and compare it with the checksum of the package they " "downloaded by hand - or rely on APT doing this automatically." msgstr "" +"Gli utenti finali possono controllare la firma del file Release, estrarre da " +"esso il codice di controllo di un pacchetto e confrontarlo con il codice di " - "controllo del pacchetto che hanno scaricato a mano, oppure possono " - "affidarsi ad APT che lo fa automaticamente." ++"controllo del pacchetto che hanno scaricato a mano, oppure possono affidarsi " ++"ad APT che lo fa automaticamente." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:118 @@@ -2724,8 -1849,6 +2665,8 @@@ msgid " "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" +"Notare che questo è diverso dal controllare le firme per ciascun pacchetto. " +"È progettato per prevenire due possibili attacchi:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:123 @@@ -2736,11 -1859,6 +2677,11 @@@ msgid " "network element (router, switch, etc.) or by redirecting traffic to a rogue " "server (through ARP or DNS spoofing attacks)." msgstr "" +"<literal>Attacchi di rete «man in the middle»</literal>. Senza il controllo " +"delle firme, soggetti malevoli possono introdursi nel processo di " +"scaricamento dei pacchetti e fornire software pericoloso controllando un " +"elemento di rete (router, switch, ecc.) oppure ridirigendo il traffico ad un " +"server cattivo (attraverso attacchi di falsificazione di DNS e ARP)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:131 @@@ -2750,10 -1868,6 +2691,10 @@@ msgid " "propagate malicious software to all users downloading packages from that " "host." msgstr "" +"<literal>Compromissione della rete dei mirror</literal>. Senza il controllo " +"delle firme, soggetti malevoli possono compromettere un host mirror e " +"modificare i file su di esso per propagare il software pericoloso a tutti " +"gli utenti che scaricano i pacchetti da quell'host." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:138 @@@ -2763,15 -1877,11 +2704,15 @@@ msgid " "sign the Release files. In any case, this mechanism can complement a per-" "package signature." msgstr "" +"Tuttavia non difende dalle compromissioni del server principale Debian " +"stesso (che firma i pacchetti) o dalla compromissione della chiave usata per " - "firmare i file Release. In ogni caso, questo meccanismo può complementare " - "le firme a livello di singolo pacchetto." ++"firmare i file Release. In ogni caso, questo meccanismo può complementare le " ++"firme a livello di singolo pacchetto." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:144 msgid "User configuration" -msgstr "" +msgstr "Configurazione utente" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:146 @@@ -2781,11 -1891,6 +2722,11 @@@ msgid " "this release will automatically contain the default Debian archive signing " "keys used in the Debian package repositories." msgstr "" +"<command>apt-key</command> è il programma che gestisce l'elenco delle chiavi " +"usate da apt. Può essere usato per aggiungere o rimuovere chiavi, anche se " +"un'installazione di questo rilascio contiene automaticamente le chiavi " +"predefinite per la firma degli archivi Debian usate nei repository dei " +"pacchetti Debian." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:153 @@@ -2797,17 -1902,11 +2738,17 @@@ msgid " "filename> or <filename>Release.gpg</filename> files from the archives you " "have configured." msgstr "" +"Per aggiungere una nuova chiave, è necessario prima scaricarla (ci si " +"dovrebbe assicurare di usare un canale di comunicazione fidato quando la si " +"recupera), aggiungerla con <command>apt-key</command> e poi eseguire " +"<command>apt-get update</command>, in modo che apt possa scaricare e " - "verificare i file <filename>InRelease</filename> o " - "<filename>Release.gpg</filename> dagli archivi che sono configurati." ++"verificare i file <filename>InRelease</filename> o <filename>Release.gpg</" ++"filename> dagli archivi che sono configurati." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:162 msgid "Archive configuration" -msgstr "" +msgstr "Configurazione dell'archivio" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:164 @@@ -2815,8 -1914,6 +2756,8 @@@ msgid " "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" +"Se si desiderano fornire firme per un archivio di cui si è il manutentore, " +"si deve:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:169 @@@ -2825,9 -1922,6 +2766,9 @@@ msgid " "already. You can do this by running <command>apt-ftparchive release</" "command> (provided in apt-utils)." msgstr "" +"<emphasis>Creare un file Release di livello più alto</emphasis>, se non " - "esiste già. Lo si può fare eseguendo <command>apt-ftparchive " - "release</command> (fornito in apt-utils)." ++"esiste già. Lo si può fare eseguendo <command>apt-ftparchive release</" ++"command> (fornito in apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:174 @@@ -2836,9 -1930,6 +2777,9 @@@ msgid " "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." "gpg Release</command>." msgstr "" - "<emphasis>Firmarlo</emphasis>. Lo si può fare eseguendo <command>gpg " - "--clearsign -o InRelease Release</command> e <command>gpg -abs -o " - "Release.gpg Release</command>." ++"<emphasis>Firmarlo</emphasis>. Lo si può fare eseguendo <command>gpg --" ++"clearsign -o InRelease Release</command> e <command>gpg -abs -o Release.gpg " ++"Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:178 @@@ -2847,9 -1938,6 +2788,9 @@@ msgid " "know what key they need to import in order to authenticate the files in the " "archive." msgstr "" +"<emphasis>Pubblicare l'impronta digitale della chiave</emphasis>, in questo " +"modo gli utenti sapranno quale chiave devono importare per poter autenticare " +"i file nell'archivio." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:185 @@@ -2858,9 -1946,6 +2799,9 @@@ msgid " "removed) the archive maintainer has to follow the first two steps outlined " "above." msgstr "" +"Ogni volta che i contenuti dell'archivio cambiano (sono aggiunti o rimossi " +"nuovi pacchetti), il manutentore dell'archivio deve compiere nuovamente i " +"primi due passi descritti sopra." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:193 @@@ -2868,8 -1953,6 +2809,8 @@@ msgid " "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign; &debsig-verify;, &gpg;" msgstr "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:197 @@@ -2881,17 -1964,11 +2822,17 @@@ msgid " "cryptnet.net/fdp/crypto/strong_distro.html\" >Strong Distribution HOWTO</" "ulink> by V. Alex Brennen." msgstr "" +"Per maggiori informazioni sui concetti alla base di questo sistema, si può " +"leggere il capitolo <ulink url=\"http://www.debian.org/doc/manuals/securing-" +"debian-howto/ch7\">Debian Security Infrastructure</ulink> del manuale " - "Securing Debian (disponibile anche nel pacchetto harden-doc) e il <ulink " - "url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " ++"Securing Debian (disponibile anche nel pacchetto harden-doc) e il <ulink url=" ++"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> di V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:210 msgid "Manpage Authors" -msgstr "" +msgstr "Autori della pagina di manuale" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:212 @@@ -2899,13 -1976,11 +2840,13 @@@ msgid " "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" +"Questa pagina di manuale è basata sul lavoro di Javier Fernández-Sanguino " +"Peña, Isaac Jones, Colin Walters, Florian Weimer e Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-cdrom.8.xml:32 msgid "APT CD-ROM management utility" -msgstr "" +msgstr "strumento APT per la gestione dei CD-ROM" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:38 @@@ -2915,10 -1990,6 +2856,10 @@@ msgid " "the structure of the disc as well as correcting for several possible mis-" "burns and verifying the index files." msgstr "" +"<command>apt-cdrom</command> è usato per aggiungere un nuovo CD-ROM alla " +"lista delle fonti disponibili per APT. <command>apt-cdrom</command> si " +"prende cura di determinare la struttura del disco e anche di correggere " +"possibili errori di masterizzazione e di verificare i file indice." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:45 @@@ -2927,10 -1998,6 +2868,10 @@@ msgid " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " "must be inserted and scanned separately to account for possible mis-burns." msgstr "" - "Per aggiungere dei CD al sistema APT è necessario usare <command>apt-" - "cdrom</command>, in quanto ciò non può essere fatto manualmente. Inoltre " - "ogni disco in un insieme di più CD deve essere inserito e scansionato " - "separatamente per tenere conto di possibili errori di masterizzazione." ++"Per aggiungere dei CD al sistema APT è necessario usare <command>apt-cdrom</" ++"command>, in quanto ciò non può essere fatto manualmente. Inoltre ogni disco " ++"in un insieme di più CD deve essere inserito e scansionato separatamente per " ++"tenere conto di possibili errori di masterizzazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:56 @@@ -2941,11 -2008,6 +2882,11 @@@ msgid " "<filename>.disk</filename> directory you will be prompted for a descriptive " "title." msgstr "" +"<literal>add</literal> è usato per aggiungere un nuovo disco alla lista " +"delle fonti. Smonterà il device del CD-ROM, chiederà di inserire un disco e " +"poi procederà alla sua scansione e copierà i file indice. Se il disco non ha " +"una directory <filename>.disk/</filename> corretta, verrà chiesto un titolo " +"descrittivo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:64 @@@ -2954,9 -2016,6 +2895,9 @@@ msgid " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" "filename>" msgstr "" +"APT usa un identificativo per i CD-ROM per tenere traccia di quale disco è " +"attualmente nel lettore e mantiene un database di questi identificativi nel " +"file <filename>&statedir;/cdroms.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:72 @@@ -2964,8 -2023,6 +2905,8 @@@ msgid " "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" +"Uno strumento di debug per riportare l'identità del disco corrente così come " +"il nome dei file memorizzato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:85 @@@ -2974,10 -2031,6 +2915,10 @@@ msgid " "be listed in <filename>/etc/fstab</filename> and properly configured. " "Configuration Item: <literal>Acquire::cdrom::mount</literal>." msgstr "" +"Punto di mount; specifica la posizione in cui montare il CD-ROM. Questo " +"punto di mount deve essere elencato nel file <filename>/etc/fstab</filename> " - "e configurato correttamente. Voce di configurazione: " - "<literal>Acquire::cdrom::mount</literal>." ++"e configurato correttamente. Voce di configurazione: <literal>Acquire::" ++"cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:94 @@@ -2986,10 -2039,6 +2927,10 @@@ msgid " "label. This option will cause <command>apt-cdrom</command> to prompt for a " "new label. Configuration Item: <literal>APT::CDROM::Rename</literal>." msgstr "" +"Rinomina un disco; cambia l'etichetta di un disco o soppianta l'etichetta " +"originale del disco. Questa opzione farà sì che <command>apt-cdrom</command> " - "chieda una nuova etichetta. Voce di configurazione: " - "<literal>APT::CDROM::Rename</literal>." ++"chieda una nuova etichetta. Voce di configurazione: <literal>APT::CDROM::" ++"Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:103 @@@ -2998,9 -2047,6 +2939,9 @@@ msgid " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" "NoMount</literal>." msgstr "" +"Non montare; impedisce ad <command>apt-cdrom</command> di montare e smontare " - "il punto di mount. Voce di configurazione: " - "<literal>APT::CDROM::NoMount</literal>." ++"il punto di mount. Voce di configurazione: <literal>APT::CDROM::NoMount</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:111 @@@ -3010,10 -2056,6 +2951,10 @@@ msgid " "been run on this disc before and did not detect any errors. Configuration " "Item: <literal>APT::CDROM::Fast</literal>." msgstr "" +"Copia rapida; assume che i file dei pacchetti siano validi e non verifica " +"ogni pacchetto. Questa opzione dovrebbe essere usata solo se <command>apt-" +"cdrom</command> è stato già eseguito sul disco e non ha rilevato alcun " +"errore. Voce di configurazione: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:121 @@@ -3022,10 -2064,6 +2963,10 @@@ msgid " "1.1/1.2 discs that have Package files in strange places. It takes much " "longer to scan the CD but will pick them all up." msgstr "" +"Scansione approfondita dei file Package; questa opzione può essere " +"necessaria con alcuni dischi delle vecchie Debian 1.1/1.2 in cui i file " +"Package si trovano in posti inconsueti. La scansione dei CD richiederà molto " +"più tempo, ma troverà tutti i file." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:132 @@@ -3034,14 -2072,11 +2975,14 @@@ msgid " "files. Everything is still checked however. Configuration Item: " "<literal>APT::CDROM::NoAct</literal>." msgstr "" +"Nessun cambiamento; non cambia il file &sources-list; e non scrive i file " +"indice. Tuttavia ogni cosa è comunque verificata. Voce di configurazione: " +"<literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:145 msgid "&apt-conf;, &apt-get;, &sources-list;" -msgstr "" +msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:150 @@@ -3049,13 -2084,11 +2990,13 @@@ msgid " "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-cdrom</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-config.8.xml:33 msgid "APT Configuration Query program" -msgstr "" +msgstr "programma di interrogazione della configurazione di APT" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:39 @@@ -3065,10 -2098,6 +3006,10 @@@ msgid " "the main configuration file <filename>/etc/apt/apt.conf</filename> in a " "manner that is easy to use for scripted applications." msgstr "" +"<command>apt-config</command> è un programma interno usato da varie parti " +"della suite APT per fornire una configurabilità coerente. Accede al file " +"principale di configurazione <filename>/etc/apt/apt.conf</filename> in un " +"modo facile da usare da parte di applicazioni che usano script." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:51 @@@ -3079,12 -2108,6 +3020,12 @@@ msgid " "commands for each value present. In a shell script it should be used as " "follows:" msgstr "" +"shell viene usato per accedere alle informazioni di configurazione da parte " +"di uno script di shell. Riceve coppie di argomenti, il primo dei quali è una " +"variabile di shell e il secondo è il valore di configurazione da " +"interrogare. Come risultato elenca il comando shell di assegnazione per " +"ciascun valore presente. In uno script di shell dovrebbe essere usato in " +"modo simile a:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-config.8.xml:59 @@@ -3094,9 -2117,6 +3035,9 @@@ msgid " "RES=`apt-config shell OPTS MyApp::options`\n" "eval $RES\n" msgstr "" +"OPZIONI=\"-f\"\n" +"RES=`apt-config shell OPZIONI MiaApp::opzioni`\n" +"eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:64 @@@ -3104,9 -2124,6 +3045,9 @@@ msgid " "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." msgstr "" +"In questo modo la variabile d'ambiente $OPZIONI della shell verrà impostata " - "al valore di MiaApp::opzioni con un valore predefinito di " - "<option>-f</option>." ++"al valore di MiaApp::opzioni con un valore predefinito di <option>-f</" ++"option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:68 @@@ -3115,14 -2132,11 +3056,14 @@@ msgid " "names, d returns directories, b returns true or false and i returns an " "integer. Each of the returns is normalized and verified internally." msgstr "" +"La voce di configurazione può essere seguita da /[fdbi]. f restituisce nomi " +"di file, d restituisce directory, b restituisce vero o falso e i restituisce " +"un intero. Ogni valore restituito è normalizzato e verificato internamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:77 msgid "Just show the contents of the configuration space." -msgstr "" +msgstr "Mostra soltanto i contenuti dello spazio di configurazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:90 @@@ -3130,13 -2144,11 +3071,13 @@@ msgid " "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." msgstr "" +"Include le opzioni che hanno un valore vuoto. Questo è il comportamento " +"predefinito, perciò usare --no-empty per rimuoverle dall'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-config.8.xml:95 msgid "%f "%v";%n" -msgstr "" +msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:96 @@@ -3148,20 -2160,12 +3089,20 @@@ msgid " "as defined by RFC822. Additionally %n will be replaced by a newline, " "and %N by a tab. A % can be printed by using %%." msgstr "" +"Definisce l'output per ciascuna opzione di configurazione. %t verrà " +"sostituito dal suo nome, %f dal suo nome gerarchico completo e " +"%v dal suo valore. Usa le lettere maiuscole e i caratteri speciali " +"nel valore verranno codificati per assicurare che possano essere usati senza " +"problemi in una stringa tra virgolette, come definito nella RFC822. In " +"aggiunta %n verrà sostituito da un ritorno a capo e %N da una " - "tabulazione. Un carattere % può essere prodotto usando " - "%%. " ++"tabulazione. Un carattere % può essere prodotto usando %" ++"%. " #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64 #: apt-ftparchive.1.xml:608 msgid "&apt-conf;" -msgstr "" +msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:115 @@@ -3169,28 -2173,26 +3110,28 @@@ msgid " "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-config</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refentryinfo><author><contrib> #: apt.conf.5.xml:20 msgid "Initial documentation of Debug::*." -msgstr "" +msgstr "Documentazione iniziale di Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> #: apt.conf.5.xml:21 msgid "dburrows@debian.org" -msgstr "" +msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> #: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26 msgid "5" -msgstr "" +msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt.conf.5.xml:38 msgid "Configuration file for APT" -msgstr "" +msgstr "file di configurazione di APT" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:42 @@@ -3200,11 -2202,6 +3141,11 @@@ msgid " "only place options can be set. The suite also shares a common command line " "parser to provide a uniform environment." msgstr "" +"<filename>/etc/apt/apt.conf</filename> è il file di configurazione " +"principale condiviso da tutti gli strumenti nella suite APT, anche se non è " +"affatto l'unico posto in cui possono essere impostate opzioni. La suite " +"condivide anche un analizzatore comune della riga di comando per fornire un " +"ambiente uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> #: apt.conf.5.xml:48 @@@ -3212,8 -2209,6 +3153,8 @@@ msgid " "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" +"Quando uno strumento APT viene avviato, legge i file di configurazione nel " +"seguente ordine:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:50 @@@ -3221,8 -2216,6 +3162,8 @@@ msgid " "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" +"il file specificato dalla variabile d'ambiente <envar>APT_CONFIG</envar> (se " +"presente)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:52 @@@ -3235,22 -2228,12 +3176,22 @@@ msgid " "Ignore-Files-Silently</literal> configuration list - in which case it will " "be silently ignored." msgstr "" +"tutti i file in <literal>Dir::Etc::Parts</literal>, in ordine alfanumerico " - "crescente, se il loro nome file non ha estensione o ha " - "«<literal>conf</literal>» come estensione, e contiene solamente caratteri " - "alfanumerici, trattini (-), caratteri di sottolineatura (_) e punti (.). " - "Altrimenti, APT visualizza un messaggio che informa che un file è stato " - "ignorato, a meno che il file non corrisponda ad un modello nell'elenco di " - "configurazione <literal>Dir::Ignore-Files-Silently</literal> nel qual caso " - "verrà ignorato silenziosamente." ++"crescente, se il loro nome file non ha estensione o ha «<literal>conf</" ++"literal>» come estensione, e contiene solamente caratteri alfanumerici, " ++"trattini (-), caratteri di sottolineatura (_) e punti (.). Altrimenti, APT " ++"visualizza un messaggio che informa che un file è stato ignorato, a meno che " ++"il file non corrisponda ad un modello nell'elenco di configurazione " ++"<literal>Dir::Ignore-Files-Silently</literal> nel qual caso verrà ignorato " ++"silenziosamente." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:59 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" - "il file di configurazione principale specificato da " - "<literal>Dir::Etc::main</literal>" ++"il file di configurazione principale specificato da <literal>Dir::Etc::main</" ++"literal>" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:61 @@@ -3258,13 -2241,11 +3199,13 @@@ msgid " "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" +"le opzioni nella riga di comando sono applicate per scavalcare le direttive " +"di configurazione o per caricare ulteriori file di configurazione." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:65 msgid "Syntax" -msgstr "" +msgstr "Sintassi" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:66 @@@ -3275,11 -2256,6 +3216,11 @@@ msgid " "within the APT tool group, for the Get tool. Options do not inherit from " "their parent groups." msgstr "" +"Il file di configurazione ha un'organizzazione ad albero con le opzioni " +"riunite in gruppi funzionali. Un'opzione viene specificata con una notazione " +"a due punti (:); per esempio <literal>APT::Get::Assume-Yes</literal> è " +"un'opzione per lo strumento Get all'interno del gruppo dello strumento APT. " +"Le opzioni non ereditano dai gruppi genitori." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:72 @@@ -3295,16 -2271,6 +3236,16 @@@ msgid " "alphanumeric characters and the characters \"/-:._+\". A new scope can be " "opened with curly braces, like this:" msgstr "" +"Sintatticamente il linguaggio di configurazione è basato sul modello di " +"quello usato dagli strumenti ISC come bind e dhcp. Le righe che iniziano con " +"<literal>//</literal> vengono trattate come commenti (ignorate), così come " +"tutto il testo racchiuso tra <literal>/*</literal> e <literal>*/</literal>, " - "proprio come i commenti C/C++. Ogni riga ha la forma <literal>APT::Get" - "::Assume-Yes \"true\";</literal>. Le virgolette e il punto e virgola finale " ++"proprio come i commenti C/C++. Ogni riga ha la forma <literal>APT::Get::" ++"Assume-Yes \"true\";</literal>. Le virgolette e il punto e virgola finale " +"sono obbligatori. I valori non possono includere barre inverse (\\) o " +"ulteriori virgolette. I nomi delle opzioni sono costituiti da caratteri " +"alfanumerici e dai caratteri «/-:._+». Un nuovo ambito può essere aperto con " +"parentesi graffe come in:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:85 @@@ -3317,12 -2283,6 +3258,12 @@@ msgid " " };\n" "};\n" msgstr "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:93 @@@ -3331,27 -2291,19 +3272,27 @@@ msgid " "opening a scope and including a single string enclosed in quotes followed by " "a semicolon. Multiple entries can be included, separated by a semicolon." msgstr "" +"con le nuove righe posizionate in modo da renderle più leggibili. Si possono " +"creare elenchi aprendo un ambito e includendo una singola stringa racchiusa " +"tra virgolette e seguita da un punto e virgola. Possono essere incluse più " +"voci, separate da un punto e virgola." #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:98 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" -msgstr "" +msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +# apt.conf è un file e &configureindex è un altro: configure-index.gz #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:101 msgid "" "In general the sample configuration file in <filename>&docdir;examples/apt." "conf</filename> &configureindex; is a good guide for how it should look." msgstr "" - "In generale i file di configurazione d'esempio in " - "<filename>&docdir;examples/apt.conf</filename> e &configureindex; sono una " - "buona guida su come debba essere un file di configurazione." ++"In generale i file di configurazione d'esempio in <filename>&docdir;examples/" ++"apt.conf</filename> e &configureindex; sono una buona guida su come debba " ++"essere un file di configurazione." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:105 @@@ -3359,9 -2311,6 +3300,9 @@@ msgid " "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" +"I nomi delle voci di configurazione sono insensibili all'uso di maiuscole e " +"minuscole, perciò nell'esempio precedente si sarebbe potuto usare " +"<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:108 @@@ -3372,12 -2321,6 +3313,11 @@@ msgid " "list. If you specify a name you can override the option in the same way as " "any other option by reassigning a new value to the option." msgstr "" +"I nomi delle voci di configurazione sono opzionali se viene definito un " - "elenco come si può vedere nell'esempio <literal>DPkg::Pre-Install-" - "Pkgs</literal> precedente. Se non si specifica un nome, una nuova voce " - "aggiunge semplicemente una nuova opzione all'elenco. Se si specifica un " - "nome, si può sovrascrivere l'opzione come per ogni altra, assegnandole un " - "nuovo valore." ++"elenco come si può vedere nell'esempio <literal>DPkg::Pre-Install-Pkgs</" ++"literal> precedente. Se non si specifica un nome, una nuova voce aggiunge " ++"semplicemente una nuova opzione all'elenco. Se si specifica un nome, si può " ++"sovrascrivere l'opzione come per ogni altra, assegnandole un nuovo valore." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:113 @@@ -3390,14 -2333,6 +3330,14 @@@ msgid " "the configuration tree. The specified element and all its descendants are " "erased. (Note that these lines also need to end with a semicolon.)" msgstr "" +"Sono definiti due comandi speciali: <literal>#include</literal> (che è " +"deprecato e non supportato da implementazioni alternative) e " +"<literal>#clear</literal>. <literal>#include</literal> include il file " +"indicato a meno che il suo nome non termini con un carattere «/», nel qual " +"caso viene inclusa l'intera directory. <literal>#clear</literal> viene usato " +"per eliminare una parte dell'albero di configurazione. L'elemento " +"specificato e tutti i suoi discendenti vengono eliminati. (Notare che anche " +"queste righe devono terminare con un punto e virgola.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:123 @@@ -3408,12 -2343,6 +3348,12 @@@ msgid " "previously written entries. Options can only be overridden by addressing a " "new value to them - lists and scopes can't be overridden, only cleared." msgstr "" +"Il comando <literal>#clear</literal> è l'unico modo di cancellare un elenco " +"o un intero ambito. Riaprire un ambito (o usare la sintassi descritta più " +"sotto aggiungendo alla fine <literal>::</literal>) <emphasis>non</emphasis> " +"sovrascrive le voci precedentemente scritte. Le opzioni possono essere " +"sovrascritte solamente assegnandovi un nuovo valore; gli elenchi e gli " +"ambiti non possono essere sovrascritti, solo cancellati." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:131 @@@ -3426,14 -2355,6 +3366,14 @@@ msgid " "list. (As you might suspect, the scope syntax can't be used on the command " "line.)" msgstr "" +"Tutti gli strumenti APT accettano un'opzione -o che permette di specificare " +"una direttiva di configurazione arbitraria nella riga di comando. La " - "sintassi è un nome completo di opzione (per esempio <literal>APT::Get" - "::Assume-Yes</literal>) seguito da un segno di uguaglianza e quindi il nuovo " ++"sintassi è un nome completo di opzione (per esempio <literal>APT::Get::" ++"Assume-Yes</literal>) seguito da un segno di uguaglianza e quindi il nuovo " +"valore dell'opzione. Per aggiungere un nuovo elemento ad un elenco, " +"aggiungere <literal>::</literal> alla fine del nome dell'elenco. (Come si " +"può immaginare, la sintassi per gli ambiti non può essere usata nella riga " +"di comando.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:139 @@@ -3451,25 -2372,11 +3391,24 @@@ msgid " "this misuse, so please correct such statements now while APT doesn't " "explicitly complain about them." msgstr "" +"Notare che aggiungere voci in coda ad un elenco usando <literal>::</literal> " +"funziona solamente con un elemento per riga, e che non si dovrebbe usarlo " - "insieme alla sintassi per gli ambiti (che aggiunge implicitamente " - "<literal>::</literal>). L'uso di entrambe le sintassi insieme fa apparire un " - "bug che sfortunatamente alcuni utenti utilizzano: un'opzione con l'insolito " - "nome «<literal>::</literal>» che funziona come una qualsiasi altra opzione " - "con nome. Ciò introduce molti problemi; innanzitutto gli utenti che scrivono " - "più righe con questa sintassi <emphasis>sbagliata</emphasis> nella speranza " - "di aggiungere voci ad un elenco ottengono il risultato opposto, dato che " - "viene usata solo l'ultima assegnazione per questa opzione " - "«<literal>::</literal>». Le versioni future di APT causeranno errori e " - "smetteranno di funzionare se incontrano questo uso scorretto, perciò è bene " - "correggere tali dichiarazioni ora, quando APT ancora non si lamenta " - "esplicitamente." ++"insieme alla sintassi per gli ambiti (che aggiunge implicitamente <literal>::" ++"</literal>). L'uso di entrambe le sintassi insieme fa apparire un bug che " ++"sfortunatamente alcuni utenti utilizzano: un'opzione con l'insolito nome " ++"«<literal>::</literal>» che funziona come una qualsiasi altra opzione con " ++"nome. Ciò introduce molti problemi; innanzitutto gli utenti che scrivono più " ++"righe con questa sintassi <emphasis>sbagliata</emphasis> nella speranza di " ++"aggiungere voci ad un elenco ottengono il risultato opposto, dato che viene " ++"usata solo l'ultima assegnazione per questa opzione «<literal>::</literal>». " ++"Le versioni future di APT causeranno errori e smetteranno di funzionare se " ++"incontrano questo uso scorretto, perciò è bene correggere tali dichiarazioni " ++"ora, quando APT ancora non si lamenta esplicitamente." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:154 msgid "The APT Group" -msgstr "" +msgstr "Il gruppo APT" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:155 @@@ -3477,8 -2384,6 +3416,8 @@@ msgid " "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" +"Questo gruppo di opzioni controlla il comportamento generale di APT, oltre a " +"contenere le opzioni per tutti gli strumenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:160 @@@ -3487,9 -2392,6 +3426,9 @@@ msgid " "parsing package lists. The internal default is the architecture apt was " "compiled for." msgstr "" +"Architettura di sistema; imposta l'architettura da usare quando si " +"recuperano i file e si analizzano gli elenchi dei pacchetti. Il valore " +"predefinito interno è l'architettura per la quale apt è stato compilato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:167 @@@ -3503,16 -2405,6 +3442,15 @@@ msgid " "literal>), and foreign architectures are added to the default list when they " "are registered via <command>dpkg --add-architecture</command>." msgstr "" +"Tutte le architetture supportate dal sistema. Ad esempio, le CPU che " +"implementano l'insieme di istruzioni <literal>amd64</literal> (chiamato " +"anche <literal>x86-64</literal>) sono anche in grado di eseguire binari " - "compilati per l'insieme di istruzioni <literal>i386</literal> " - "(<literal>x86</literal>). Questo elenco viene usato quando si recuperano i " - "file e si analizzano gli elenchi dei pacchetti. Il valore iniziale " - "predefinito è sempre l'architettura nativa del sistema " - "(<literal>APT::Architecture</literal>), e le altre architetture vengono " - "aggiunte all'elenco predefinito quando sono registrate con <command>dpkg " - "--add-architecture</command>." ++"compilati per l'insieme di istruzioni <literal>i386</literal> (<literal>x86</" ++"literal>). Questo elenco viene usato quando si recuperano i file e si " ++"analizzano gli elenchi dei pacchetti. Il valore iniziale predefinito è " ++"sempre l'architettura nativa del sistema (<literal>APT::Architecture</" ++"literal>), e le altre architetture vengono aggiunte all'elenco predefinito " ++"quando sono registrate con <command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:180 @@@ -3522,11 -2414,6 +3460,11 @@@ msgid " "'stable', 'testing', 'unstable', '&stable-codename;', '&testing-codename;', " "'4.0', '5.0*'. See also &apt-preferences;." msgstr "" +"Il rilascio predefinito da cui installare i pacchetti se è disponibile più " +"di una versione. Contiene il nome del rilascio, il nome in codice o la " +"versione del rilascio. Esempi: «stable», «testing», «unstable», «&stable-" +"codename;», «&testing-codename;», «4.0», «5.0*». Vedere anche &apt-" +"preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:186 @@@ -3534,8 -2421,6 +3472,8 @@@ msgid " "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" +"Ignora i pacchetti bloccati; questa opzione globale fa sì che il risolutore " +"di problemi ignori i pacchetti bloccati nel suo processo decisionale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:191 @@@ -3545,11 -2430,6 +3483,11 @@@ msgid " "then packages that are locally installed are also excluded from cleaning - " "but note that APT provides no direct means to reinstall them." msgstr "" +"Attiva in modo predefinito. Quando attiva, la funzionalità autoclean rimuove " - "dalla cache ogni pacchetto che non può più essere scaricato. Se " - "disattivata, allora sono esclusi dalla rimozione anche i pacchetti che sono " - "installati; fare attenzione però al fatto che APT non fornisce alcun mezzo " - "diretto per reinstallarli." ++"dalla cache ogni pacchetto che non può più essere scaricato. Se disattivata, " ++"allora sono esclusi dalla rimozione anche i pacchetti che sono installati; " ++"fare attenzione però al fatto che APT non fornisce alcun mezzo diretto per " ++"reinstallarli." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:199 @@@ -3565,18 -2445,6 +3503,18 @@@ msgid " "A is unpacked but unconfigured - so any package depending on A is now no " "longer guaranteed to work, as its dependency on A is no longer satisfied." msgstr "" +"Attiva in modo predefinito, il che fa sì che APT installi i pacchetti " +"essenziali e importanti non appena è possibile durante un'installazione o " +"aggiornamento, per limitare l'effetto di una chiamata a &dpkg; che non ha " +"successo. Se questa opzione è disattivata, APT tratta un pacchetto " +"importante nello stesso modo di un pacchetto extra: tra lo spacchettamento " +"del pacchetto A e la sua configurazione possono esserci molte altre chiamate " +"di spacchettamento o configurazione per altri pacchetti non correlati B, C, " +"ecc. Se queste causano il fallimento della chiamata a &dpkg; (ad esempio " +"perché lo script del manutentore di B genera un errore), ciò ha come " +"risultato un sistema in cui il pacchetto A è spacchettato ma non " +"configurato; perciò non è più garantito il funzionamento di ogni pacchetto " +"che dipende da A, dato che la dipendenza da A non è più soddisfatta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:211 @@@ -3594,19 -2462,6 +3532,19 @@@ msgid " "scenario mentioned above is not the only problem it can help to prevent in " "the first place." msgstr "" +"Il contrassegno di configurazione immediata viene applicato anche nel caso " +"potenzialmente problematico di dipendenze circolari, dato che una dipendenza " +"con il contrassegno di immediato è equivalente ad una pre-dipendenza. In " +"teoria ciò permette ad APT di riconoscere una situazione in cui non è in " +"grado di effettuare la configurazione immediata, di terminare annullando e " +"di suggerire all'utente che l'opzione dovrebbe essere temporaneamente " +"disattivata per permettere la continuazione dell'operazione. Notare come sia " +"stata usata l'espressione «in teoria»: in realtà questo problema si è " +"verificato molto di rado, in versioni non stabili di distribuzione, ed è " +"stato causato da dipendenze sbagliate del pacchetto interessato o da un " +"sistema che era già in uno stato erroneo; perciò non si dovrebbe disattivare " +"alla cieca questa opzione, dato che lo scenario descritto sopra non è " +"l'unico problema che può aiutare a prevenire." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:224 @@@ -3618,13 -2473,6 +3556,13 @@@ msgid " "buglink below, so they can work on improving or correcting the upgrade " "process." msgstr "" +"Prima di eseguire una grossa operazione come <literal>dist-upgrade</literal> " +"con questa opzione disattivata, si dovrebbe provare a usare esplicitamente " +"<literal>install</literal> sul pacchetto che APT non è stato in grado di " +"configurare immediatamente; assicurarsi però di segnalare il problema alla " +"propria distribuzione e al Team di APT usando il collegamento per i bug " +"indicato in seguito, in modo che possano lavorare a migliorare o correggere " +"il processo di aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:235 @@@ -3638,15 -2486,6 +3576,14 @@@ msgid " "<command>dpkg</command>, <command>dash</command> or anything that those " "packages depend on." msgstr "" - "Non attivare mai questa opzione a meno di non sapere " - "<emphasis>veramente</emphasis> ciò che si sta facendo. Permette ad APT di " - "rimuovere temporaneamente un pacchetto essenziale per rompere un ciclo " - "Conflicts/Conflicts o Conflicts/Pre-Depends tra due pacchetti essenziali. " - "<emphasis>Un tale ciclo non dovrebbe mai esistere ed è un bug " - "grave</emphasis>. Questa opzione funziona se i pacchetti essenziali non sono " - "<command>tar</command>, <command>gzip</command>, <command>libc</command>, " - "<command>dpkg</command>, <command>dash</command> o qualsiasi altro da cui " - "dipendono tali pacchetti." ++"Non attivare mai questa opzione a meno di non sapere <emphasis>veramente</" ++"emphasis> ciò che si sta facendo. Permette ad APT di rimuovere " ++"temporaneamente un pacchetto essenziale per rompere un ciclo Conflicts/" ++"Conflicts o Conflicts/Pre-Depends tra due pacchetti essenziali. <emphasis>Un " ++"tale ciclo non dovrebbe mai esistere ed è un bug grave</emphasis>. Questa " ++"opzione funziona se i pacchetti essenziali non sono <command>tar</command>, " ++"<command>gzip</command>, <command>libc</command>, <command>dpkg</command>, " ++"<command>dash</command> o qualsiasi altro da cui dipendono tali pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:247 @@@ -3667,31 -2506,11 +3604,31 @@@ msgid " "stands for no limit. If <literal>Cache-Grow</literal> is set to 0 the " "automatic growth of the cache is disabled." msgstr "" +"APT, a partire dalla versione 0.7.26, usa un file cache ridimensionabile " - "mappato in memoria per memorizzare le informazioni disponibili. <literal" - ">Cache-Start</literal> funziona da indicatore della dimensione che la cache " - "raggiungerà ed è perciò la quantità di memoria che APT richiederà all'avvio. " - "Il valore predefinito è 20971520 byte (~20 MB). Notare che questa quantità " - "di spazio deve essere disponibile per APT, altrimenti probabilmente " ++"mappato in memoria per memorizzare le informazioni disponibili. " ++"<literal>Cache-Start</literal> funziona da indicatore della dimensione che " ++"la cache raggiungerà ed è perciò la quantità di memoria che APT richiederà " ++"all'avvio. Il valore predefinito è 20971520 byte (~20 MB). Notare che questa " ++"quantità di spazio deve essere disponibile per APT, altrimenti probabilmente " +"terminerà con un fallimento in modo molto poco grazioso; perciò per i " +"dispositivi con memoria limitata questo valore dovrebbe essere abbassato, " +"mentre nei sistemi con molte fonti configurate dovrebbe essere aumentato. " +"<literal>Cache-Grow</literal> definisce di quanto verrà aumentata la " +"dimensione della cache in byte, se lo spazio definito da <literal>Cache-" +"Start</literal> non è sufficiente; il valore predefinito è 1048576 (~1 MB). " +"Questo valore verrà applicato più volte, fino a che la cache non è grande " +"abbastanza per memorizzare tutte le informazioni o la dimensione della cache " - "raggiunge il valore <literal>Cache-Limit</literal>. Il valore predefinito " - "di <literal>Cache-Limit</literal> è 0 che indica nessun limite. Se <literal" - ">Cache-Grow</literal> viene impostato a 0 la crescita automatica della cache " - "è disabilitata." ++"raggiunge il valore <literal>Cache-Limit</literal>. Il valore predefinito di " ++"<literal>Cache-Limit</literal> è 0 che indica nessun limite. Se " ++"<literal>Cache-Grow</literal> viene impostato a 0 la crescita automatica " ++"della cache è disabilitata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:263 msgid "Defines which packages are considered essential build dependencies." msgstr "" +"Definisce quali pacchetti sono considerati dipendenze di compilazione " +"essenziali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:267 @@@ -3699,8 -2518,6 +3636,8 @@@ msgid " "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" +"La sottosezione Get controlla lo strumento &apt-get;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:272 @@@ -3708,8 -2525,6 +3645,8 @@@ msgid " "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" +"La sottosezione Cache controlla lo strumento &apt-cache;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:277 @@@ -3717,13 -2532,11 +3654,13 @@@ msgid " "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" +"La sottosezione CDROM controlla lo strumento &apt-cdrom;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:283 msgid "The Acquire Group" -msgstr "" +msgstr "Il gruppo Acquire" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:284 @@@ -3732,9 -2545,6 +3669,9 @@@ msgid " "packages as well as the various \"acquire methods\" responsible for the " "download itself (see also &sources-list;)." msgstr "" +"Il gruppo di opzioni <literal>Acquire</literal> controlla lo scaricamento " +"dei pacchetti così come i vari «metodi di acquisizione» responsabili per lo " +"scaricamento stesso (vedere anche &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:291 @@@ -3748,15 -2558,6 +3685,15 @@@ msgid " "value is desired the <literal>Max-ValidTime</literal> option below can be " "used." msgstr "" +"Opzione relativa alla sicurezza attiva in modo predefinito, poiché dare una " +"data di scadenza alla convalida di un file Release evita attacchi ripetuti " +"nel corso del tempo e può anche, per esempio, aiutare gli utenti a " +"identificare i mirror che non sono più aggiornati, ma la funzionalità " +"dipende dall'esattezza dell'orologio sul sistema dell'utente. I manutentori " +"degli archivi sono incoraggiati a creare file Release con l'intestazione " +"<literal>Valid-Until</literal>, ma se non lo fanno o se si desidera un " +"valore più restrittivo può essere utilizzata l'opzione <literal>Max-" +"ValidTime</literal> seguente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:304 @@@ -3769,14 -2570,6 +3706,14 @@@ msgid " "for \"valid forever\". Archive specific settings can be made by appending " "the label of the archive to the option name." msgstr "" +"Tempo massimo (in secondi) dalla sua creazione (come indicata " +"dall'intestazione <literal>Date</literal>) per il quale il file " +"<filename>Release</filename> deve essere considerato valido. Se il file " +"Release stesso include un'intestazione <literal>Valid-Until</literal>, viene " +"usata come data di scadenza quella più corta. Il valore predefinito è " +"<literal>0</literal> che sta per «valido per sempre». Possono essere fatte " +"impostazioni specifiche per ciascun archivio aggiungendo l'etichetta " +"dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:316 @@@ -3789,15 -2582,6 +3726,14 @@@ msgid " "checking. Archive specific settings can and should be used by appending the " "label of the archive to the option name." msgstr "" +"Tempo minimo (in secondi) dalla sua creazione (come indicata " +"dall'intestazione <literal>Date</literal>) per il quale il file " +"<filename>Release</filename> deve essere considerato valido. Utilizzare " +"questa opzione se si deve usare un mirror (locale), aggiornato raramente, di " +"un archivio aggiornato più spesso che ha un'intestazione <literal>Valid-" +"Until</literal>, invece di disabilitare completamente il controllo della " +"data di scadenza. Possono essere fatte impostazioni specifiche per ciascun " - "archivio aggiungendo l'etichetta dell'archivio in fondo al nome " - "dell'opzione." ++"archivio aggiungendo l'etichetta dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:328 @@@ -3806,9 -2590,6 +3742,9 @@@ msgid " "<filename>Packages</filename> files) instead of downloading whole ones. True " "by default." msgstr "" +"Cerca di scaricare le differenze chiamate <literal>PDiff</literal> per gli " +"indici (come i file <filename>Packages</filename>), invece di scaricare " +"interamente i nuovi. Attiva in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:331 @@@ -3820,13 -2601,6 +3756,13 @@@ msgid " "patches compared to the size of the targeted file. If one of these limits is " "exceeded the complete file is downloaded instead of the patches." msgstr "" +"Sono disponibili anche due sotto-opzioni per limitare l'uso dei PDiff: " +"<literal>FileLimit</literal> può essere usata per specificare un numero " +"massimo di file PDiff che devono essere scaricati per aggiornare un file. " +"<literal>SizeLimit</literal>, invece, è la percentuale massima della " +"dimensione di tutte le patch in rapporto alla dimensione del file finale " +"considerato. Se uno di questi limiti viene superato, viene scaricato il file " +"completo invece delle patch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:341 @@@ -3837,12 -2611,6 +3773,11 @@@ msgid " "target host will be opened, <literal>access</literal> means that one " "connection per URI type will be opened." msgstr "" - "Modalità di coda; <literal>Queue-Mode</literal> può essere " - "<literal>host</literal> o <literal>access</literal>, che determinano come " - "APT mette in parallelo le connessioni in uscita. <literal>host</literal> " - "significa che viene aperta una connessione per ogni host bersaglio, " - "<literal>access</literal> significa che viene aperta una connessione per " - "ogni tipo di URI." ++"Modalità di coda; <literal>Queue-Mode</literal> può essere <literal>host</" ++"literal> o <literal>access</literal>, che determinano come APT mette in " ++"parallelo le connessioni in uscita. <literal>host</literal> significa che " ++"viene aperta una connessione per ogni host bersaglio, <literal>access</" ++"literal> significa che viene aperta una connessione per ogni tipo di URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:349 @@@ -3850,9 -2618,6 +3785,9 @@@ msgid " "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" +"Numero di tentativi successivi da effettuare. Se è diverso da zero, APT " +"riproverà per il numero di volte specificato a scaricare i file con cui non " +"ha avuto successo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:354 @@@ -3860,10 -2625,6 +3795,10 @@@ msgid " "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" +"Usa i collegamenti simbolici per gli archivi sorgente. Se impostata a vero, " +"allora per gli archivi sorgente verranno creati, quando possibile, dei " +"collegamenti simbolici invece di fare una copia. Il valore predefinito è " +"vero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:359 @@@ -3876,14 -2637,6 +3811,13 @@@ msgid " "settings is specified, <envar>http_proxy</envar> environment variable will " "be used." msgstr "" +"<literal>http::Proxy</literal> imposta il proxy predefinito da usare per gli " - "URI HTTP. È nella forma standard " - "<literal>http://[[utente][:password]@]host[:porta]/</literal>. Possono anche " - "essere specificati proxy per ciascun host usando la forma " - "<literal>http::Proxy::<host></literal> con la speciale parola chiave " - "<literal>DIRECT</literal> che significa di non usare un proxy. Se non viene " - "specificata alcuna delle impostazioni precedenti, viene usata la variabile " - "d'ambiente <envar>http_proxy</envar>." ++"URI HTTP. È nella forma standard <literal>http://[[utente][:password]@]host[:" ++"porta]/</literal>. Possono anche essere specificati proxy per ciascun host " ++"usando la forma <literal>http::Proxy::<host></literal> con la speciale " ++"parola chiave <literal>DIRECT</literal> che significa di non usare un proxy. " ++"Se non viene specificata alcuna delle impostazioni precedenti, viene usata " ++"la variabile d'ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:367 @@@ -3896,14 -2649,6 +3830,14 @@@ msgid " "store the requested archive files in its cache, which can be used to prevent " "the proxy from polluting its cache with (big) .deb files." msgstr "" +"Sono fornite tre impostazioni per il controllo della cache in proxy con " +"cache conformi a HTTP/1.1. <literal>No-Cache</literal> indica al proxy di " - "non usare la sua risposta in cache in nessuna circostanza. <literal>Max-" - "Age</literal> imposta l'età massima consentita (in secondi) di un file " - "indice nella cache del proxy. <literal>No-Store</literal> specifica che il " - "proxy non deve memorizzare i file archivio richiesti nella sua cache, il che " - "può essere usato per evitare che il proxy riempia la propria cache con " - "(grandi) file .deb." ++"non usare la sua risposta in cache in nessuna circostanza. <literal>Max-Age</" ++"literal> imposta l'età massima consentita (in secondi) di un file indice " ++"nella cache del proxy. <literal>No-Store</literal> specifica che il proxy " ++"non deve memorizzare i file archivio richiesti nella sua cache, il che può " ++"essere usato per evitare che il proxy riempia la propria cache con (grandi) " ++"file .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:377 apt.conf.5.xml:449 @@@ -3911,9 -2656,6 +3845,9 @@@ msgid " "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" +"L'opzione <literal>timeout</literal> imposta il tempo di timeout usato dal " +"metodo; questo valore si applica sia al timeout per la connessione sia a " +"quello per i dati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:380 @@@ -3926,14 -2668,6 +3860,14 @@@ msgid " "growing amount of webservers and proxies which choose to not conform to the " "HTTP/1.1 specification." msgstr "" +"L'impostazione <literal>Acquire::http::Pipeline-Depth</literal> può essere " +"usata per abilitare le pipeline HTTP (RFC 2616, sezione 8.1.2.2) che possono " +"essere utili, ad esempio, in connessioni con grande latenza. Specifica " +"quante richieste sono inviate in una pipeline. Le versioni precedenti di APT " +"avevano un valore predefinito di 10 per questa impostazione, ma il valore " +"predefinito è ora 0 (= disabilitata) per evitare problemi con il numero " +"sempre crescente di server web e proxy che scelgono di non essere conformi " +"con la specifica HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:387 @@@ -3941,8 -2675,6 +3875,8 @@@ msgid " "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" +"<literal>Acquire::http::AllowRedirect</literal> specifica se APT segue o " +"meno le ridirezioni che sono abilitate in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:390 @@@ -3953,11 -2685,6 +3887,11 @@@ msgid " "that this option implicitly disables downloading from multiple servers at " "the same time.)" msgstr "" - "La quantità di banda utilizzata può essere limitata con " - "<literal>Acquire::http::Dl-Limit</literal> che accetta valori interi in " - "kilobyte. Il valore predefinito è 0 che disattiva il limite e cerca di usare " - "tutta la banda disponibile (notare che questa opzione implicitamente " - "disabilita lo scaricamento da più server contemporaneamente)." ++"La quantità di banda utilizzata può essere limitata con <literal>Acquire::" ++"http::Dl-Limit</literal> che accetta valori interi in kilobyte. Il valore " ++"predefinito è 0 che disattiva il limite e cerca di usare tutta la banda " ++"disponibile (notare che questa opzione implicitamente disabilita lo " ++"scaricamento da più server contemporaneamente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:395 @@@ -3966,10 -2693,6 +3900,10 @@@ msgid " "User-Agent for the http download method as some proxies allow access for " "clients only if the client uses a known identifier." msgstr "" +"<literal>Acquire::http::User-Agent</literal> può essere usata per impostare " +"un User-Agent diverso per il metodo di scaricamento http, dato che alcuni " +"proxy permettono l'accesso per i client solo se usano un identificativo " +"conosciuto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:403 @@@ -3981,12 -2704,6 +3915,12 @@@ msgid " "are not explicitly set. The <literal>Pipeline-Depth</literal> option is not " "yet supported." msgstr "" +"Le opzioni<literal>Cache-control</literal>, <literal>Timeout</literal>, " +"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> e " +"<literal>proxy</literal> funzionano per gli URI HTTPS nello stesso modo che " +"per il metodo <literal>http</literal> e assumono in modo predefinito lo " +"stesso valore, a meno di non essere impostate in modo esplicito. L'opzione " +"<literal>Pipeline-Depth</literal> non è ancora supportata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:411 @@@ -4009,27 -2726,6 +3943,25 @@@ msgid " "'<literal>SSLv3</literal>'. <literal><host>::SslForceVersion</" "literal> is the corresponding per-host option." msgstr "" +"La sotto-opzione <literal>CaInfo</literal> specifica la posizione del file " - "che contiene le informazioni sui certificati fidati; " - "<literal><host>::CaInfo</literal> è la corrispondente opzione " - "specifica per ciascun host. La sotto-opzione booleana <literal>Verify-" - "Peer</literal> determina se il certificato host del server deve o non deve " - "essere verificato usando i certificati fidati; <literal><host>" - ";::Verify-Peer</literal> è la corrispondente opzione specifica per ciascun " - "host. La sotto-opzione booleana <literal>Verify-Host</literal> determina se " - "il nome host del server deve o non deve essere verificato; " - "<literal><host>::Verify-Host</literal> è la corrispondente opzione " - "specifica per ciascun host. <literal>SslCert</literal> determina quale " - "certificato usare per l'autenticazione client; " ++"che contiene le informazioni sui certificati fidati; <literal><host>::" ++"CaInfo</literal> è la corrispondente opzione specifica per ciascun host. La " ++"sotto-opzione booleana <literal>Verify-Peer</literal> determina se il " ++"certificato host del server deve o non deve essere verificato usando i " ++"certificati fidati; <literal><host>::Verify-Peer</literal> è la " ++"corrispondente opzione specifica per ciascun host. La sotto-opzione booleana " ++"<literal>Verify-Host</literal> determina se il nome host del server deve o " ++"non deve essere verificato; <literal><host>::Verify-Host</literal> è " ++"la corrispondente opzione specifica per ciascun host. <literal>SslCert</" ++"literal> determina quale certificato usare per l'autenticazione client; " +"<literal><host>::SslCert</literal> è la corrispondente opzione " +"specifica per ciascun host. <literal>SslKey</literal> determina quale chiave " - "privata usare per l'autenticazione client; " - "<literal><host>::SslKey</literal> è la corrispondente opzione " - "specifica per ciascun host. <literal>SslForceVersion</literal> scavalca la " - "versione predefinita SSL da usare e può contenere la stringa " - "«<literal>TLSv1</literal>» o «<literal>SSLv3</literal>»; " - "<literal><host>::SslForceVersion</literal> è la corrispondente opzione " - "specifica per ciascun host." ++"privata usare per l'autenticazione client; <literal><host>::SslKey</" ++"literal> è la corrispondente opzione specifica per ciascun host. " ++"<literal>SslForceVersion</literal> scavalca la versione predefinita SSL da " ++"usare e può contenere la stringa «<literal>TLSv1</literal>» o " ++"«<literal>SSLv3</literal>»; <literal><host>::SslForceVersion</" ++"literal> è la corrispondente opzione specifica per ciascun host." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:432 @@@ -4049,22 -2745,6 +3981,21 @@@ msgid " "$(SITE_USER)</literal>, <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</" "literal> and <literal>$(SITE_PORT)</literal>." msgstr "" +"<literal>ftp::Proxy</literal> imposta il proxy predefinito da usare per gli " - "URI FTP. È nella forma standard " - "<literal>ftp://[[utente][:password]@]host[:porta]/</literal>. Si possono " - "anche specificare proxy per ciascun host usando la forma " - "<literal>ftp::Proxy::<host></literal> con la speciale parola chiave " - "<literal>DIRECT</literal> che indica di non usare proxy. Se nessuna delle " - "opzioni precedenti è impostata, viene usata la variabile d'ambiente " - "<envar>ftp_proxy</envar>. Per usare un proxy FTP è necessario impostare lo " - "script <literal>ftp::ProxyLogin</literal> nel file di configurazione. Questa " - "voce specifica i comandi da inviare per dire al server proxy a cosa " - "connettersi. Vedere &configureindex; per un esempio di come utilizzarla. Le " - "variabili di sostituzione che rappresentano i corrispondenti componenti " - "dell'URI sono <literal>$(PROXY_USER)</literal>, " - "<literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, " - "<literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> e " - "<literal>$(SITE_PORT)</literal>." ++"URI FTP. È nella forma standard <literal>ftp://[[utente][:password]@]host[:" ++"porta]/</literal>. Si possono anche specificare proxy per ciascun host " ++"usando la forma <literal>ftp::Proxy::<host></literal> con la speciale " ++"parola chiave <literal>DIRECT</literal> che indica di non usare proxy. Se " ++"nessuna delle opzioni precedenti è impostata, viene usata la variabile " ++"d'ambiente <envar>ftp_proxy</envar>. Per usare un proxy FTP è necessario " ++"impostare lo script <literal>ftp::ProxyLogin</literal> nel file di " ++"configurazione. Questa voce specifica i comandi da inviare per dire al " ++"server proxy a cosa connettersi. Vedere &configureindex; per un esempio di " ++"come utilizzarla. Le variabili di sostituzione che rappresentano i " ++"corrispondenti componenti dell'URI sono <literal>$(PROXY_USER)</literal>, " ++"<literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, <literal>" ++"$(SITE_PASS)</literal>, <literal>$(SITE)</literal> e <literal>$(SITE_PORT)</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:452 @@@ -4075,12 -2755,6 +4006,12 @@@ msgid " "instead. This can be done globally or for connections that go through a " "proxy or for a specific host (see the sample config file for examples)." msgstr "" +"Sono fornite diverse impostazioni per controllare la modalità passiva. " +"Generalmente è sicuro lasciare attiva la modalità passiva; funziona in quasi " +"tutti gli ambienti. Tuttavia in alcune situazioni è necessario disabilitare " - "la modalità passiva e usare invece la modalità per porta FTP. Ciò può " - "essere fatto globalmente o, per connessioni che passano attraverso un proxy, " - "per uno specifico host (vedere il file di configurazione d'esempio)." ++"la modalità passiva e usare invece la modalità per porta FTP. Ciò può essere " ++"fatto globalmente o, per connessioni che passano attraverso un proxy, per " ++"uno specifico host (vedere il file di configurazione d'esempio)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:459 @@@ -4090,11 -2764,6 +4021,11 @@@ msgid " "method above for syntax. You cannot set this in the configuration file and " "it is not recommended to use FTP over HTTP due to its low efficiency." msgstr "" +"È possibile usare FTP attraverso un proxy via HTTP impostando la variabile " +"d'ambiente <envar>ftp_proxy</envar> ad un URL HTTP; per la sintassi vedere " +"la spiegazione del metodo http più sopra. Non è possibile impostare questa " +"opzione nel file di configurazione e l'uso di FTP via HTTP non è raccomando " +"a causa della sua bassa efficienza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:464 @@@ -4105,18 -2774,12 +4036,18 @@@ msgid " "IPv6. Setting this to true forces their use even on IPv4 connections. Note " "that most FTP servers do not support RFC2428." msgstr "" +"L'impostazione <literal>ForceExtended</literal> controlla l'uso dei comandi " +"<literal>EPSV</literal> e <literal>EPRT</literal> della RFC 2428. Il valore " +"predefinito è falso, il che significa che questi comandi sono usati " +"solamente se la connessione di controllo è IPv6. Impostare questo valore a " +"vero forza il loro uso anche su connessioni IPv4. Notare che la maggior " +"parte dei server FTP non supporta la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:478 #, no-wrap msgid "/cdrom/::Mount \"foo\";" -msgstr "" +msgstr "/cdrom/::Mount \"pippo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:473 @@@ -4130,15 -2793,6 +4061,15 @@@ msgid " "<literal>cdrom</literal> block. It is important to have the trailing slash. " "Unmount commands can be specified using UMount." msgstr "" +"Per URI che usano il metodo <literal>cdrom</literal>, l'unica opzione " +"configurabile è il punto di mount, <literal>cdrom::Mount</literal>, che deve " +"essere il punto di mount dell'unità CD-ROM (o DVD o quello che è), come " +"specificato in <filename>/etc/fstab</filename>. È possibile fornire comandi " +"alternativi per il montaggio e lo smontaggio se il proprio punto di mount " +"non può essere elencato in fstab. La sintassi prevede di mettere " +"<placeholder type=\"literallayout\" id=\"0\"/> all'interno del blocco " +"<literal>cdrom</literal>. È importante che sia presente la barra in fondo. I " +"comandi per lo smontaggio possono essere specificati usando UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:486 @@@ -4146,16 -2800,12 +4077,14 @@@ msgid " "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" - "Per gli URI GPGV l'unica opzione configurabile è " - "<literal>gpgv::Options</literal>, che passa parametri aggiuntivi a gpgv." ++"Per gli URI GPGV l'unica opzione configurabile è <literal>gpgv::Options</" ++"literal>, che passa parametri aggiuntivi a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:497 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" --msgstr "" - "Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> " - "\"<replaceable>NomeMetodo</replaceable>\";" ++msgstr "Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> \"<replaceable>NomeMetodo</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:492 @@@ -4168,25 -2818,18 +4097,25 @@@ msgid " "the fly or the used method can be changed. The syntax for this is: " "<placeholder type=\"synopsis\" id=\"0\"/>" msgstr "" +"Elenco di tipi di compressione che sono capiti dai metodi di acquisizione. I " +"file come <filename>Packages</filename> possono essere disponibili in vari " +"formati di compressione. In modo predefinito i metodi di acquisizione " +"possono decomprimere file compressi con <command>bzip2</command>, " +"<command>lzma</command> e <command>gzip</command>; con questa impostazione " +"si possono aggiungere altri formati al volo oppure può essere cambiato il " +"metodo usato. La sintassi è: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:502 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" -msgstr "" +msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:505 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" -msgstr "" +msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:498 @@@ -4205,26 -2848,12 +4134,25 @@@ msgid " "<literal>bz2</literal> to the list explicitly as it will be added " "automatically." msgstr "" +"Inoltre si può usare il sottogruppo <literal>Order</literal> per definire in " - "quale ordine il sistema di acquisizione cerca di scaricare i file " - "compressi. Il sistema tenta con il primo tipo di compressione e in caso di " - "errore passa al successivo nell'elenco perciò, per preferire un tipo " - "rispetto ad un altro, basta mettere il tipo preferito per primo; i tipi " - "predefiniti che non sono già presenti vengono aggiunti in modo implicito " - "alla fine dell'elenco, perciò si può usare, ad esempio, <placeholder " - "type=\"synopsis\" id=\"0\"/> per preferire i file compressi con " - "<command>gzip</command> a <command>bzip2</command> e " - "<command>lzma</command>. Se si volesse preferire <command>lzma</command> " - "rispetto a <command>gzip</command> e <command>bzip2</command>, " - "l'impostazione di configurazione sarebbe: <placeholder type=\"synopsis\" " - "id=\"1\"/> Non è necessario aggiungere esplicitamente <literal>bz2</literal> " ++"quale ordine il sistema di acquisizione cerca di scaricare i file compressi. " ++"Il sistema tenta con il primo tipo di compressione e in caso di errore passa " ++"al successivo nell'elenco perciò, per preferire un tipo rispetto ad un " ++"altro, basta mettere il tipo preferito per primo; i tipi predefiniti che non " ++"sono già presenti vengono aggiunti in modo implicito alla fine dell'elenco, " ++"perciò si può usare, ad esempio, <placeholder type=\"synopsis\" id=\"0\"/> " ++"per preferire i file compressi con <command>gzip</command> a <command>bzip2</" ++"command> e <command>lzma</command>. Se si volesse preferire <command>lzma</" ++"command> rispetto a <command>gzip</command> e <command>bzip2</command>, " ++"l'impostazione di configurazione sarebbe: <placeholder type=\"synopsis\" id=" ++"\"1\"/> Non è necessario aggiungere esplicitamente <literal>bz2</literal> " +"all'elenco, dato che verrà aggiunto automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:512 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" -msgstr "" +msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:507 @@@ -4240,18 -2869,6 +4168,17 @@@ msgid " "list style. This will not override the defined list; it will only prefix " "the list with this type." msgstr "" - "Notare che " - "<literal>Dir::Bin::<replaceable>NomeMetodo</replaceable></literal> viene " - "controllata al momento dell'esecuzione. Se questa opzione è stata impostata, " - "il metodo verrà usato solo se questo file è esistente; ad esempio, per il " - "metodo <literal>bzip2</literal> l'impostazione (interna) è: <placeholder " - "type=\"literallayout\" id=\"0\"/> Notare anche che le voci nell'elenco " - "specificate nella riga di comando vengono aggiunte alla fine dell'elenco " - "specificato nei file di configurazione, ma prima delle voci predefinite. In " - "questo caso, per preferire un tipo rispetto a quelli specificati nei file di " - "configurazione si può impostare l'opzione direttamente, non nello stile per " - "elenco. Ciò non sovrascrive l'elenco definito; aggiunge solamente il tipo " - "indicato all'inizio dell'elenco." ++"Notare che <literal>Dir::Bin::<replaceable>NomeMetodo</replaceable></" ++"literal> viene controllata al momento dell'esecuzione. Se questa opzione è " ++"stata impostata, il metodo verrà usato solo se questo file è esistente; ad " ++"esempio, per il metodo <literal>bzip2</literal> l'impostazione (interna) è: " ++"<placeholder type=\"literallayout\" id=\"0\"/> Notare anche che le voci " ++"nell'elenco specificate nella riga di comando vengono aggiunte alla fine " ++"dell'elenco specificato nei file di configurazione, ma prima delle voci " ++"predefinite. In questo caso, per preferire un tipo rispetto a quelli " ++"specificati nei file di configurazione si può impostare l'opzione " ++"direttamente, non nello stile per elenco. Ciò non sovrascrive l'elenco " ++"definito; aggiunge solamente il tipo indicato all'inizio dell'elenco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:517 @@@ -4260,10 -2877,6 +4187,10 @@@ msgid " "uncompressed files a preference, but note that most archives don't provide " "uncompressed files so this is mostly only useable for local mirrors." msgstr "" +"Il tipo speciale <literal>uncompressed</literal> può essere usato per dare " +"la precedenza ai file non compressi, ma è bene notare che la maggior parte " +"degli archivi non fornisce file non compressi, perciò questo è utilizzabile " +"soprattutto per i mirror locali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:524 @@@ -4273,11 -2886,6 +4200,11 @@@ msgid " "unpacking them. This saves quite a lot of disk space at the expense of more " "CPU requirements when building the local package caches. False by default." msgstr "" +"Quando si scaricano indici compressi con <literal>gzip</literal> (Packages, " +"Sources o Translations), li mantiene localmente compressi con gzip invece di " - "spacchettarli. Questo fa risparmiare parecchio spazio su disco a spese di " - "un maggiore uso della CPU quando si creano le cache locali dei pacchetti. In " ++"spacchettarli. Questo fa risparmiare parecchio spazio su disco a spese di un " ++"maggiore uso della CPU quando si creano le cache locali dei pacchetti. In " +"modo predefinito è disabilitato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:532 @@@ -4290,19 -2898,12 +4217,19 @@@ msgid " "<filename>Translation</filename> files for every language - the long " "language codes are especially rare." msgstr "" - "La sottosezione Languages controlla quali file " - "<filename>Translation</filename> sono scaricati e in quale ordine APT cerca " - "di visualizzare le traduzioni delle descrizioni. APT cerca di visualizzare " - "la prima descrizione disponibile nella lingua elencata per prima. Le lingue " - "possono essere definite con i loro codici brevi o lunghi. Notare che non " - "tutti gli archivi forniscono i file <filename>Translation</filename> per " - "tutte le lingue; i codici di lingua lunghi sono particolarmente rari." ++"La sottosezione Languages controlla quali file <filename>Translation</" ++"filename> sono scaricati e in quale ordine APT cerca di visualizzare le " ++"traduzioni delle descrizioni. APT cerca di visualizzare la prima descrizione " ++"disponibile nella lingua elencata per prima. Le lingue possono essere " ++"definite con i loro codici brevi o lunghi. Notare che non tutti gli archivi " ++"forniscono i file <filename>Translation</filename> per tutte le lingue; i " ++"codici di lingua lunghi sono particolarmente rari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> #: apt.conf.5.xml:549 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "" +msgstr "Acquire::Languages { \"environment\"; \"it\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:537 @@@ -4325,23 -2926,6 +4252,23 @@@ msgid " "locale (where the order would be \"fr, de, en\"). <placeholder type=" "\"programlisting\" id=\"0\"/>" msgstr "" - "L'elenco predefinito include «environment» ed «en». " - "«<literal>environment</literal>» ha un significato speciale in questo " - "contesto: viene sostituito al momento dell'esecuzione dai codici di lingua " - "estratti dalla variabile d'ambiente <literal>LC_MESSAGES</literal>. Assicura " - "anche che questi codici non vengano inclusi due volte nell'elenco. Se " - "<literal>LC_MESSAGES</literal> è impostata a «C», viene usato solamente il " - "file <filename>Translation-en</filename> (se disponibile). Per forzare APT a " - "non usare alcun file Translation, usare l'impostazione " - "<literal>Acquire::Languages=none</literal>. \"<literal>none</literal>\" è un " - "altro codice con significato speciale che interrompe la ricerca di un file " - "<filename>Translation</filename> adatto. Questo dice ad APT di scaricare " - "anche queste traduzioni, senza usarle realmente a meno che l'ambiente non " - "specifichi le lingue. Perciò il seguente esempio di configurazione avrà come " - "risultato l'ordine «en, it» in una localizzazione inglese o «it, en» in una " - "italiana. Notare che «fr» viene scaricato, ma non usato, a meno che APT non " - "venga usato in una localizzazione francese (dove l'ordine sarebbe «fr, it, " - "en»). <placeholder type=\"programlisting\" id=\"0\"/>" ++"L'elenco predefinito include «environment» ed «en». «<literal>environment</" ++"literal>» ha un significato speciale in questo contesto: viene sostituito al " ++"momento dell'esecuzione dai codici di lingua estratti dalla variabile " ++"d'ambiente <literal>LC_MESSAGES</literal>. Assicura anche che questi codici " ++"non vengano inclusi due volte nell'elenco. Se <literal>LC_MESSAGES</literal> " ++"è impostata a «C», viene usato solamente il file <filename>Translation-en</" ++"filename> (se disponibile). Per forzare APT a non usare alcun file " ++"Translation, usare l'impostazione <literal>Acquire::Languages=none</" ++"literal>. \"<literal>none</literal>\" è un altro codice con significato " ++"speciale che interrompe la ricerca di un file <filename>Translation</" ++"filename> adatto. Questo dice ad APT di scaricare anche queste traduzioni, " ++"senza usarle realmente a meno che l'ambiente non specifichi le lingue. " ++"Perciò il seguente esempio di configurazione avrà come risultato l'ordine " ++"«en, it» in una localizzazione inglese o «it, en» in una italiana. Notare " ++"che «fr» viene scaricato, ma non usato, a meno che APT non venga usato in " ++"una localizzazione francese (dove l'ordine sarebbe «fr, it, en»). " ++"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:550 @@@ -4351,19 -2935,14 +4278,29 @@@ msgid " "files which are found in <filename>/var/lib/apt/lists/</filename> will be " "added to the end of the list (after an implicit \"<literal>none</literal>\")." msgstr "" +"Notare che per prevenire problemi risultanti dall'uso di APT in ambienti " +"differenti (ad esempio da parte di utenti o programmi diversi), tutti i file " +"Translation che si trovano in <filename>/var/lib/apt/lists/</filename> " +"vengono aggiunti alla fine dell'elenco (dopo un \"<literal>none</literal>\" " +"implicito)." + ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" + #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" -msgstr "" +msgstr "Directory" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4373,17 -2952,9 +4310,17 @@@ "contains the default directory to prefix on all sub-items if they do not " "start with <filename>/</filename> or <filename>./</filename>." msgstr "" +"La sezione <literal>Dir::State</literal> contiene directory che sono " +"relative a informazioni di stato locali. <literal>lists</literal> è la " +"directory in cui mettere gli elenchi scaricati dei pacchetti e " +"<literal>status</literal> è il nome del file di stato di &dpkg;. " - "<literal>preferences</literal> è il nome del file " - "<filename>preferences</filename> di APT. <literal>Dir::State</literal> " - "contiene la directory predefinita da anteporre a tutte le sottovoci che non " - "iniziano con <filename>/</filename> o <filename>./</filename>." ++"<literal>preferences</literal> è il nome del file <filename>preferences</" ++"filename> di APT. <literal>Dir::State</literal> contiene la directory " ++"predefinita da anteporre a tutte le sottovoci che non iniziano con " ++"<filename>/</filename> o <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4394,19 -2965,9 +4331,18 @@@ "pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " "default directory is contained in <literal>Dir::Cache</literal>" msgstr "" +"<literal>Dir::Cache</literal> contiene le posizioni relative alle " +"informazioni della cache locale, come le due cache dei pacchetti " +"<literal>srcpkgcache</literal> e <literal>pkgcache</literal>, così come la " - "posizione in cui mettere gli archivi scaricati: " - "<literal>Dir::Cache::archives</literal>. La generazione delle cache può " - "essere disattivata impostando il loro nome ad una stringa vuota. Questo " - "rallenta l'avvio ma fa risparmiare spazio su disco. È probabilmente " - "preferibile disattivare pkgcache piuttosto che srcpkgcache. Come per " - "<literal>Dir::State</literal>, la directory predefinita è contenuta in " - "<literal>Dir::Cache</literal>" ++"posizione in cui mettere gli archivi scaricati: <literal>Dir::Cache::" ++"archives</literal>. La generazione delle cache può essere disattivata " ++"impostando il loro nome ad una stringa vuota. Questo rallenta l'avvio ma fa " ++"risparmiare spazio su disco. È probabilmente preferibile disattivare " ++"pkgcache piuttosto che srcpkgcache. Come per <literal>Dir::State</literal>, " ++"la directory predefinita è contenuta in <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4414,25 -2975,17 +4350,25 @@@ "effect, unless it is done from the config file specified by " "<envar>APT_CONFIG</envar>)." msgstr "" +"<literal>Dir::Etc</literal> contiene la posizione dei file di " +"configurazione; <literal>sourcelist</literal> fornisce la posizione di " +"sourcelist e <literal>main</literal> è il file di configurazione predefinito " +"(l'impostazione non ha effetto, a meno che non venga fatta dal file di " +"configurazione specificato da <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " "main config file is loaded." msgstr "" +"L'impostazione <literal>Dir::Parts</literal> legge dalla directory " +"specificata tutti i frammenti di configurazione in ordine lessicale. Al " +"termine viene caricato il file di configurazione principale." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4441,16 -2994,9 +4377,15 @@@ "literal> <literal>dpkg-buildpackage</literal> and <literal>apt-cache</" "literal> specify the location of the respective programs." msgstr "" - "<literal>Dir::Bin</literal> punta ai programmi binari; " - "<literal>Dir::Bin::Methods</literal> specifica la posizione dei gestori dei " - "metodi e <literal>gzip</literal>, <literal>bzip2</literal>, " - "<literal>lzma</literal>, <literal>dpkg</literal>, <literal>apt-get</literal> " - "<literal>dpkg-source</literal> <literal>dpkg-buildpackage</literal> e " - "<literal>apt-cache</literal> specificano la posizione dei rispettivi " - "programmi." ++"<literal>Dir::Bin</literal> punta ai programmi binari; <literal>Dir::Bin::" ++"Methods</literal> specifica la posizione dei gestori dei metodi e " ++"<literal>gzip</literal>, <literal>bzip2</literal>, <literal>lzma</literal>, " ++"<literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</" ++"literal> <literal>dpkg-buildpackage</literal> e <literal>apt-cache</literal> " ++"specificano la posizione dei rispettivi programmi." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4461,17 -3007,9 +4396,17 @@@ "status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" "filename>." msgstr "" +"La voce di configurazione <literal>RootDir</literal> ha un significato " +"speciale. Se impostata, tutti i percorsi in <literal>Dir::</literal> saranno " +"relativi a <literal>RootDir</literal>, <emphasis>anche i percorsi che sono " +"specificati in modo assoluto</emphasis>. Perciò, ad esempio, se " +"<literal>RootDir</literal> è impostata a <filename>/tmp/staging</filename> e " - "<literal>Dir::State::status</literal> è impostata a " - "<filename>/var/lib/dpkg/status</filename>, allora il file di stato verrà " - "cercato in <filename>/tmp/staging/var/lib/dpkg/status</filename>." ++"<literal>Dir::State::status</literal> è impostata a <filename>/var/lib/dpkg/" ++"status</filename>, allora il file di stato verrà cercato in <filename>/tmp/" ++"staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4480,33 -3018,23 +4415,32 @@@ "z]+</literal> is silently ignored. As seen in the last default value these " "patterns can use regular expression syntax." msgstr "" +"La lista <literal>Ignore-Files-Silently</literal> può essere usata per " +"specificare quali file debbano essere ignorati in modo silenzioso da APT " +"mentre analizza i file nelle directory con i frammenti. In modo predefinito " - "un file il cui nome termina con <literal>.disabled</literal>, " - "<literal>~</literal>, <literal>.bak</literal> o " - "<literal>.dpkg-[a-z]+</literal> viene ignorato in modo silenzioso. Come si " - "vede nell'ultimo valore predefinito questi modelli possono usare una " - "sintassi con espressioni regolari." ++"un file il cui nome termina con <literal>.disabled</literal>, <literal>~</" ++"literal>, <literal>.bak</literal> o <literal>.dpkg-[a-z]+</literal> viene " ++"ignorato in modo silenzioso. Come si vede nell'ultimo valore predefinito " ++"questi modelli possono usare una sintassi con espressioni regolari." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 -#, fuzzy ++#: apt.conf.5.xml:630 msgid "APT in DSelect" -msgstr "DSelect" +msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " "section." msgstr "" +"Quando APT viene usato come metodo per &dselect; svariate direttive di " +"configurazione controllano il comportamento predefinito; queste sono nella " +"sezione <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4517,88 -3045,59 +4451,86 @@@ "downloadable (replaced with a new version for instance). <literal>pre-auto</" "literal> performs this action before downloading new packages." msgstr "" - "Modalità di pulizia della cache; i valori permessi sono " - "<literal>always</literal>, <literal>prompt</literal>, " - "<literal>auto</literal>, <literal>pre-auto</literal> e " - "<literal>never</literal>. <literal>always</literal> e " ++"Modalità di pulizia della cache; i valori permessi sono <literal>always</" ++"literal>, <literal>prompt</literal>, <literal>auto</literal>, <literal>pre-" ++"auto</literal> e <literal>never</literal>. <literal>always</literal> e " +"<literal>prompt</literal> rimuovono tutti i pacchetti dalla cache dopo ogni " +"aggiornamento; <literal>prompt</literal> (il valore predefinito) lo fa in " +"modo condizionato. <literal>auto</literal> rimuove solo quei pacchetti che " +"non sono più scaricabili (ad esempio perché sostituiti da una nuova " +"versione). <literal>pre-auto</literal> effettua questa azione prima di " +"scaricare i nuovi pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" +"Il contenuto di questa variabile è passato come opzioni per la riga di " +"comando ad &apt-get;, quando questo viene eseguito per la fase di " +"installazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" +"Il contenuto di questa variabile è passato come opzioni per la riga di " +"comando ad &apt-get;, quando questo viene eseguito per la fase di " +"aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" +"Se impostato a vero l'operazione [A]ggiorna di &dselect; chiederà sempre " +"conferma prima di continuare. Il comportamento predefinito è di chiedere " +"solo in caso di errore." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" -msgstr "" +msgstr "Come APT invoca &dpkg;" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" +"Diverse direttive di configurazione controllano il modo in cui APT invoca " +"&dpkg;; sono nella sezione <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " "&dpkg;." msgstr "" +"Questa è una lista di opzioni da passare a &dpkg;. Le opzioni devono essere " +"specificate usando la notazione per le liste e ogni voce nella lista viene " +"passata a &dpkg; come un singolo argomento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " "commands are invoked in order using <filename>/bin/sh</filename>; should any " "fail APT will abort." msgstr "" +"Questa è una lista di comandi di shell da eseguire prima/dopo l'invocazione " +"di &dpkg;. Come <literal>options</literal> deve essere specificata con la " - "notazione per le liste. I comandi sono invocati in ordine usando " - "<filename>/bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà " - "annullando." ++"notazione per le liste. I comandi sono invocati in ordine usando <filename>/" ++"bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà annullando." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4606,15 -3105,9 +4538,15 @@@ "fail APT will abort. APT will pass the filenames of all .deb files it is " "going to install to the commands, one per line on standard input." msgstr "" +"Questa è una lista di comandi di shell da eseguire prima di invocare &dpkg;. " - "Come <literal>options</literal> deve essere specificata con la notazione " - "per le liste. I comandi sono invocati in ordine usando " - "<filename>/bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà " - "annullando. APT passa i nomi di file di tutti i file .deb che sta per " - "installare ai comandi, uno per riga, sullo standard input." ++"Come <literal>options</literal> deve essere specificata con la notazione per " ++"le liste. I comandi sono invocati in ordine usando <filename>/bin/sh</" ++"filename>; se qualcuno dei comandi fallisce APT terminerà annullando. APT " ++"passa i nomi di file di tutti i file .deb che sta per installare ai comandi, " ++"uno per riga, sullo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4622,39 -3115,28 +4554,39 @@@ "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " "given to <literal>Pre-Install-Pkgs</literal>." msgstr "" +"La versione 2 di questo protocollo fa il dump di più informazioni, inclusi " +"la versione del protocollo, lo spazio di configurazione di APT, e i " +"pacchetti, file e versioni che vengono modificati. La versione 2 viene " +"abilitata impostando <literal>DPkg::Tools::options::cmd::Version</literal> a " - "2. <literal>cmd</literal> è un comando passato a <literal>Pre-Install-" - "Pkgs</literal>." ++"2. <literal>cmd</literal> è un comando passato a <literal>Pre-Install-Pkgs</" ++"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" +"APT cambia la directory attuale in questa prima di invocare &dpkg;; il " +"valore predefinito è <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" +"Queste opzioni sono passate a &dpkg-buildpackage; quando vengono compilati i " +"pacchetti; il valore predefinito disabilita la firma e produce tutti i " +"binari." #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" -msgstr "" +msgstr "Uso dei trigger di dpkg (e relative opzioni)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4667,22 -3149,9 +4599,22 @@@ "reporting such that all front-ends will currently stay around half (or more) " "of the time in the 100% state while it actually configures all packages." msgstr "" +"APT può invocare &dpkg; in modo tale da permettergli di fare un uso più " +"aggressivo dei trigger su chiamate multiple di &dpkg;. Senza opzioni " +"ulteriori &dpkg; usa i trigger una volta sola per ogni volta che viene " +"eseguito. Attivando queste opzioni si può quindi diminuire il tempo " +"necessario per effettuare l'installazione o l'aggiornamento. Notare che " +"questo è pensato per attivare queste opzioni in modo predefinito nel futuro " +"ma, dato che cambia drasticamente il modo in cui APT chiama &dpkg;, " +"necessita di essere testato ancora molto. <emphasis>Queste opzioni sono " +"perciò al momento sperimentali e non dovrebbero essere usate in ambienti di " +"produzione.</emphasis> Inoltre rende difettosi i rapporti sull'avanzamento, " +"tanto che che tutte le interfacce attualmente rimangono per metà (o più) del " +"tempo nello stato 100% mentre in realtà stanno venendo configurati i " +"pacchetti." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4690,13 -3159,9 +4622,13 @@@ "DPkg::ConfigurePending \"true\";\n" "DPkg::TriggersPending \"true\";" msgstr "" +"DPkg::NoTriggers \"true\";\n" +"PackageManager::Configure \"smart\";\n" +"DPkg::ConfigurePending \"true\";\n" +"DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4708,19 -3173,9 +4640,19 @@@ "see e.g. <command>dpkg --audit</command>. A defensive option combination " "would be <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" +"Notare che non è garantito che APT supporterà queste opzioni o che queste " +"opzioni non causeranno (grossi) problemi in futuro. Se i rischi e i problemi " +"attuali legati a queste opzioni sono chiari, ma si è abbastanza coraggiosi " +"da volere aiutare a testarle, creare un nuovo file di configurazione e " +"provare una combinazione di opzioni. Segnalare ogni bug, problema o " +"miglioramento che si presenta e assicurarsi di indicare nella segnalazione " +"quali opzioni sono state usate. Potrebbe anche essere utile chiedere aiuto a " +"&dpkg; per il debug; vedere ad esempio <command>dpkg --audit</command>. Una " - "combinazione di opzioni sulla difensiva sarebbe <placeholder " - "type=\"literallayout\" id=\"0\"/>" ++"combinazione di opzioni sulla difensiva sarebbe <placeholder type=" ++"\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4731,19 -3186,9 +4663,18 @@@ "calls to &dpkg; - now APT will also add this flag to the unpack and remove " "calls." msgstr "" +"Aggiunge l'opzione --no-triggers a tutte le invocazioni di &dpkg; (tranne la " - "chiamata ConfigurePending). Se si è interessati a capire cosa ciò " - "significhi veramente, vedere &dpkg;. In breve: quando questa opzione è " - "presente &dpkg; non esegue i trigger, a meno che non sia esplicitamente " - "chiamato per farlo con una chiamata aggiuntiva. Notare che questa opzione " - "esiste (non documentata) anche in versioni più vecchie di APT, con un " - "significato leggermente diverso: prima queste opzioni aggiungevano solamente " - "--no-triggers alle chiamate di &dpkg; per la configurazione, ora APT " - "aggiunge questa opzione anche alle chiamate per lo spacchettamento e la " - "rimozione." ++"chiamata ConfigurePending). Se si è interessati a capire cosa ciò significhi " ++"veramente, vedere &dpkg;. In breve: quando questa opzione è presente &dpkg; " ++"non esegue i trigger, a meno che non sia esplicitamente chiamato per farlo " ++"con una chiamata aggiuntiva. Notare che questa opzione esiste (non " ++"documentata) anche in versioni più vecchie di APT, con un significato " ++"leggermente diverso: prima queste opzioni aggiungevano solamente --no-" ++"triggers alle chiamate di &dpkg; per la configurazione, ora APT aggiunge " ++"questa opzione anche alle chiamate per lo spacchettamento e la rimozione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4758,23 -3203,9 +4689,22 @@@ "the next option by default, as otherwise the system could end in an " "unconfigured and potentially unbootable state." msgstr "" +"Valori permessi sono «<literal>all</literal>», «<literal>smart</literal>» e " +"«<literal>no</literal>». Il valore predefinito è «<literal>all</literal>», " - "il che fa sì che APT configuri tutti i pacchetti. Il modo " - "«<literal>smart</literal>» (intelligente) è quello di configurare solo i " - "pacchetti che devono essere configurati prima che possa essere spacchettato " - "un altro pacchetto (Pre-Depends), e lasciare che il resto venga configurato " - "da &dpkg; con una chiamata generata dall'opzione ConfigurePending (vedere " - "più sotto). D'altro canto, «<literal>no</literal>» non configura nulla e si " - "affida completamente a &dpkg; per la configurazione (che al momento fallisce " - "se viene incontrata una relazione Pre-Depends). Impostare questo parametro " - "ad un qualsiasi valore diverso da <literal>all</literal> attiva " - "implicitamente in modo predefinito anche l'opzione successiva, dato che " - "altrimenti il sistema potrebbe finire in uno stato non configurato e " - "potenzialmente non avviabile." ++"il che fa sì che APT configuri tutti i pacchetti. Il modo «<literal>smart</" ++"literal>» (intelligente) è quello di configurare solo i pacchetti che devono " ++"essere configurati prima che possa essere spacchettato un altro pacchetto " ++"(Pre-Depends), e lasciare che il resto venga configurato da &dpkg; con una " ++"chiamata generata dall'opzione ConfigurePending (vedere più sotto). D'altro " ++"canto, «<literal>no</literal>» non configura nulla e si affida completamente " ++"a &dpkg; per la configurazione (che al momento fallisce se viene incontrata " ++"una relazione Pre-Depends). Impostare questo parametro ad un qualsiasi " ++"valore diverso da <literal>all</literal> attiva implicitamente in modo " ++"predefinito anche l'opzione successiva, dato che altrimenti il sistema " ++"potrebbe finire in uno stato non configurato e potenzialmente non avviabile." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4783,17 -3214,9 +4713,16 @@@ "want to run APT multiple times in a row - e.g. in an installer. In these " "sceneries you could deactivate this option in all but the last run." msgstr "" - "Se questa opzione è impostata, APT invoca <command>dpkg --configure " - "--pending</command> per lasciare che &dpkg; gestisca tutte le configurazioni " - "e i trigger necessari. Questa opzione viene attivata automaticamente in " - "modo predefinito se l'opzione precedente non è impostata a " - "<literal>all</literal>, ma potrebbe essere utile disattivarla se si desidera " - "eseguire APT più volte di seguito, ad esempio in un installatore. In uno " - "scenario simile si può disattivare questa opzione in tutte le esecuzioni " - "tranne l'ultima." ++"Se questa opzione è impostata, APT invoca <command>dpkg --configure --" ++"pending</command> per lasciare che &dpkg; gestisca tutte le configurazioni e " ++"i trigger necessari. Questa opzione viene attivata automaticamente in modo " ++"predefinito se l'opzione precedente non è impostata a <literal>all</" ++"literal>, ma potrebbe essere utile disattivarla se si desidera eseguire APT " ++"più volte di seguito, ad esempio in un installatore. In uno scenario simile " ++"si può disattivare questa opzione in tutte le esecuzioni tranne l'ultima." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4801,16 -3224,9 +4730,15 @@@ "showstopper for Pre-Dependencies (see debbugs #526774). Note that this will " "process all triggers, not only the triggers needed to configure this package." msgstr "" +"Utile per la configurazione <literal>smart</literal> dato che un pacchetto " - "che ha trigger in sospeso non è considerato come " - "<literal>installato</literal> e &dpkg; attualmente lo tratta come " - "<literal>spacchettato</literal> che è un ostacolo per le relazioni Pre-" - "Depends (vedere il bug Debian #526774). Notare che questo elaborerà tutti i " - "trigger, non solo quelli necessari per configurare il pacchetto in " - "questione." ++"che ha trigger in sospeso non è considerato come <literal>installato</" ++"literal> e &dpkg; attualmente lo tratta come <literal>spacchettato</literal> " ++"che è un ostacolo per le relazioni Pre-Depends (vedere il bug Debian " ++"#526774). Notare che questo elaborerà tutti i trigger, non solo quelli " ++"necessari per configurare il pacchetto in questione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4820,15 -3236,9 +4748,15 @@@ "\tPreDepends 50;\n" "};" msgstr "" +"OrderList::Score {\n" +"\tDelete 500;\n" +"\tEssential 200;\n" +"\tImmediate 10;\n" +"\tPreDepends 50;\n" +"};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4840,45 -3250,28 +4768,44 @@@ "scoring. The following example shows the settings with their default " "values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" +"I pacchetti essenziali (e le loro dipendenze) dovrebbero essere configurati " +"immediatamente dopo essere stati spacchettati. È una buona idea farlo " +"abbastanza presto nel processo di aggiornamento, dato che queste chiamate di " - "configurazione al momento richiedono anche " - "<literal>DPkg::TriggersPending</literal> che esegue un certo numero di " - "trigger (che potrebbero non essere necessari). I pacchetti essenziali " - "ottengono in modo predefinito un punteggio alto, ma il contrassegno di " - "immediatezza è relativamente basso (un pacchetto che ha una relazione Pre-" - "Depends è valutato con un punteggio maggiore). Queste opzioni e le altre " - "nello stesso gruppo possono essere usate per cambiare il punteggio. " - "L'esempio seguente mostra le impostazioni con i loro valori predefiniti. " - "<placeholder type=\"literallayout\" id=\"0\"/>" ++"configurazione al momento richiedono anche <literal>DPkg::TriggersPending</" ++"literal> che esegue un certo numero di trigger (che potrebbero non essere " ++"necessari). I pacchetti essenziali ottengono in modo predefinito un " ++"punteggio alto, ma il contrassegno di immediatezza è relativamente basso (un " ++"pacchetto che ha una relazione Pre-Depends è valutato con un punteggio " ++"maggiore). Queste opzioni e le altre nello stesso gruppo possono essere " ++"usate per cambiare il punteggio. L'esempio seguente mostra le impostazioni " ++"con i loro valori predefiniti. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" -msgstr "" +msgstr "Opzioni Periodic e Archives" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " "<literal>/etc/cron.daily/apt</literal> script. See the top of this script " "for the brief documentation of these options." msgstr "" - "I gruppi di opzioni <literal>APT::Periodic</literal> e " - "<literal>APT::Archives</literal> configurano il comportamento degli " - "aggiornamenti periodici di apt, ciò viene fatto attraverso lo script " - "<literal>/etc/cron.daily/apt</literal>. Per una breve documentazione di " - "queste opzioni, vedere all'inizio dello script." ++"I gruppi di opzioni <literal>APT::Periodic</literal> e <literal>APT::" ++"Archives</literal> configurano il comportamento degli aggiornamenti " ++"periodici di apt, ciò viene fatto attraverso lo script <literal>/etc/cron." ++"daily/apt</literal>. Per una breve documentazione di queste opzioni, vedere " ++"all'inizio dello script." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" -msgstr "" +msgstr "Opzioni di debug" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4887,198 -3280,148 +4814,197 @@@ "literal>. Most of these options are not interesting to a normal user, but a " "few may be:" msgstr "" +"Se si abilitano le opzioni nella sezione <literal>Debug::</literal> verranno " +"inviate delle informazioni di debug nel flusso dello standard error del " +"programma usando le librerie <literal>apt</literal>, o verranno abilitate " +"speciali modalità del programma che sono principalmente utili per far il " +"debug del comportamento di <literal>apt</literal>. La maggior parte di " +"queste opzioni non è interessante per l'utente normale, ma alcune potrebbero " +"esserlo:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" "literal>." msgstr "" +"<literal>Debug::pkgProblemResolver</literal> abilita l'output relativo alle " - "decisioni prese da <literal>dist-upgrade, upgrade, install, remove, " - "purge</literal>." ++"decisioni prese da <literal>dist-upgrade, upgrade, install, remove, purge</" ++"literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" "literal>) as a non-root user." msgstr "" +"<literal>Debug::NoLocking</literal> disabilita tutti i lock sui file. Può " +"essere usato per eseguire alcune operazioni (ad esempio <literal>apt-get -s " +"install</literal>) come utente non root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." msgstr "" +"<literal>Debug::pkgDPkgPM</literal> stampa l'effettiva riga di comando ogni " +"volta che <literal>apt</literal> invoca &dpkg;." #. TODO: provide a #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" +"<literal>Debug::IdentCdrom</literal> disabilita l'inclusione di dati statfs " +"negli ID dei CD-ROM." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." -msgstr "" +msgstr "Segue un elenco completo delle opzioni di debug per apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" - "Stampa informazioni relative all'accesso a fonti " - "<literal>cdrom://</literal>." ++"Stampa informazioni relative all'accesso a fonti <literal>cdrom://</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" +"Stampa informazioni relative alla verifica delle firme di cifratura fatta " +"usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" +"Produce in output informazioni sul processo di accesso a raccolte di " +"pacchetti memorizzati su CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" - "Descrive il processo di risoluzione delle dipendenze di compilazione in " - "&apt-get;." ++"Descrive il processo di risoluzione delle dipendenze di compilazione in &apt-" ++"get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" +"Produce in output ogni hash crittografico che viene generato dalle librerie " +"<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " "a CD-ROM." msgstr "" +"Quando viene generato l'ID per un CD-ROM, non include informazioni da " +"<literal>statfs</literal>, cioè il numero di blocchi usati e liberi sul file " +"system del CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" +"Disabilita tutti i lock sui file. Per esempio permette di eseguire due " +"istanze di <quote><literal>apt-get update</literal></quote> " +"contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" +"Registra nel log quando vengono aggiunte o rimosse voci dalla coda globale " +"degli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" +"Produce in output messaggi di stato ed errori relativi alla verifica dei " +"codici di controllo e delle firme di cifratura dei file scaricati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" +"Produce in output informazioni sullo scaricamento e l'applicazione dei diff " +"per gli elenchi degli indici dei pacchetti, e gli errori relativi a tali " +"diff." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" +"Produce in output informazioni relative all'applicazione di patch agli " +"elenchi dei pacchetti di apt quando vengono scaricati i diff per gli indici " +"invece degli indici completi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" +"Registra nel log tutte le interazioni con i sottoprocessi che effettuano " +"realmente gli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" +"Registra nel log gli eventi relativi allo stato di automaticamente " +"installato dei pacchetti e alla rimozione dei pacchetti non utilizzati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -5086,15 -3429,9 +5012,15 @@@ "to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" "pkgProblemResolver</literal> for that." msgstr "" +"Genera messaggi di debug che descrivono quali pacchetti vengono " +"automaticamente installati per risolvere delle dipendenze. Corrisponde al " +"passo iniziale di installazione automatica effettuato, ad esempio, in " +"<literal>apt-get install</literal> e non all'intero risolutore di dipendenze " - "di <literal>apt</literal>; per quello vedere " - "<literal>Debug::pkgProblemResolver</literal>." ++"di <literal>apt</literal>; per quello vedere <literal>Debug::" ++"pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -5110,117 -3447,84 +5036,116 @@@ "version. <literal>section</literal> is the name of the section the package " "appears in." msgstr "" +"Genera messaggi di debug che descrivono quali pacchetto vengono " +"contrassegnati per essere mantenuti/installati/rimossi mentre il " +"ProblemResolver fa il suo lavoro. Ogni aggiunta o rimozione può causare " +"azioni aggiuntive che vengono mostrate con un rientro di due spazi in più " - "sotto alla voce originale. Il formato per ogni riga è " - "<literal>MarkKeep</literal>, <literal>MarkDelete</literal> o " - "<literal>MarkInstall</literal> seguito da <literal>nome-pacchetto <a.b.c " - "-> d.e.f | x.y.z> (sezione)</literal> dove <literal>a.b.c</literal> è " - "l'attuale versione del pacchetto, <literal>d.e.f</literal> è la versione " - "presa in considerazione per l'installazione e <literal>x.y.z</literal> è una " - "versione più recente, ma non considerata per l'installazione (a causa di un " - "punteggio di pin più basso). Gli ultimi due possono essere omessi se non " - "esistono o se sono uguali alla versione installata. " - "<literal>sezione</literal> è il nome della sezione in cui compare il " - "pacchetto." ++"sotto alla voce originale. Il formato per ogni riga è <literal>MarkKeep</" ++"literal>, <literal>MarkDelete</literal> o <literal>MarkInstall</literal> " ++"seguito da <literal>nome-pacchetto <a.b.c -> d.e.f | x.y.z> " ++"(sezione)</literal> dove <literal>a.b.c</literal> è l'attuale versione del " ++"pacchetto, <literal>d.e.f</literal> è la versione presa in considerazione " ++"per l'installazione e <literal>x.y.z</literal> è una versione più recente, " ++"ma non considerata per l'installazione (a causa di un punteggio di pin più " ++"basso). Gli ultimi due possono essere omessi se non esistono o se sono " ++"uguali alla versione installata. <literal>sezione</literal> è il nome della " ++"sezione in cui compare il pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" +"Quando invoca &dpkg;, produce in output l'esatta riga di comando usata, con " +"gli argomenti separati da un singolo carattere di spazio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" +"Produce in output tutti i dati ricevuti da &dpkg; sul descrittore del file " +"di stato ed ogni errore incontrato durante la sua analisi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" - "Genera un trace dell'algoritmo che decide l'ordine in cui " - "<literal>apt</literal> deve passare i pacchetti a &dpkg;." ++"Genera un trace dell'algoritmo che decide l'ordine in cui <literal>apt</" ++"literal> deve passare i pacchetti a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" +"Produce in output messaggi di stato che indicano i passi effettuati " +"nell'invocazione di &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." -msgstr "" +msgstr "Produce in output la priorità di ogni elenco di pacchetti all'avvio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" +"Traccia l'esecuzione del risolutore di dipendenze (questo ha effetto solo " +"per ciò che accade quando viene incontrato un problema complesso di " +"dipendenze)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " "described in <literal>Debug::pkgDepCache::Marker</literal>" msgstr "" +"Visualizza un elenco di tutti i pacchetti installati con il loro punteggio " +"calcolato che è usato dal pkgProblemResolver. La descrizione dei pacchetti è " +"la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" - "Stampa informazioni sui fornitori lette da " - "<filename>/etc/apt/vendors.list</filename>." ++"Stampa informazioni sui fornitori lette da <filename>/etc/apt/vendors.list</" ++"filename>." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" -msgstr "" +msgstr "Esempi" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" +"&configureindex; è un file di configurazione che mostra valori d'esempio per " +"tutte le opzioni possibili." #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." -msgstr "" +msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt_preferences.5.xml:32 msgid "Preference control file for APT" -msgstr "" +msgstr "file di controllo delle preferenze per APT" #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:37 @@@ -5230,10 -3534,6 +5155,10 @@@ msgid " "can be used to control which versions of packages will be selected for " "installation." msgstr "" +"Il file delle preferenze di APT, <filename>/etc/apt/preferences</filename> e " - "i file frammento nella directory " - "<filename>/etc/apt/preferences.d/</filename> possono essere usati per " - "controllare quale versione verrà selezionata per l'installazione." ++"i file frammento nella directory <filename>/etc/apt/preferences.d/</" ++"filename> possono essere usati per controllare quale versione verrà " ++"selezionata per l'installazione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:42 @@@ -5247,16 -3547,6 +5172,16 @@@ msgid " "APT assigns to package versions by default, thus giving the user control " "over which one is selected for installation." msgstr "" +"Quando il file &sources-list; contiene riferimenti a più di una " +"distribuzione, potrebbero essere disponibili per l'installazione diverse " +"versioni di un pacchetto (ad esempio <literal>stable</literal> e " +"<literal>testing</literal>). APT assegna una priorità a ciascuna versione " +"che è disponibile. Tenendo in considerazione i limiti imposti dalle " +"dipendenze, <command>apt-get</command> seleziona per l'installazione la " +"versione con la più alta priorità. Le preferenze di APT scavalcano le " +"priorità che APT assegna in modo predefinito alle versioni dei pacchetti, " +"dando perciò all'utente il controllo su quale venga selezionata per " +"l'installazione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:52 @@@ -5267,11 -3557,6 +5192,11 @@@ msgid " "the &sources-list; file. The APT preferences do not affect the choice of " "instance, only the choice of version." msgstr "" +"Quando il file &sources-list; contiene riferimenti a più di una fonte, " +"potrebbero essere disponibili più istanze della stessa versione di un " +"pacchetto. In questo caso <command>apt-get</command> scarica l'istanza " +"elencata per prima nel file &sources-list;. Le preferenze di APT non hanno " +"effetto sulla scelta dell'istanza, ma solo sulla scelta della versione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:59 @@@ -5286,17 -3571,6 +5211,17 @@@ msgid " "older or newer releases, or together with other packages from different " "releases. You have been warned." msgstr "" +"Le preferenze sono uno strumento potente nelle mani di un amministratore di " +"sistema, ma possono anche diventare il suo incubo peggiore se usate con poca " +"cautela! APT non mette in dubbio le preferenze scelte, perciò impostazioni " +"sbagliate possono avere come risultato pacchetti non installabili o " +"decisioni sbagliate durante l'aggiornamento dei pacchetti. Se vengono " +"mescolati più rilasci di distribuzione può sorgere un numero ancora più " +"grande di problemi, se non si sono capiti bene i concetti spiegati nei " +"prossimi paragrafi. I pacchetti inclusi in uno specifico rilascio non sono " +"testati (e perciò non sempre funzionano come atteso) in rilasci più vecchi o " +"più nuovi, o insieme ad altri pacchetti da altri rilasci. Ci si consideri " +"avvertiti." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:70 @@@ -5310,34 -3584,23 +5235,32 @@@ msgid " "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in which " "case it will be silently ignored." msgstr "" - "Notare che i file nella directory " - "<filename>/etc/apt/preferences.d</filename> vengono analizzati in ordine " - "alfanumerico crescente e i loro nomi devono conformarsi alle seguenti " - "convenzioni: non devono avere estensione o avere estensione " - "\"<literal>pref</literal>\", e possono contenere solo caratteri alfanumerici, " - "trattini (-), trattini bassi (_) e punti (.). In caso contrario APT stampa " - "un messaggio che informa che un file è stato ignorato, a meno che tale file " - "non corrisponda ad un modello nell'elenco di configurazione <literal>Dir" - "::Ignore-Files-Silently</literal>, nel qual caso viene ignorato in modo " - "silenzioso." ++"Notare che i file nella directory <filename>/etc/apt/preferences.d</" ++"filename> vengono analizzati in ordine alfanumerico crescente e i loro nomi " ++"devono conformarsi alle seguenti convenzioni: non devono avere estensione o " ++"avere estensione \"<literal>pref</literal>\", e possono contenere solo " ++"caratteri alfanumerici, trattini (-), trattini bassi (_) e punti (.). In " ++"caso contrario APT stampa un messaggio che informa che un file è stato " ++"ignorato, a meno che tale file non corrisponda ad un modello nell'elenco di " ++"configurazione <literal>Dir::Ignore-Files-Silently</literal>, nel qual caso " ++"viene ignorato in modo silenzioso." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:79 msgid "APT's Default Priority Assignments" -msgstr "" +msgstr "Assegnazioni della priorità predefinite di APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:94 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" - msgstr "<command>apt-get install -t testing <replaceable>un-" - "pacchetto</replaceable></command>\n" -msgstr "" ++msgstr "<command>apt-get install -t testing <replaceable>un-pacchetto</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:97 #, no-wrap msgid "APT::Default-Release \"stable\";\n" -msgstr "" +msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:81 @@@ -5354,19 -3617,6 +5277,18 @@@ msgid " "specifically pinned packages. For example, <placeholder type=" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" msgstr "" +"Se non c'è alcun file di preferenze o non c'è nel file una voce applicabile " +"ad una versione particolare, allora la priorità assegnata a quella versione " +"è la priorità della distribuzione a cui essa appartiene. È possibile " +"distinguere una distribuzione, il «rilascio obiettivo», che riceve in modo " +"predefinito una priorità maggiore delle altre distribuzioni. Il rilascio " - "obiettivo può essere impostato nella riga di comando di <command>apt-" - "get</command> o nel file di configurazione di APT, " - "<filename>/etc/apt/apt.conf</filename>. Notare che questa impostazione ha " - "precedenza rispetto a qualsiasi priorità generale sia stata impostata nel " - "file <filename>/etc/apt/preferences</filename> descritto in seguito, ma non " - "rispetto a pacchetti per cui è specificatamente indicato un pin. Per " - "esempio, <placeholder type=\"programlisting\" id=\"0\"/> <placeholder " - "type=\"programlisting\" id=\"1\"/>" ++"obiettivo può essere impostato nella riga di comando di <command>apt-get</" ++"command> o nel file di configurazione di APT, <filename>/etc/apt/apt.conf</" ++"filename>. Notare che questa impostazione ha precedenza rispetto a qualsiasi " ++"priorità generale sia stata impostata nel file <filename>/etc/apt/" ++"preferences</filename> descritto in seguito, ma non rispetto a pacchetti per " ++"cui è specificatamente indicato un pin. Per esempio, <placeholder type=" ++"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:101 @@@ -5374,13 -3624,11 +5296,13 @@@ msgid " "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" msgstr "" +"Se il rilascio obiettivo è stato specificato, allora APT usa il seguente " +"algoritmo per impostare le priorità delle versioni di un pacchetto. Assegna:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:106 msgid "priority 1" -msgstr "" +msgstr "priorità 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:107 @@@ -5390,15 -3638,11 +5312,15 @@@ msgid " "emphasis> as \"ButAutomaticUpgrades: yes\" like the Debian " "<literal>experimental</literal> archive." msgstr "" +"alle versioni che provengono da archivi che, nei loro file " +"<filename>Release</filename>, sono contrassegnati come «NotAutomatic: yes», " +"ma non come «ButAutomaticUpgrades: yes», come l'archivio Debian " +"<literal>experimental</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:113 msgid "priority 100" -msgstr "" +msgstr "priorità 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:114 @@@ -5408,16 -3652,11 +5330,16 @@@ msgid " "as \"NotAutomatic: yes\" and \"ButAutomaticUpgrades: yes\" like the Debian " "backports archive since <literal>squeeze-backports</literal>." msgstr "" +"alla versione che è già installata (se esiste) e alla versioni che " +"provengono da archivi che, nei loro file <filename>Release</filename>, sono " +"contrassegnati come «NotAutomatic: yes» e «ButAutomaticUpgrades: yes», come " - "l'archivio Debian backports a partire da <literal>squeeze-" - "backports</literal>." ++"l'archivio Debian backports a partire da <literal>squeeze-backports</" ++"literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:121 msgid "priority 500" -msgstr "" +msgstr "priorità 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:122 @@@ -5425,20 -3664,17 +5347,20 @@@ msgid " "to the versions that are not installed and do not belong to the target " "release." msgstr "" +"alle versioni che non sono installate e non appartengono al rilascio " +"obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:126 msgid "priority 990" -msgstr "" +msgstr "priorità 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:127 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" +"alle versioni che non sono installate e appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:132 @@@ -5450,13 -3686,6 +5372,13 @@@ msgid " "- these versions get the priority 1 or priority 100 if it is additionally " "marked as \"ButAutomaticUpgrades: yes\"." msgstr "" +"Se il rilascio obiettivo non è stato specificato, allora APT assegna " +"semplicemente la priorità 100 a tutte le versioni di pacchetto installate e " +"la priorità 500 a tutte le versioni di pacchetto non installate, tranne le " - "versioni che provengono da archivi che, nei loro file " - "<filename>Release</filename>, sono contrassegnati come «NotAutomatic: yes»; " - "queste ultime versioni hanno priorità 1, oppure priorità 100 se sono in " - "aggiunta contrassegnate come «ButAutomaticUpgrades: yes»." ++"versioni che provengono da archivi che, nei loro file <filename>Release</" ++"filename>, sono contrassegnati come «NotAutomatic: yes»; queste ultime " ++"versioni hanno priorità 1, oppure priorità 100 se sono in aggiunta " ++"contrassegnate come «ButAutomaticUpgrades: yes»." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:139 @@@ -5464,8 -3693,6 +5386,8 @@@ msgid " "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." msgstr "" +"Per determinare quale versione di un pacchetto installare APT applica poi le " +"seguenti regole, elencate in ordine di precedenza." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:142 @@@ -5476,18 -3703,11 +5398,18 @@@ msgid " "exceeds 1000; such high priorities can only be set in the preferences file. " "Note also that downgrading a package can be risky.)" msgstr "" +"Non retrocede mai ad una versione più bassa, a meno che la priorità della " +"versione disponibile non sia maggiore di 1000. («Retrocedere» significa " +"installare una versione meno recente di un pacchetto al posto di una più " +"recente. Notare che nessuna delle priorità predefinite di APT è maggiore di " +"1000; priorità così alte possono solo essere impostate nel file delle " +"preferenze. Notare inoltre che retrocedere un pacchetto può essere " +"rischioso.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:148 msgid "Install the highest priority version." -msgstr "" +msgstr "Installa la versione con la priorità più alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:149 @@@ -5495,8 -3715,6 +5417,8 @@@ msgid " "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." msgstr "" +"Se due o più versioni hanno la stessa priorità, installa la versione più " +"recente (cioè quella con il numero di versione più alto)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:152 @@@ -5505,10 -3723,6 +5427,10 @@@ msgid " "the packages differ in some of their metadata or the <literal>--reinstall</" "literal> option is given, install the uninstalled one." msgstr "" +"Se due o più versioni hanno la stessa priorità e lo stesso numero di " +"versione, ma hanno una qualche differenza in alcuni dei loro metadati, " +"oppure viene usata l'opzione <literal>--reinstall</literal>, installa quella " +"non installata." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:158 @@@ -5519,11 -3733,6 +5441,12 @@@ msgid " "upgraded when <command>apt-get install <replaceable>some-package</" "replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" +"In una situazione tipica, la versione installata di un pacchetto (priorità " +"100) non è così recente come una delle versioni disponibili dalle fonti " +"elencate nel file &sources-list; (priorità 500 o 990). Quindi il pacchetto " - "viene aggiornato quando viene eseguito <command>apt-get install <replaceable" - ">un-pacchetto</replaceable></command> o <command>apt-get upgrade</command>." ++"viene aggiornato quando viene eseguito <command>apt-get install " ++"<replaceable>un-pacchetto</replaceable></command> o <command>apt-get " ++"upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:165 @@@ -5533,11 -3742,6 +5456,11 @@@ msgid " "downgraded when <command>apt-get install <replaceable>some-package</" "replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" - "Più raramente, la versione installata di un pacchetto è " - "<emphasis>più</emphasis> recente di qualsiasi altra versione disponibile. Il " - "pacchetto non viene retrocesso quando viene eseguito <command>apt-get " - "install <replaceable>un-pacchetto</replaceable></command> o <command>apt-get " ++"Più raramente, la versione installata di un pacchetto è <emphasis>più</" ++"emphasis> recente di qualsiasi altra versione disponibile. Il pacchetto non " ++"viene retrocesso quando viene eseguito <command>apt-get install " ++"<replaceable>un-pacchetto</replaceable></command> o <command>apt-get " +"upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:170 @@@ -5550,18 -3754,11 +5473,18 @@@ msgid " "<emphasis>one</emphasis> of the available versions has a higher priority " "than the installed version." msgstr "" +"A volte la versione installata di un pacchetto è più recente di quella che " +"appartiene al rilascio obiettivo, ma non così recente come la versione che " +"appartiene a qualche altra distribuzione. Un tale pacchetto verrà di fatto " +"aggiornato quando viene eseguito <command>apt-get install <replaceable>un-" +"pacchetto</replaceable></command> o <command>apt-get upgrade</command>, " +"perché almeno <emphasis>una</emphasis> delle versioni disponibili ha una " +"priorità più alta di quella installata." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:179 msgid "The Effect of APT Preferences" -msgstr "" +msgstr "L'effetto delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:181 @@@ -5571,10 -3768,6 +5494,10 @@@ msgid " "records separated by blank lines. Records can have one of two forms, a " "specific form and a general form." msgstr "" +"Il file delle preferenze di APT permette all'amministratore di sistema di " +"controllare l'assegnazione delle priorità. Il file consiste di uno o più " +"record su più righe, separati da righe vuote. I record possono avere una tra " +"due forme: una forma specifica e una forma generica." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:187 @@@ -5586,12 -3779,6 +5509,12 @@@ msgid " "\"<literal>&good-perl;</literal>\". Multiple packages can be separated by " "spaces." msgstr "" +"La forma specifica assegna una priorità (una «Pin-Priority») ad uno o più " +"pacchetti specifici con una versione o un intervallo di versioni specifici. " +"Ad esempio, il record seguente assegna una priorità alta a tutte le versioni " - "del pacchetto <filename>perl</filename> il cui numero di versione inizia " - "con «<literal>&good-perl;</literal>». Più pacchetti possono essere separati " - "da spazi." ++"del pacchetto <filename>perl</filename> il cui numero di versione inizia con " ++"«<literal>&good-perl;</literal>». Più pacchetti possono essere separati da " ++"spazi." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:194 @@@ -5601,9 -3788,6 +5524,9 @@@ msgid " "Pin: version &good-perl;*\n" "Pin-Priority: 1001\n" msgstr "" +"Package: perl\n" +"Pin: version &good-perl;*\n" +"Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:200 @@@ -5614,11 -3798,6 +5537,11 @@@ msgid " "versions coming from a particular Internet site, as identified by the site's " "fully qualified domain name." msgstr "" +"La forma generica assegna una priorità a tutte le versioni di pacchetto in " +"una data distribuzione (cioè a tutte le versioni dei pacchetti che sono " +"elencati in un determinato file <filename>Release</filename>) o a tutte le " +"versioni di pacchetto che provengono da un particolare sito Internet " +"identificato in base al suo nome di dominio pienamente qualificato." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:206 @@@ -5627,9 -3806,6 +5550,9 @@@ msgid " "of packages. For example, the following record assigns a high priority to " "all package versions available from the local site." msgstr "" +"Queste voci in forma generica nel file di preferenze di APT si applicano " +"solo ai gruppi di pacchetti. Per esempio, il record seguente assegna una " +"priorità alta a tutte le versioni di pacchetto disponibili dal sito locale." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:211 @@@ -5639,9 -3815,6 +5562,9 @@@ msgid " "Pin: origin \"\"\n" "Pin-Priority: 999\n" msgstr "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:216 @@@ -5651,10 -3824,6 +5574,10 @@@ msgid " "high priority to all versions available from the server identified by the " "hostname \"ftp.de.debian.org\"" msgstr "" - "Un avvertimento: la parola chiave usata in questo caso è " - "«<literal>origin</literal>» e può essere usata per indicare un nome host. Il " - "record seguente assegna una priorità alta a tutte le versioni disponibili " - "dal server identificato dal nome host «ftp.de.debian.org»" ++"Un avvertimento: la parola chiave usata in questo caso è «<literal>origin</" ++"literal>» e può essere usata per indicare un nome host. Il record seguente " ++"assegna una priorità alta a tutte le versioni disponibili dal server " ++"identificato dal nome host «ftp.de.debian.org»" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:220 @@@ -5664,9 -3833,6 +5587,9 @@@ msgid " "Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" msgstr "" +"Package: *\n" +"Pin: origin \"ftp.de.debian.org\"\n" +"Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:224 @@@ -5677,11 -3843,6 +5600,11 @@@ msgid " "Internet address but an author or vendor name, such as \"Debian\" or \"Ximian" "\"." msgstr "" +"Questo <emphasis>non</emphasis> deve essere confuso con l'Origine di una " +"distribuzione come indicata in un file <filename>Release</filename>. Ciò che " +"segue il tag «Origin:» in un file <filename>Release</filename> non è un " +"indirizzo Internet, ma un nome di autore o produttore, come «Debian» o " +"«Ximian»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:229 @@@ -5690,9 -3851,6 +5613,9 @@@ msgid " "belonging to any distribution whose Archive name is \"<literal>unstable</" "literal>\"." msgstr "" +"Il record seguente assegna una priorità bassa a tutte le versioni di " +"pacchetto che appartengono ad una qualsiasi distribuzione il cui nome di " +"archivio è «<literal>unstable</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:233 @@@ -5702,9 -3860,6 +5625,9 @@@ msgid " "Pin: release a=unstable\n" "Pin-Priority: 50\n" msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:238 @@@ -5713,9 -3868,6 +5636,9 @@@ msgid " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" "</literal>\"." msgstr "" +"Il record seguente assegna una priorità alta a tutte le versioni di " +"pacchetto che appartengono ad una qualsiasi distribuzione il cui nome in " +"codice è «<literal>&testing-codename;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:242 @@@ -5725,9 -3877,6 +5648,9 @@@ msgid " "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" msgstr "" +"Package: *\n" +"Pin: release n=&testing-codename;\n" +"Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:247 @@@ -5736,10 -3885,6 +5659,10 @@@ msgid " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " "and whose release Version number is \"<literal>&stable-version;</literal>\"." msgstr "" +"Il record seguente assegna una priorità alta a tutte le versioni di " +"pacchetto che appartengono ad un qualsiasi rilascio il cui nome di archivio " +"è «<literal>stable</literal>» e il cui numero di versione del rilascio è " +"«<literal>&stable-version;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:252 @@@ -5749,15 -3894,11 +5672,15 @@@ msgid " "Pin: release a=stable, v=&stable-version;\n" "Pin-Priority: 500\n" msgstr "" +"Package: *\n" +"Pin: release a=stable, v=&stable-version;\n" +"Pin-Priority: 500\n" +# &glob; è rimpiazzato da "glob(7)" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:262 msgid "Regular expressions and &glob; syntax" -msgstr "" +msgstr "Sintassi per le espressioni regolari e &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:264 @@@ -5768,12 -3909,6 +5691,12 @@@ msgid " "gnome (as a &glob;-like expression) or contains the word kde (as a POSIX " "extended regular expression surrounded by slashes)." msgstr "" +"APT permette anche di impostare priorità di pin usando espressioni &glob; ed " - "espressioni regolari racchiuse tra sbarre («/»). L'esempio seguente " - "assegna, ad esempio, la priorità 500 a tutti i pacchetti da experimental il " - "cui nome inizia con gnome (indicato con un'espressione in stile &glob;) " - "oppure contiene la parola kde (indicato in forma di espressione regolare " - "estesa POSIX racchiusa tra sbarre)." ++"espressioni regolari racchiuse tra sbarre («/»). L'esempio seguente assegna, " ++"ad esempio, la priorità 500 a tutti i pacchetti da experimental il cui nome " ++"inizia con gnome (indicato con un'espressione in stile &glob;) oppure " ++"contiene la parola kde (indicato in forma di espressione regolare estesa " ++"POSIX racchiusa tra sbarre)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:273 @@@ -5783,9 -3918,6 +5706,9 @@@ msgid " "Pin: release n=experimental\n" "Pin-Priority: 500\n" msgstr "" +"Package: gnome* /kde/\n" +"Pin: release n=experimental\n" +"Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:279 @@@ -5794,9 -3926,6 +5717,9 @@@ msgid " "string can occur. Thus, the following pin assigns the priority 990 to all " "packages from a release starting with &ubuntu-codename;." msgstr "" +"Di norma queste espressioni possono essere utilizzate ovunque c'è una " +"stringa. Perciò il pin seguente assegna la priorità 990 a tutti i pacchetti " +"provenienti da un rilascio il cui nome inizia con &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:285 @@@ -5806,9 -3935,6 +5729,9 @@@ msgid " "Pin: release n=&ubuntu-codename;*\n" "Pin-Priority: 990\n" msgstr "" +"Package: *\n" +"Pin: release n=&ubuntu-codename;*\n" +"Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:291 @@@ -5820,19 -3946,11 +5743,19 @@@ msgid " "specific pins override it. The pattern \"<literal>*</literal>\" in a " "Package field is not considered a &glob; expression in itself." msgstr "" - "Se un'espressione regolare viene usata in un campo " - "<literal>Package</literal>, il comportamento è equivalente a quello che si " - "otterrebbe se l'espressione regolare fosse sostituita da un elenco di tutti " - "i nomi di pacchetto a cui corrisponde. Non è chiaro se questo comportamento " - "verrà modificato in futuro; perciò si dovrebbero sempre indicare per primi i " - "pin con caratteri jolly, in modo che i pin specifici successivi abbiano " ++"Se un'espressione regolare viene usata in un campo <literal>Package</" ++"literal>, il comportamento è equivalente a quello che si otterrebbe se " ++"l'espressione regolare fosse sostituita da un elenco di tutti i nomi di " ++"pacchetto a cui corrisponde. Non è chiaro se questo comportamento verrà " ++"modificato in futuro; perciò si dovrebbero sempre indicare per primi i pin " ++"con caratteri jolly, in modo che i pin specifici successivi abbiano " +"precedenza su di essi. Il modello «<literal>*</literal>» in un campo Package " +"non viene considerato come un'espressione &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:307 msgid "How APT Interprets Priorities" -msgstr "" +msgstr "Come APT interpreta le priorità" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:310 @@@ -5840,9 -3958,6 +5763,9 @@@ msgid " "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" msgstr "" +"Le priorità (P) assegnate nel file delle preferenze di APT devono essere " +"rappresentate da interi positivi o negativi. Vengono interpretate nel modo " +"seguente (semplificando le cose):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:315 @@@ -5855,8 -3970,6 +5778,8 @@@ msgid " "causes a version to be installed even if this constitutes a downgrade of the " "package" msgstr "" +"causa l'installazione di una versione anche se ciò costituisce una " +"retrocessione del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:320 @@@ -5869,8 -3982,6 +5792,8 @@@ msgid " "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" msgstr "" +"causa l'installazione di una versione anche se non proviene dal rilascio " +"obiettivo, a meno che la versione installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:326 @@@ -5883,9 -3994,6 +5806,9 @@@ msgid " "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" msgstr "" +"causa l'installazione di una versione, a meno che non ci sia una versione " +"disponibile appartenente al rilascio obiettivo o la versione installata non " +"sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:332 @@@ -5898,9 -4006,6 +5821,9 @@@ msgid " "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" msgstr "" +"causa l'installazione di una versione, a meno che non ci sia una versione " +"disponibile appartenente ad una qualche altra distribuzione o la versione " +"installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:338 @@@ -5913,8 -4018,6 +5836,8 @@@ msgid " "causes a version to be installed only if there is no installed version of " "the package" msgstr "" +"causa l'installazione di una versione solo se nessuna versione del pacchetto " +"è installata" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:343 @@@ -5924,7 -4027,7 +5847,7 @@@ msgstr "P < 0 #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:344 msgid "prevents the version from being installed" -msgstr "" +msgstr "impedisce l'installazione della versione" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:349 @@@ -5934,12 -4037,6 +5857,12 @@@ msgid " "that, if any general-form records match an available package version then " "the first such record determines the priority of the package version." msgstr "" +"Se almeno un record in forma specifica corrisponde ad una versione di " +"pacchetto disponibile, allora il primo di questi record determina la " +"priorità della versione del pacchetto. In caso contrario, se almeno un " +"record in forma generica corrisponde ad una versione di pacchetto " +"disponibile, allora il primo di questi record determina la priorità della " +"versione del pacchetto." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:355 @@@ -5947,8 -4044,6 +5870,8 @@@ msgid " "For example, suppose the APT preferences file contains the three records " "presented earlier:" msgstr "" +"Per esempio, supponendo che il file di preferenze di APT contenga i tre " +"record descritti in precedenza:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:359 @@@ -5966,22 -4061,11 +5889,22 @@@ msgid " "Pin: release unstable\n" "Pin-Priority: 50\n" msgstr "" +"Package: perl\n" +"Pin: version &good-perl;*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:372 msgid "Then:" -msgstr "" +msgstr "Allora:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:374 @@@ -5992,12 -4076,6 +5915,11 @@@ msgid " "* version of <literal>perl</literal> is available and the installed version " "is &bad-perl;*, then <literal>perl</literal> will be downgraded." msgstr "" +"Verrà installata la più recente versione disponibile del pacchetto " +"<literal>perl</literal>, fintanto che il suo numero di versione inizia con " - "«<literal>&good-perl;</literal>». Se è disponibile <emphasis>una " - "qualsiasi</emphasis> versione &good-perl;* di <literal>perl</literal> e la " - "versione installata è &bad-perl;*, allora <literal>perl</literal> verrà " - "retrocesso." ++"«<literal>&good-perl;</literal>». Se è disponibile <emphasis>una qualsiasi</" ++"emphasis> versione &good-perl;* di <literal>perl</literal> e la versione " ++"installata è &bad-perl;*, allora <literal>perl</literal> verrà retrocesso." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:379 @@@ -6006,9 -4084,6 +5928,9 @@@ msgid " "available from the local system has priority over other versions, even " "versions belonging to the target release." msgstr "" +"Una versione di un qualsiasi pacchetto diverso da <literal>perl</literal> " +"che sia disponibile sul sistema locale ha la priorità rispetto ad altre " +"versioni, incluse quelle che appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:383 @@@ -6018,17 -4093,11 +5940,17 @@@ msgid " "literal> distribution is only installed if it is selected for installation " "and no version of the package is already installed." msgstr "" +"Una versione di un pacchetto la cui origine non sia il sistema locale, ma un " +"qualche altro sito elencato in &sources-list; e che appartiene ad una " +"distribuzione <literal>unstable</literal>, viene installata solamente se è " +"selezionata per l'installazione e nessuna versione del pacchetto è già " +"installata." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:393 msgid "Determination of Package Version and Distribution Properties" msgstr "" +"Determinazione delle proprietà di versione del pacchetto e di distribuzione" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:395 @@@ -6037,9 -4106,6 +5959,9 @@@ msgid " "<filename>Packages</filename> and <filename>Release</filename> files to " "describe the packages available at that location." msgstr "" +"Le posizioni elencate nel file &sources-list; dovrebbero fornire i file " +"<filename>Packages</filename> e <filename>Release</filename> che descrivono " +"i pacchetti disponibili in quelle posizioni." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:399 @@@ -6052,33 -4118,26 +5974,33 @@@ msgid " "each package available in that directory. Only two lines in each record are " "relevant for setting APT priorities:" msgstr "" +"Il file <filename>Packages</filename> si trova normalmente nella directory " - "<filename>.../dists/<replaceable>nome-dist</replaceable>/<replaceable>compon" - "ente</replaceable>/<replaceable>arch</replaceable></filename>: per esempio, " - "<filename>.../dists/stable/main/binary-i386/Packages</filename>. È " - "costituito da una serie di record su più righe, uno per ogni pacchetto " - "disponibile in tale directory. In ciascun record solo due righe sono " - "rilevanti per l'impostazione delle priorità di APT:" ++"<filename>.../dists/<replaceable>nome-dist</replaceable>/" ++"<replaceable>componente</replaceable>/<replaceable>arch</replaceable></" ++"filename>: per esempio, <filename>.../dists/stable/main/binary-i386/" ++"Packages</filename>. È costituito da una serie di record su più righe, uno " ++"per ogni pacchetto disponibile in tale directory. In ciascun record solo due " ++"righe sono rilevanti per l'impostazione delle priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:407 msgid "the <literal>Package:</literal> line" -msgstr "" +msgstr "la riga <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:408 msgid "gives the package name" -msgstr "" +msgstr "indica il nome del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:411 apt_preferences.5.xml:461 msgid "the <literal>Version:</literal> line" -msgstr "" +msgstr "la riga <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:412 msgid "gives the version number for the named package" -msgstr "" +msgstr "indica il numero di versione per il pacchetto indicato" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:417 @@@ -6092,20 -4151,11 +6014,20 @@@ msgid " "file, nearly all of the lines in a <filename>Release</filename> file are " "relevant for setting APT priorities:" msgstr "" +"Il file <filename>Release</filename> si trova normalmente nella directory " +"<filename>.../dists/<replaceable>nome-dist</replaceable></filename>: ad " - "esempio, <filename>.../dists/stable/Release</filename> o <filename>.../dists" - "/&stable-codename;/Release</filename>. Consiste di un record su più righe " - "che si applica a <emphasis>tutti</emphasis> i pacchetti nell'albero di " - "directory sottostante alla directory genitrice. A differenza di ciò che " - "avviene per il file <filename>Packages</filename>, quasi tutte le righe in " - "un file <filename>Release</filename> sono importanti per l'impostazione " - "delle priorità di APT:" ++"esempio, <filename>.../dists/stable/Release</filename> o <filename>.../dists/" ++"&stable-codename;/Release</filename>. Consiste di un record su più righe che " ++"si applica a <emphasis>tutti</emphasis> i pacchetti nell'albero di directory " ++"sottostante alla directory genitrice. A differenza di ciò che avviene per il " ++"file <filename>Packages</filename>, quasi tutte le righe in un file " ++"<filename>Release</filename> sono importanti per l'impostazione delle " ++"priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:428 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" -msgstr "" +msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:429 @@@ -6117,23 -4167,17 +6039,23 @@@ msgid " "archive. Specifying this value in the APT preferences file would require " "the line:" msgstr "" +"indica l'archivio a cui appartengono tutti i pacchetti nell'albero di " +"directory. Per esempio, la riga «Archive: stable» o «Suite: stable» " +"specifica che tutti i pacchetti nell'albero di directory sottostante la " +"directory che contiene il file <filename>Release</filename> sono " +"nell'archivio <literal>stable</literal>. Per specificare questo valore nelle " +"preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:439 #, no-wrap msgid "Pin: release a=stable\n" -msgstr "" +msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:445 msgid "the <literal>Codename:</literal> line" -msgstr "" +msgstr "la riga <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:446 @@@ -6145,18 -4189,12 +6067,18 @@@ msgid " "<literal>&testing-codename;</literal>. Specifying this value in the APT " "preferences file would require the line:" msgstr "" +"indica il nome in codice a cui appartengono tutti i pacchetti nell'albero di " - "directory. Per esempio, la riga «Codename: &testing-codename;» specifica " - "che tutti i pacchetti nell'albero di directory sottostante la directory che " ++"directory. Per esempio, la riga «Codename: &testing-codename;» specifica che " ++"tutti i pacchetti nell'albero di directory sottostante la directory che " +"contiene il file <filename>Release</filename> appartengono ad una versione " +"chiamata <literal>&testing-codename;</literal>. Per specificare questo " +"valore nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:455 #, no-wrap msgid "Pin: release n=&testing-codename;\n" -msgstr "" +msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:462 @@@ -6168,12 -4206,6 +6090,12 @@@ msgid " "released yet. Specifying this in the APT preferences file would require one " "of the following lines." msgstr "" +"indica la versione del rilascio. Per esempio, i pacchetti nell'albero " +"potrebbero appartenere alla versione &stable-version; del rilascio Debian. " +"Notare che normalmente non esiste un numero di versione per le distribuzioni " +"<literal>testing</literal> e <literal>unstable</literal>, perché non sono " +"ancora state rilasciate. Per specificare questo valore nelle preferenze di " +"APT si deve usare una delle seguenti righe:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:471 @@@ -6183,14 -4215,11 +6105,14 @@@ msgid " "Pin: release a=stable, v=&stable-version;\n" "Pin: release &stable-version;\n" msgstr "" +"Pin: release v=&stable-version;\n" +"Pin: release a=stable, v=&stable-version;\n" +"Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:480 msgid "the <literal>Component:</literal> line" -msgstr "" +msgstr "la riga<literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:481 @@@ -6202,24 -4231,17 +6124,24 @@@ msgid " "licensed under terms listed in the Debian Free Software Guidelines. " "Specifying this component in the APT preferences file would require the line:" msgstr "" +"indica le componenti con le varie licenze associate ai pacchetti nell'albero " +"di directory del file <filename>Release</filename>. Per esempio, la riga " +"«Component: main» specifica che tutti i pacchetti nell'albero di directory " +"provengono dalla componente <literal>main</literal>, e quindi che sono " +"rilasciati nei termini elencati nelle Linee guida per il Software Libero di " +"Debian. Per specificare questa componente nelle preferenze di APT si deve " +"usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:490 #, no-wrap msgid "Pin: release c=main\n" -msgstr "" +msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:496 msgid "the <literal>Origin:</literal> line" -msgstr "" +msgstr "la riga <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:497 @@@ -6229,20 -4251,17 +6151,20 @@@ msgid " "literal>. Specifying this origin in the APT preferences file would require " "the line:" msgstr "" +"indica l'origine dei pacchetti nell'albero di directory del file " +"<filename>Release</filename>. Normalmente è <literal>Debian</literal>. Per " +"specificare questa origine nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:503 #, no-wrap msgid "Pin: release o=Debian\n" -msgstr "" +msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:509 msgid "the <literal>Label:</literal> line" -msgstr "" +msgstr "la riga <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:510 @@@ -6252,15 -4271,12 +6174,15 @@@ msgid " "literal>. Specifying this label in the APT preferences file would require " "the line:" msgstr "" +"indica l'etichetta dei pacchetti nell'albero di directory del file " +"<filename>Release</filename>. Normalmente è <literal>Debian</literal>. Per " +"specificare questa etichetta nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:516 #, no-wrap msgid "Pin: release l=Debian\n" -msgstr "" +msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:523 @@@ -6276,21 -4292,11 +6198,21 @@@ msgid " "architecture files from the <literal>contrib</literal> component of the " "<literal>unstable</literal> distribution." msgstr "" +"Tutti i file <filename>Packages</filename> e <filename>Release</filename> " +"recuperati dalle posizioni elencate nel file &sources-list; sono memorizzati " +"nella directory <filename>/var/lib/apt/lists</filename> o nel file indicato " - "dalla variabile <literal>Dir::State::Lists</literal> nel file " - "<filename>apt.conf</filename>. Per esempio, il file <filename>debian.lcs.mit" - ".edu_debian_dists_unstable_contrib_binary-i386_Release</filename> contiene " - "il file <filename>Release</filename> recuperato dal sito " - "<literal>debian.lcs.mit.edu</literal> per i file dell'architettura " - "<literal>binary-i386</literal> nella componente <literal>contrib</literal> " - "della distribuzione <literal>unstable</literal>." ++"dalla variabile <literal>Dir::State::Lists</literal> nel file <filename>apt." ++"conf</filename>. Per esempio, il file <filename>debian.lcs.mit." ++"edu_debian_dists_unstable_contrib_binary-i386_Release</filename> contiene il " ++"file <filename>Release</filename> recuperato dal sito <literal>debian.lcs." ++"mit.edu</literal> per i file dell'architettura <literal>binary-i386</" ++"literal> nella componente <literal>contrib</literal> della distribuzione " ++"<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:536 msgid "Optional Lines in an APT Preferences Record" -msgstr "" +msgstr "Righe opzionali in un record delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:538 @@@ -6299,15 -4305,11 +6221,14 @@@ msgid " "more lines beginning with the word <literal>Explanation:</literal>. This " "provides a place for comments." msgstr "" +"Ogni record nel file delle preferenze di APT può iniziare opzionalmente con " - "una o più righe che cominciano con la parola " - "<literal>Explanation:</literal>. Ciò fornisce un posto dove mettere " - "commenti." ++"una o più righe che cominciano con la parola <literal>Explanation:</" ++"literal>. Ciò fornisce un posto dove mettere commenti." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:547 msgid "Tracking Stable" -msgstr "" +msgstr "Seguire Stable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:555 @@@ -6323,16 -4325,6 +6244,16 @@@ msgid " "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Explanation: Disinstallare o non installare ogni versione di\n" +"Explanation: pacchetto originata da Debian che non sia nella\n" +"Explanation: distribuzione stable\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:549 @@@ -6343,12 -4335,6 +6264,12 @@@ msgid " "package versions belonging to other <literal>Debian</literal> " "distributions. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file di preferenze di APT fa sì che APT assegni una priorità più " +"alta di quella predefinita (500) a tutte le versioni di pacchetto che " +"appartengono alla distribuzione <literal>stable</literal>, e una priorità " +"eccezionalmente bassa alle versioni di pacchetto che appartengono alle altre " - "distribuzioni <literal>Debian</literal>. <placeholder type=\"programlisting\" " - "id=\"0\"/>" ++"distribuzioni <literal>Debian</literal>. <placeholder type=\"programlisting" ++"\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:572 apt_preferences.5.xml:618 @@@ -6359,9 -4345,6 +6280,9 @@@ msgid " "apt-get upgrade\n" "apt-get dist-upgrade\n" msgstr "" +"apt-get install <replaceable>nome-pacchetto</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:567 @@@ -6371,16 -4354,12 +6292,16 @@@ msgid " "<literal>stable</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " - "versioni più recenti di <literal>stable</literal>. <placeholder " - "type=\"programlisting\" id=\"0\"/>" ++"versioni più recenti di <literal>stable</literal>. <placeholder type=" ++"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:584 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:578 @@@ -6390,15 -4369,11 +6311,15 @@@ msgid " "will not be upgraded again unless this command is given again. <placeholder " "type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente comando farà sì che APT aggiorni il pacchetto specificato alla " +"versione più recente nella distribuzione <literal>testing</literal>; il " +"pacchetto non verrà successivamente aggiornato a meno di non usare " +"nuovamente questo comando. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:590 msgid "Tracking Testing or Unstable" -msgstr "" +msgstr "Seguire Testing o Unstable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:599 @@@ -6416,17 -4391,6 +6337,17 @@@ msgid " "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:592 @@@ -6438,12 -4402,6 +6359,12 @@@ msgid " "other <literal>Debian</literal> distributions. <placeholder type=" "\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file di preferenze di APT fa sì che APT assegni una priorità " - "alta alle versioni di pacchetto nella distribuzione " - "<literal>testing</literal>, una priorità più bassa alle versioni di " - "pacchetto nella distribuzione <literal>unstable</literal>, e una priorità " - "eccezionalmente bassa alle versioni di pacchetto nelle altre distribuzioni " - "<literal>Debian</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" ++"alta alle versioni di pacchetto nella distribuzione <literal>testing</" ++"literal>, una priorità più bassa alle versioni di pacchetto nella " ++"distribuzione <literal>unstable</literal>, e una priorità eccezionalmente " ++"bassa alle versioni di pacchetto nelle altre distribuzioni <literal>Debian</" ++"literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:613 @@@ -6453,16 -4411,12 +6374,16 @@@ msgid " "<literal>testing</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " - "versioni più recenti di <literal>testing</literal>. <placeholder " - "type=\"programlisting\" id=\"0\"/>" ++"versioni più recenti di <literal>testing</literal>. <placeholder type=" ++"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:633 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:624 @@@ -6475,18 -4429,11 +6396,18 @@@ msgid " "literal> version if that is more recent than the installed version. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il comando seguente farà sì che APT aggiorni il pacchetto specificato alla " +"più recente versione nella distribuzione <literal>unstable</literal>. " +"Successivamente, <command>apt-get upgrade</command> aggiornerà il pacchetto " +"alla versione più recente in <literal>testing</literal>, se è più nuova di " +"quella installata, altrimenti alla più recente versione in " +"<literal>unstable</literal> se è più recente di quella installata. " +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:640 msgid "Tracking the evolution of a codename release" -msgstr "" +msgstr "Seguire l'evoluzione di un rilascio in base al nome in codice" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:654 @@@ -6507,21 -4454,6 +6428,21 @@@ msgid " "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Explanation: Disinstallare o non installare qualsiasi versione di pacchetto\n" +"Explanation: originata da Debian che non sia nella distribuzione con\n" +"Explanation: nome in codice &testing-codename; o sid\n" +"Package: *\n" +"Pin: release n=&testing-codename;\n" +"Pin-Priority: 900\n" +"\n" +"Explanation: Debian unstable ha sempre il nome in codice side\n" +"Package: *\n" +"Pin: release n=sid\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:642 @@@ -6537,18 -4469,6 +6458,18 @@@ msgid " "notwithstanding the codename changes you should use the example " "configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file delle preferenze di APT farà sì che APT assegni una " +"priorità più alta di quella predefinita (500) a tutte le versioni di " +"pacchetto che appartengono alla distribuzione con il nome in codice " +"specificato, e una priorità eccezionalmente bassa alle versioni di pacchetto " +"che appartengono ad altre distribuzioni, nomi in codice e archivi " +"<literal>Debian</literal>. Notare che con questa preferenza, APT segue la " +"migrazione di un rilascio dall'archivio <literal>testing</literal> a " +"<literal>stable</literal> e successivamente a <literal>oldstable</literal>. " +"Se si vuole seguire il progresso, ad esempio, di <literal>testing</literal> " +"indipendentemente dai cambi di nome in codice si devono usare le " +"configurazioni negli esempi precedenti. <placeholder type=\"programlisting\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:671 @@@ -6558,16 -4478,12 +6479,16 @@@ msgid " "the release codenamed with <literal>&testing-codename;</literal>. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " +"versioni più recenti nel rilascio con nome in codice <literal>&testing-" +"codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:691 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:682 @@@ -6580,23 -4496,16 +6501,23 @@@ msgid " "literal> version if that is more recent than the installed version. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il comando seguente farà sì che APT aggiorni il pacchetto specificato alla " +"più recente versione nella distribuzione <literal>sid</literal>. " +"Successivamente, <command>apt-get upgrade</command> aggiornerà il pacchetto " +"alla versione più recente in <literal>&testing-codename;</literal>, se è più " +"nuova di quella installata, altrimenti alla più recente versione in " +"<literal>sid</literal> se è più recente di quella installata. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:706 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" -msgstr "" +msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> #: sources.list.5.xml:33 msgid "List of configured APT data sources" -msgstr "" +msgstr "elenco delle fonti di dati configurate per APT" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:38 @@@ -6608,12 -4517,6 +6529,12 @@@ msgid " "<command>apt-get update</command> (or by an equivalent command from another " "APT front-end)." msgstr "" +"L'elenco delle fonti <filename>/etc/apt/sources.list</filename> è progettato " - "per supportare qualsiasi numero di fonti attive e svariati supporti. Il " - "file elenca una fonte per riga, con la fonte preferita elencata per prima. " - "Le informazioni disponibili dalle fonti configurate sono acquisite con " ++"per supportare qualsiasi numero di fonti attive e svariati supporti. Il file " ++"elenca una fonte per riga, con la fonte preferita elencata per prima. Le " ++"informazioni disponibili dalle fonti configurate sono acquisite con " +"<command>apt-get update</command> (o con un comando equivalente in un'altra " +"interfaccia per APT)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:45 @@@ -6624,16 -4527,11 +6545,16 @@@ msgid " "and a <literal>#</literal> character anywhere on a line marks the remainder " "of that line as a comment." msgstr "" - "Ogni riga che specifica una fonte inizia con il tipo (per esempio <literal" - ">deb-src</literal>), seguito dalle opzioni e dagli argomenti per tale tipo. " - "Ogni singola voce non può essere divisa su più righe. Le righe vuote vengono " - "ignorate e un carattere <literal>#</literal> in qualsiasi punto di una riga " - "contrassegna come commento la parte rimanente della riga." ++"Ogni riga che specifica una fonte inizia con il tipo (per esempio " ++"<literal>deb-src</literal>), seguito dalle opzioni e dagli argomenti per " ++"tale tipo. Ogni singola voce non può essere divisa su più righe. Le righe " ++"vuote vengono ignorate e un carattere <literal>#</literal> in qualsiasi " ++"punto di una riga contrassegna come commento la parte rimanente della riga." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:53 msgid "sources.list.d" -msgstr "" +msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:54 @@@ -6647,20 -4545,11 +6568,20 @@@ msgid " "file matches a pattern in the <literal>Dir::Ignore-Files-Silently</literal> " "configuration list - in which case it will be silently ignored." msgstr "" +"La directory <filename>/etc/apt/sources.list.d</filename> permette di " +"aggiungere voci per sources.list in file separati. Il formato è lo stesso " +"del regolare file <filename>sources.list</filename>. I nomi dei file devono " +"terminare con <filename>.list</filename> e possono contenere solamente " +"lettere (a-z e A-Z), cifre (0-9), trattini bassi (_), trattini (-) e punti " +"(.). In caso contrario APT stampa un messaggio che notifica che un file è " +"stato ignorato, a meno che il file non corrisponda ad un modello nell'elenco " +"di configurazione <literal>Dir::Ignore-Files-Silently</literal>, nel qual " +"caso viene ignorato in modo silenzioso." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:65 msgid "The deb and deb-src types" -msgstr "" +msgstr "I tipi deb e deb-src" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:66 @@@ -6676,17 -4565,6 +6597,17 @@@ msgid " "same form as the <literal>deb</literal> type. A <literal>deb-src</literal> " "line is required to fetch source indexes." msgstr "" +"Il tipo <literal>deb</literal> è un riferimento a un tipico archivio Debian " +"a due livelli, <filename>distribuzione/componente</filename>. " +"<literal>distribuzione</literal> è tipicamente un nome di archivio come " +"<literal>stable</literal> o <literal>testing</literal>, oppure un nome in " +"codice come <literal>&stable-codename;</literal> o <literal>&testing-" +"codename;</literal>; componente è uno tra <literal>main</literal>, " - "<literal>contrib</literal> o <literal>non-free</literal>. Il tipo <literal" - ">deb-src</literal> è un riferimento al codice sorgente di una distribuzione " - "Debian nella stessa forma di quella del tipo <literal>deb</literal>. Per " - "recuperare gli indici dei pacchetti sorgente è necessaria una riga <literal" - ">deb-src</literal>." ++"<literal>contrib</literal> o <literal>non-free</literal>. Il tipo " ++"<literal>deb-src</literal> è un riferimento al codice sorgente di una " ++"distribuzione Debian nella stessa forma di quella del tipo <literal>deb</" ++"literal>. Per recuperare gli indici dei pacchetti sorgente è necessaria una " ++"riga <literal>deb-src</literal>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:78 @@@ -6694,14 -4572,12 +6615,14 @@@ msgid " "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" msgstr "" +"Il formato per una voce in <filename>sources.list</filename> che usa il tipo " +"<literal>deb</literal> o <literal>deb-src</literal> è:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:81 #, no-wrap msgid "deb [ options ] uri distribution [component1] [component2] [...]" -msgstr "" +msgstr "deb [ opzioni ] uri distribuzione [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:83 @@@ -6715,15 -4591,6 +6636,15 @@@ msgid " "<literal>distribution</literal> does not specify an exact path, at least one " "<literal>component</literal> must be present." msgstr "" +"L'URI per il tipo <literal>deb</literal> deve specificare la base della " +"distribuzione Debian, dalla quale APT troverà le informazioni necessarie. " +"<literal>distribuzione</literal> può specificare un percorso esatto, nel " - "qual caso le componenti devono essere omesse e " - "<literal>distribuzione</literal> deve terminare con una sbarra " - "(<literal>/</literal>). Questo è utile nel caso in cui si è interessati solo " - "a una particolare sottosezione dell'archivio indicata dall'URI. Se " - "<literal>distribuzione</literal> non specifica un percorso esatto, deve " - "essere presente almeno una <literal>componente</literal>." ++"qual caso le componenti devono essere omesse e <literal>distribuzione</" ++"literal> deve terminare con una sbarra (<literal>/</literal>). Questo è " ++"utile nel caso in cui si è interessati solo a una particolare sottosezione " ++"dell'archivio indicata dall'URI. Se <literal>distribuzione</literal> non " ++"specifica un percorso esatto, deve essere presente almeno una " ++"<literal>componente</literal>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:92 @@@ -6736,13 -4603,6 +6657,13 @@@ msgid " "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" - "<literal>distribuzione</literal> può anche contenere una variabile " - "<literal>$(ARCH)</literal> che viene espansa nell'architettura Debian (come " ++"<literal>distribuzione</literal> può anche contenere una variabile <literal>" ++"$(ARCH)</literal> che viene espansa nell'architettura Debian (come " +"<literal>amd64</literal> o <literal>armel</literal>) usata nel sistema. Ciò " +"consente di utilizzare file <filename>sources.list</filename> indipendenti " +"dall'architettura. In generale questo è interessante solo quando viene " +"specificato un percorso esatto, altrimenti <literal>APT</literal> genera " +"automaticamente un URI con l'architettura corrente." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:100 @@@ -6758,18 -4618,6 +6679,18 @@@ msgid " "number of simultaneous anonymous users. APT also parallelizes connections to " "different hosts to more effectively deal with sites with low bandwidth." msgstr "" +"Dato che può essere specificata solo una distribuzione per riga, può essere " +"necessario avere più righe per lo stesso URI, se si desidera un sottoinsieme " +"di tutte le distribuzioni o componenti disponibili in quella posizione. APT " +"ordinerà la lista degli URI dopo aver generato internamente un insieme " +"completo, e riunirà i riferimenti multipli, per esempio al medesimo host " +"Internet in una singola connessione; in questo modo non stabilisce in modo " +"inefficiente una connessione FTP per poi chiuderla, fare qualcos'altro e " +"quindi ristabilire una connessione con il medesimo host. Questa funzionalità " +"è utile per accedere a siti FTP molto impegnati con un limite al numero di " +"accessi anonimi contemporanei. APT inoltre parallelizza le connessioni a " +"host differenti, per gestire in maniera più efficiente i siti con scarsa " +"larghezza di banda." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:112 @@@ -6781,12 -4629,6 +6702,12 @@@ msgid " "following settings are supported by APT (note however that unsupported " "settings will be ignored silently):" msgstr "" +"<literal>opzioni</literal> è sempre opzionale e deve essere racchiuso tra " - "parentesi quadre. Può consistere di più impostazioni nella forma <literal><r" - "eplaceable>impostazione</replaceable>=<replaceable>valore</replaceable></lit" - "eral>. Impostazioni multiple vengono separate da spazi. APT supporta le " - "seguenti impostazioni (notare però che le impostazioni non supportate " - "verranno ignorate in modo silenzioso):" ++"parentesi quadre. Può consistere di più impostazioni nella forma " ++"<literal><replaceable>impostazione</replaceable>=<replaceable>valore</" ++"replaceable></literal>. Impostazioni multiple vengono separate da spazi. APT " ++"supporta le seguenti impostazioni (notare però che le impostazioni non " ++"supportate verranno ignorate in modo silenzioso):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:117 @@@ -6797,11 -4639,6 +6718,11 @@@ msgid " "architectures defined by the <literal>APT::Architectures</literal> option " "will be downloaded." msgstr "" - "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceab" - "le>,…</literal> può essere usato per specificare le architetture per le " - "quali scaricare le informazioni. Se questa opzione non è impostata verranno " - "scaricate tutte le architetture definite dall'opzione " - "<literal>APT::Architectures</literal>." ++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" ++"replaceable>,…</literal> può essere usato per specificare le architetture " ++"per le quali scaricare le informazioni. Se questa opzione non è impostata " ++"verranno scaricate tutte le architetture definite dall'opzione <literal>APT::" ++"Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:121 @@@ -6813,13 -4650,6 +6734,12 @@@ msgid " "and trusted context. <literal>trusted=no</literal> is the opposite which " "handles even correctly authenticated sources as not authenticated." msgstr "" +"<literal>trusted=yes</literal> può essere usato per indicare che i pacchetti " - "da questa fonte sono sempre autenticati anche se il file " - "<filename>Release</filename> non è firmato o la firma non può essere " - "controllata. Ciò disabilita parti di &apt-secure; e dovrebbe quindi essere " - "usato solo in un contesto locale o fidato. <literal>trusted=no</literal> fa " - "l'opposto e tratta anche le fonti correttamente autenticate come non " - "autenticate." ++"da questa fonte sono sempre autenticati anche se il file <filename>Release</" ++"filename> non è firmato o la firma non può essere controllata. Ciò " ++"disabilita parti di &apt-secure; e dovrebbe quindi essere usato solo in un " ++"contesto locale o fidato. <literal>trusted=no</literal> fa l'opposto e " ++"tratta anche le fonti correttamente autenticate come non autenticate." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:128 @@@ -6829,15 -4659,11 +6749,15 @@@ msgid " "speed from fastest to slowest (CD-ROM followed by hosts on a local network, " "followed by distant Internet hosts, for example)." msgstr "" +"È importante elencare le fonti in ordine di preferenza con la fonte " +"preferita elencata per prima. Tipicamente ciò viene fatto ordinando per " +"velocità dalla più veloce alla più lenta (per esempio CD-ROM seguiti da host " +"in una rete locale, seguiti da host Internet distanti)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:133 msgid "Some examples:" -msgstr "" +msgstr "Alcuni esempi:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:135 @@@ -6847,20 -4673,16 +6767,19 @@@ msgid " "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" +"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" - "deb http://security.debian.org/ &stable-codename;/updates main contrib non-" - "free\n" ++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" +" " #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:141 msgid "URI specification" -msgstr "" +msgstr "Specificare URI" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:143 msgid "The currently recognized URI types are:" -msgstr "" +msgstr "I tipi di URI attualmente riconosciuti sono:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:147 @@@ -6869,9 -4691,6 +6788,9 @@@ msgid " "considered an archive. This is useful for NFS mounts and local mirrors or " "archives." msgstr "" +"Il tipo file permette di considerare come un archivio una directory " +"arbitraria nel file system. È utile per file system NFS montati e mirror o " +"archivi locali." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:154 @@@ -6879,9 -4698,6 +6798,9 @@@ msgid " "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." msgstr "" +"Il tipo cdrom permette ad APT di usare un'unità CD-ROM locale cambiando i " +"supporti. Usare il programma &apt-cdrom; per creare voci cdrom nell'elenco " +"delle fonti." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:161 @@@ -6893,12 -4709,6 +6812,12 @@@ msgid " "http://user:pass@server:port/. Note that this is an insecure method of " "authentication." msgstr "" +"Il tipo http specifica un server HTTP per l'archivio. Se è impostata una " - "variabile d'ambiente <envar>http_proxy</envar> con il formato " - "http://server:porta/, verrà usato il server proxy specificato in " - "<envar>http_proxy</envar>. Gli utenti con proxy HTTP/1.1 con autenticazione " - "possono usare una stringa nel formato http://utente:password@server:porta/. " - "Notare che questo è un metodo di autenticazione non sicuro." ++"variabile d'ambiente <envar>http_proxy</envar> con il formato http://server:" ++"porta/, verrà usato il server proxy specificato in <envar>http_proxy</" ++"envar>. Gli utenti con proxy HTTP/1.1 con autenticazione possono usare una " ++"stringa nel formato http://utente:password@server:porta/. Notare che questo " ++"è un metodo di autenticazione non sicuro." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:172 @@@ -6912,13 -4722,6 +6831,13 @@@ msgid " "variable. Proxies using HTTP specified in the configuration file will be " "ignored." msgstr "" +"Il tipo ftp specifica un server FTP per l'archivio. Il comportamento FTP di " +"APT è altamente configurabile; per maggiori informazioni vedere la pagina di " +"manuale &apt-conf;. Notare che è possibile specificare un proxy FTP usando " +"la variabile d'ambiente <envar>ftp_proxy</envar>. È possibile specificare un " - "proxy HTTP (i server proxy HTTP spesso gestiscono gli URL FTP) usando " - "questa e <emphasis>SOLO</emphasis> questa variabile d'ambiente. I proxy che " - "usano HTTP specificati nel file di configurazione verranno ignorati." ++"proxy HTTP (i server proxy HTTP spesso gestiscono gli URL FTP) usando questa " ++"e <emphasis>SOLO</emphasis> questa variabile d'ambiente. I proxy che usano " ++"HTTP specificati nel file di configurazione verranno ignorati." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:184 @@@ -6928,10 -4731,6 +6847,10 @@@ msgid " "This is useful for people using removable media to copy files around with " "APT." msgstr "" +"Il tipo copy è identico al tipo file tranne per il fatto che i pacchetti " +"vengono copiati nella directory della cache invece di essere usati " +"direttamente dalla loro posizione. Ciò è utile per coloro che usano supporti " +"rimovibili, per copiare i file nelle varie posizioni con APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:191 @@@ -6941,16 -4740,11 +6860,16 @@@ msgid " "recommended. The standard <command>find</command> and <command>dd</command> " "commands are used to perform the file transfers from the remote host." msgstr "" +"Il metodo rsh/ssh invoca RSH/SSH per connettersi ad un host remoto e " +"accedere ai file come un determinato utente. È raccomandato configurare " +"precedentemente le chiavi RSA o rhosts. Per effettuare i trasferimenti di " - "file dall'host remoto vengono usati i comandi standard " - "<command>find</command> e <command>dd</command>." ++"file dall'host remoto vengono usati i comandi standard <command>find</" ++"command> e <command>dd</command>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:198 msgid "adding more recognizable URI types" -msgstr "" +msgstr "aggiungere ulteriori tipi di URI riconoscibili" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:200 @@@ -6963,13 -4757,6 +6882,13 @@@ msgid " "method. Methods for using e.g. debtorrent are also available - see &apt-" "transport-debtorrent;." msgstr "" +"APT può essere esteso con ulteriori metodi forniti in altri pacchetti " - "opzionali, i cui nomi devono seguire lo schema <package>apt-" - "transport-<replaceable>metodo</replaceable></package>. Per esempio, il team di APT " ++"opzionali, i cui nomi devono seguire lo schema <package>apt-transport-" ++"<replaceable>metodo</replaceable></package>. Per esempio, il team di APT " +"mantiene anche il pacchetto <package>apt-transport-https</package> che " +"fornisce i metodi di accesso per URI HTTPS con funzionalità simili a quelle " +"del metodo http. Sono disponibili anche i metodi per usare, ad esempio, " +"debtorrrent; vedere &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:212 @@@ -6977,38 -4764,34 +6896,38 @@@ msgid " "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" - "Usa l'archivio memorizzato in locale (o montato via NFS) in " - "/home/gianni/debian per stable/main, stable/contrib e stable/non-free." ++"Usa l'archivio memorizzato in locale (o montato via NFS) in /home/gianni/" ++"debian per stable/main, stable/contrib e stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:214 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" -msgstr "" +msgstr "deb file:/home/gianni/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:216 msgid "As above, except this uses the unstable (development) distribution." msgstr "" +"Come sopra, tranne per il fatto che usa la distribuzione unstable (di " +"sviluppo)" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:217 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" -msgstr "" +msgstr "deb file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:219 msgid "Source line for the above" -msgstr "" +msgstr "Riga per i sorgenti corrispondente alla precedente" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:220 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" -msgstr "" +msgstr "deb-src file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:222 @@@ -7017,9 -4800,6 +6936,9 @@@ msgid " "<literal>APT::Architectures</literal> while the second always retrieves " "<literal>amd64</literal> and <literal>armel</literal>." msgstr "" +"La prima riga ottiene le informazioni sui pacchetti per le architetture in " +"<literal>APT::Architectures</literal>, mentre la seconda scarica sempre " +"<literal>amd64</literal> e <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:224 @@@ -7028,8 -4808,6 +6947,8 @@@ msgid " "deb http://ftp.debian.org/debian &stable-codename; main\n" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" msgstr "" +"deb http://ftp.debian.org/debian &stable-codename; main\n" +"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:227 @@@ -7037,14 -4815,12 +6956,14 @@@ msgid " "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." msgstr "" +"Usa HTTP per accedere all'archivio in archive.debian.org e usa solo l'area " +"hamm/main." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:229 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" -msgstr "" +msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:231 @@@ -7052,14 -4828,12 +6971,14 @@@ msgid " "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" +"Usa FTP per accedere all'archivio in ftp.debian.org, nella directory debian " +"e usa solo l'area &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:233 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" -msgstr "" +msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:235 @@@ -7069,22 -4843,18 +6988,22 @@@ msgid " "well as the one in the previous example in <filename>sources.list</filename> " "a single FTP session will be used for both resource lines." msgstr "" +"Usa FTP per accedere all'archivio in ftp.debian.org nella directory debian e " +"usa solo l'area unstable/contrib. Se in <filename>sources.list</filename> " +"sono presenti sia questa riga sia quella nell'esempio precedente, verrà " +"usata una sola sessione FTP per entrambe le righe." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:239 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" -msgstr "" +msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:248 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" -msgstr "" +msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:241 @@@ -7097,24 -4867,16 +7016,23 @@@ msgid " "archives are not structured like this] <placeholder type=\"literallayout\" " "id=\"0\"/>" msgstr "" +"Usa HTTP per accedere all'archivio in ftp.tlh.debian.org nella directory " - "universe e usa solo i file che si trovano in " - "<filename>unstable/binary-i386</filename> sulle macchine i386, " - "<filename>unstable/binary-amd64</filename> su quelle amd64 e così via per le " - "altre architetture supportate. [Notare che questo esempio illustra " - "solamente come usare la variabile per la sostituzione; gli archivi Debian " - "ufficiali non sono strutturati in questo modo.] <placeholder " - "type=\"literallayout\" id=\"0\"/>" ++"universe e usa solo i file che si trovano in <filename>unstable/binary-i386</" ++"filename> sulle macchine i386, <filename>unstable/binary-amd64</filename> su " ++"quelle amd64 e così via per le altre architetture supportate. [Notare che " ++"questo esempio illustra solamente come usare la variabile per la " ++"sostituzione; gli archivi Debian ufficiali non sono strutturati in questo " ++"modo.] <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:253 msgid "&apt-cache; &apt-conf;" -msgstr "" +msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> #: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26 msgid "1" -msgstr "" +msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-extracttemplates.1.xml:33 @@@ -7122,8 -4884,6 +7040,8 @@@ msgid " "Utility to extract <command>debconf</command> config and templates from " "Debian packages" msgstr "" +"utilità per estrarre configurazioni e modelli <command>debconf</command> dai " +"pacchetti Debian" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:39 @@@ -7134,16 -4894,11 +7052,16 @@@ msgid " "config scripts and templates, one line of output will be generated in the " "format:" msgstr "" +"<command>apt-extracttemplates</command> accetta in input uno o più file di " +"pacchetti Debian e scrive (in una directory temporanea) tutti gli script di " +"configurazione e i file template associati. Per ogni pacchetto ricevuto che " +"contenga script di configurazione e template, verrà generata una riga in " +"output nel formato:" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:44 msgid "package version template-file config-script" -msgstr "" +msgstr "pacchetto versione file-template script-di-configurazione" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:45 @@@ -7154,11 -4909,6 +7072,11 @@@ msgid " "filenames of the form <filename>package.template.XXXX</filename> and " "<filename>package.config.XXXX</filename>" msgstr "" +"file-template e script-di-configurazione sono scritti nella directory " +"temporanea specificata da <option>-t</option> o <option>--tempdir</option> " +"(<literal>APT::ExtractTemplates::TempDir</literal>), con i nomi dei file " +"nella forma <filename>pacchetto.template.XXXX</filename> e " +"<filename>pacchetto.config.XXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:58 @@@ -7167,9 -4917,6 +7085,9 @@@ msgid " "template files and config scripts. Configuration Item: <literal>APT::" "ExtractTemplates::TempDir</literal>" msgstr "" +"Directory temporanea dove scrivere gli script di configurazione e i file " +"template di <command>debconf</command> estratti. Voce di configurazione: " +"<literal>APT::ExtractTemplates::TempDir</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:75 @@@ -7177,13 -4924,11 +7095,13 @@@ msgid " "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" +"<command>apt-extracttemplates</command>restituisce zero in caso di " +"funzionamento normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-sortpkgs.1.xml:33 msgid "Utility to sort package index files" -msgstr "" +msgstr "utilità per ordinare i file indice dei pacchetti" #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:39 @@@ -7193,17 -4938,12 +7111,17 @@@ msgid " "name. It will also sort the internal fields of each record according to the " "internal sorting rules." msgstr "" +"<command>apt-sortpkgs</command> accetta un file indice (indice di sorgenti o " +"di pacchetti) e ordina i record in base al nome del pacchetto. Ordina anche " +"i campi interni ad ogni record in base alle regole di ordinamento interne." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:45 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" +"Tutto l'output viene inviato sullo standard output; l'input deve essere un " +"file leggibile con seek." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-sortpkgs.1.xml:54 @@@ -7211,8 -4951,6 +7129,8 @@@ msgid " "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." msgstr "" +"Usa l'ordinamento dei campi dell'indice dei sorgenti. Voce di " +"configurazione: <literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:68 @@@ -7220,13 -4958,11 +7138,13 @@@ msgid " "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" +"<command>apt-sortpkgs</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-ftparchive.1.xml:33 msgid "Utility to generate index files" -msgstr "" +msgstr "strumento per generare file indice" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:39 @@@ -7236,10 -4972,6 +7154,10 @@@ msgid " "files should be generated on the origin site based on the content of that " "site." msgstr "" +"<command>apt-ftparchive</command> è lo strumento a riga di comando che " +"genera i file indice usati da APT per accedere a una fonte di distribuzione. " +"I file indice devono essere generati sul sito origine in base al contenuto " +"di tale sito." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:43 @@@ -7250,11 -4982,6 +7168,11 @@@ msgid " "<literal>contents</literal>, and an elaborate means to 'script' the " "generation process for a complete archive." msgstr "" +"<command>apt-ftparchive</command> è un sovrainsieme del programma &dpkg-" +"scanpackages; e incorpora tutte le sue funzionalità tramite il comando " +"<literal>packages</literal>. Inoltre contiene un generatore di file dei " +"contenuti, <literal>contents</literal>, e un modo elaborato per gestire " +"tramite script il processo di generazione per un archivio completo." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:49 @@@ -7265,11 -4992,6 +7183,11 @@@ msgid " "automatically performs file-change checks and builds the desired compressed " "output files." msgstr "" +"Internamente <command>apt-ftparchive</command> può far uso di database " +"binari per tenere in cache il contenuto di un file .deb e non si basa su " +"programmi esterni all'infuori di &gzip;. Quando genera un archivio completo, " +"esegue automaticamente un controllo sui file modificati e crea i file " +"compressi desiderati in uscita." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:60 @@@ -7279,18 -5001,12 +7197,18 @@@ msgid " "emitting a package record to stdout for each. This command is approximately " "equivalent to &dpkg-scanpackages;." msgstr "" +"Il comando packages genera un file dell'indice di pacchetti da un albero di " +"directory. Prende la directory data e vi ricerca i file .deb ricorsivamente, " +"emettendo per ciascuno un record sullo stdout. Questo comando è più o meno " +"equivalente a &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" +"L'opzione <option>--db</option> può essere usata per specificare un database " +"binario da usare come cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:70 @@@ -7300,10 -5016,6 +7218,10 @@@ msgid " "for .dsc files, emitting a source record to stdout for each. This command is " "approximately equivalent to &dpkg-scansources;." msgstr "" +"Il comando <literal>sources</literal> genera un file indice dei sorgenti da " +"un albero di directory. Prende la directory data e vi ricerca i file .dsc " +"ricorsivamente, emettendo per ciascuno un record sullo stdout. Questo " +"comando è più o meno equivalente a &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:75 @@@ -7312,9 -5024,6 +7230,9 @@@ msgid " "for with an extension of .src. The --source-override option can be used to " "change the source override file that will be used." msgstr "" +"Se si specifica un file override, allora verrà cercato un file override " +"sorgente con estensione .src. L'opzione --source-override può essere usata " +"per cambiare il file override sorgente da usare." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 @@@ -7326,12 -5035,6 +7244,12 @@@ msgid " "written to the output. If multiple packages own the same file then each " "package is separated by a comma in the output." msgstr "" +"Il comando <literal>contents</literal> genera un file di contenuti da un " +"albero di directory. Prende la directory data e vi ricerca i file .deb " +"ricorsivamente, leggendo l'elenco dei file da ciascun file. Quindi ordina e " +"scrive sullo stdout l'elenco di file con i corrispondenti pacchetti. Le " +"directory non vengono scritte sull'output. Se più pacchetti contengono lo " +"stesso file, ciascun pacchetto è separato da una virgola nell'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:94 @@@ -7347,17 -5050,6 +7265,16 @@@ msgid " "literal>. It then writes to stdout a <filename>Release</filename> file " "containing an MD5, SHA1 and SHA256 digest for each file." msgstr "" +"Il comando <literal>release</literal> genera un file Release da un albero di " +"directory. In modo predefinito cerca ricorsivamente nella directory data i " +"file <filename>Packages</filename> e <filename>Sources</filename> non " - "compressi e quelli compressi con <command>gzip</command>, " - "<command>bzip2</command> o <command>lzma</command>, come anche i file " - "<filename>Release</filename> e <filename>md5sum.txt</filename> " - "(<literal>APT::FTPArchive::Release::Default-Patterns</literal>). Si possono " - "aggiungere ulteriori modelli per i nomi di file elencandoli in " - "<literal>APT::FTPArchive::Release::Patterns</literal>. Scrive poi sullo " - "stdout un file <filename>Release</filename> contenente per ogni file un " - "digest MD5, SHA1 e SHA256." ++"compressi e quelli compressi con <command>gzip</command>, <command>bzip2</" ++"command> o <command>lzma</command>, come anche i file <filename>Release</" ++"filename> e <filename>md5sum.txt</filename> (<literal>APT::FTPArchive::" ++"Release::Default-Patterns</literal>). Si possono aggiungere ulteriori " ++"modelli per i nomi di file elencandoli in <literal>APT::FTPArchive::Release::" ++"Patterns</literal>. Scrive poi sullo stdout un file <filename>Release</" ++"filename> contenente per ogni file un digest MD5, SHA1 e SHA256." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:104 @@@ -7371,14 -5063,6 +7288,14 @@@ msgid " "<literal>Architectures</literal>, <literal>Components</literal>, " "<literal>Description</literal>." msgstr "" +"I valori dei campi di metadati aggiuntivi nel file Release sono presi dalle " +"variabili corrispondenti sotto <literal>APT::FTPArchive::Release</literal>, " +"ad esempio <literal>APT::FTPArchive::Release::Origin</literal>. I campi " +"supportati sono: <literal>Origin</literal>, <literal>Label</literal>, " - "<literal>Suite</literal>, <literal>Version</literal>, " - "<literal>Codename</literal>, <literal>Date</literal>, <literal>Valid-" - "Until</literal>, <literal>Architectures</literal>, " - "<literal>Components</literal>, <literal>Description</literal>." ++"<literal>Suite</literal>, <literal>Version</literal>, <literal>Codename</" ++"literal>, <literal>Date</literal>, <literal>Valid-Until</literal>, " ++"<literal>Architectures</literal>, <literal>Components</literal>, " ++"<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:117 @@@ -7389,12 -5073,6 +7306,12 @@@ msgid " "are built from which directories, as well as providing a simple means of " "maintaining the required settings." msgstr "" +"Il comando <literal>generate</literal> è pensato per essere eseguibile da " +"uno script di cron e costruisce gli indici in base al file di configurazione " +"fornito. Il linguaggio di configurazione fornisce un mezzo flessibile per " +"specificare quali file di indice vengano costruiti a partire da quali " +"directory, oltre a fornire un mezzo semplice per amministrare le " +"impostazioni desiderate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:126 @@@ -7402,13 -5080,11 +7319,13 @@@ msgid " "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" +"Il comando <literal>clean</literal> pulisce i database usati dal file di " +"configurazione dato, rimuovendo tutti i record non più necessari." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:132 msgid "The Generate Configuration" -msgstr "" +msgstr "La configurazione di generate" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:134 @@@ -7420,25 -5096,17 +7337,25 @@@ msgid " "configuration is parsed in sectional manner, but &apt-conf; is parsed in a " "tree manner. This only effects how the scope tag is handled." msgstr "" +"Il comando <literal>generate</literal> usa un file di configurazione per " +"descrivere gli archivi da generare. Segue il tipico formato di " +"configurazione ISC come usato negli strumenti ISC come bind 8 e dhcpd. &apt-" +"conf; contiene una descrizione della sintassi. Notare che la configurazione " +"di generate viene letta per sezioni, ma &apt-conf; viene letto ad albero. " +"Ciò ha effetto soltanto sulla gestione del tag di ambito." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:142 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" +"La configurazione di generate ha quattro sezioni separate, ciascuna delle " +"quali è descritta in seguito." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:144 msgid "<literal>Dir</literal> Section" -msgstr "" +msgstr "Sezione <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:146 @@@ -7448,10 -5116,6 +7365,10 @@@ msgid " "directories are prepended certain relative paths defined in later sections " "to produce a complete an absolute path." msgstr "" +"La sezione <literal>Dir</literal> definisce le directory standard necessarie " +"per localizzare i file richiesti durante il processo di generazione. Queste " - "directory vengono fatte precedere da alcuni percorsi relativi definiti " - "nelle sezioni successive, per produrre un percorso assoluto completo." ++"directory vengono fatte precedere da alcuni percorsi relativi definiti nelle " ++"sezioni successive, per produrre un percorso assoluto completo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:153 @@@ -7460,19 -5124,16 +7377,18 @@@ msgid " "this is the directory that contains the <filename>ls-LR</filename> and dist " "nodes." msgstr "" +"Specifica la radice dell'archivio FTP; in una configurazione Debian standard " - "questa è la directory che contiene i nodi <filename>ls-LR</filename> e " - "dist." ++"questa è la directory che contiene i nodi <filename>ls-LR</filename> e dist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:160 msgid "Specifies the location of the override files." -msgstr "" +msgstr "Specifica la posizione dei file override." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:165 msgid "Specifies the location of the cache files." -msgstr "" +msgstr "Specifica la posizione dei file cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:170 @@@ -7480,13 -5141,11 +7396,13 @@@ msgid " "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" +"Specifica la posizione dei file con gli elenchi dei file, se viene usata " +"l'impostazione <literal>FileList</literal> sotto." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:176 msgid "<literal>Default</literal> Section" -msgstr "" +msgstr "Sezione <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:178 @@@ -7495,9 -5154,6 +7411,9 @@@ msgid " "settings that control the operation of the generator. Other sections may " "override these defaults with a per-section setting." msgstr "" +"La sezione <literal>Default</literal> specifica i valori predefiniti e le " +"impostazioni che controllano il funzionamento del generatore. Altre sezioni " +"possono scavalcare questi valori tramite impostazioni definite per sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:184 @@@ -7507,10 -5163,6 +7423,10 @@@ msgid " "compression), 'gzip' and 'bzip2'. The default for all compression schemes is " "'. gzip'." msgstr "" +"Imposta gli schemi di compressione predefiniti da usare per i file indice " +"dei pacchetti. È una stringa che contiene una lista separata da spazi con " +"almeno uno fra «.» (nessuna compressione), «gzip» e «bzip2». Il valore " +"predefinito per tutti gli schemi di compressione è «. gzip»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:192 @@@ -7518,8 -5170,6 +7434,8 @@@ msgid " "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" +"Imposta la lista predefinita di estensioni di file che contraddistinguono i " +"file dei pacchetti. Il valore predefinito è «.deb»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:198 @@@ -7527,8 -5177,6 +7443,8 @@@ msgid " "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione dei file Sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:204 @@@ -7536,8 -5184,6 +7452,8 @@@ msgid " "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" +"Imposta la lista predefinita di estensioni che contraddistinguono i file dei " +"sorgenti. Il valore predefinito è «.dsc»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:210 @@@ -7545,8 -5191,6 +7461,8 @@@ msgid " "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione dei file Contents." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:216 @@@ -7554,8 -5198,6 +7470,8 @@@ msgid " "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione del file principale Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:222 @@@ -7564,9 -5206,6 +7480,9 @@@ msgid " "per run. This is used in conjunction with the per-section <literal>External-" "Links</literal> setting." msgstr "" +"Specifica il numero dei kilobyte da scollegare (e sostituire con " +"collegamenti fisici) per esecuzione. Viene usato insieme all'impostazione " +"per sezione <literal>External-Links</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:229 @@@ -7574,9 -5213,6 +7490,9 @@@ msgid " "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" +"Specifica la modalità di tutti i file indice creati. Il valore predefinito è " +"0644. Tutti i file di indice sono impostati a questa modalità a prescindere " +"dall'umask." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382 @@@ -7585,14 -5221,11 +7501,14 @@@ msgid " "<filename>Packages</filename> file or split out into a master " "<filename>Translation-en</filename> file." msgstr "" +"Specifica se le descrizioni lunghe debbano essere incluse nel file " +"<filename>Packages</filename> o separate in un file <filename>Translation-" +"en</filename> principale." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:242 msgid "<literal>TreeDefault</literal> Section" -msgstr "" +msgstr "Sezione <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:244 @@@ -7601,10 -5234,6 +7517,9 @@@ msgid " "variables are substitution variables and have the strings $(DIST), " "$(SECTION) and $(ARCH) replaced with their respective values." msgstr "" +"Imposta valori predefiniti specifici per le sezioni <literal>Tree</literal>. " +"Tutte queste variabili sono variabili di sostituzione in cui le stringhe " - "$(DIST), $(SECTION) e $(ARCH) verranno sostituite dai loro rispettivi " - "valori." ++"$(DIST), $(SECTION) e $(ARCH) verranno sostituite dai loro rispettivi valori." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:251 @@@ -7613,9 -5242,6 +7528,9 @@@ msgid " "The contents files are round-robined so that over several days they will all " "be rebuilt." msgstr "" +"Imposta il numero di kilobyte di file Contents che vengono generati ogni " +"giorno. I file Contents sono ruotati a turno in modo da venire rigenerati " +"tutti nel giro di alcuni giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:258 @@@ -7627,14 -5253,6 +7542,14 @@@ msgid " "is allowed in hopes that new .debs will be installed, requiring a new file " "anyhow. The default is 10, the units are in days." msgstr "" +"Controlla il numero di giorni durante i quali un file Contents può essere " +"controllato senza modifiche. Al superamento di questo limite, l'orario mtime " - "del file Contents viene aggiornato. Questo può succedere se il file " - "Packages viene modificato in un modo che non ha come risultato un nuovo file " - "Contents [ad esempio una modifica di override]. È consentito un certo " - "ritardo, nella speranza che vengano installati nuovi pacchetti .deb, il che " - "richiederebbe comunque la creazione di un nuovo file. Il valore predefinito " - "è 10, i valori sono espressi in giorni." ++"del file Contents viene aggiornato. Questo può succedere se il file Packages " ++"viene modificato in un modo che non ha come risultato un nuovo file Contents " ++"[ad esempio una modifica di override]. È consentito un certo ritardo, nella " ++"speranza che vengano installati nuovi pacchetti .deb, il che richiederebbe " ++"comunque la creazione di un nuovo file. Il valore predefinito è 10, i valori " ++"sono espressi in giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:269 @@@ -7642,8 -5260,6 +7557,8 @@@ msgid " "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" +"Imposta la radice dell'albero della directory dei .deb. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:275 @@@ -7651,8 -5267,6 +7566,8 @@@ msgid " "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" +"Imposta la radice dell'albero della directory dei pacchetti sorgente. Il " +"valore predefinito è <filename>$(DIST)/$(SECTION)/source/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:281 @@@ -7660,8 -5274,6 +7575,8 @@@ msgid " "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" - "Imposta il file Packages di uscita. Il valore predefinito è " - "<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>." ++"Imposta il file Packages di uscita. Il valore predefinito è <filename>" ++"$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:287 @@@ -7669,8 -5281,6 +7584,8 @@@ msgid " "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" - "Imposta il file Sources di uscita. Il valore predefinito è " - "<filename>$(DIST)/$(SECTION)/source/Sources</filename>." ++"Imposta il file Sources di uscita. Il valore predefinito è <filename>$(DIST)/" ++"$(SECTION)/source/Sources</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:293 @@@ -7679,9 -5289,6 +7594,9 @@@ msgid " "they should be not included in the Packages file. Defaults to <filename>" "$(DIST)/$(SECTION)/i18n/Translation-en</filename>" msgstr "" +"Imposta il file Translation-en principale di uscita contenente le " +"descrizioni lunghe se non devono essere incluse nel file Packages. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:300 @@@ -7690,9 -5297,6 +7605,9 @@@ msgid " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" "filename>" msgstr "" +"Imposta il prefisso del percorso che fa sì che un collegamento simbolico sia " +"considerato un collegamento interno invece che esterno. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:307 @@@ -7703,17 -5307,11 +7618,16 @@@ msgid " "ftparchive</command> will integrate those package files together " "automatically." msgstr "" - "Imposta il file Contents di uscita. Il valore predefinito è " - "<filename>$(DIST)/$(SECTION)/Contents-$(ARCH)</filename>. Se questa " - "impostazione fa sì che più file Packages corrispondano a un solo file " - "Contents (come avviene con il valore predefinito), allora <command>apt-" - "ftparchive</command> unirà automaticamente insieme questi file dei " - "pacchetti." ++"Imposta il file Contents di uscita. Il valore predefinito è <filename>" ++"$(DIST)/$(SECTION)/Contents-$(ARCH)</filename>. Se questa impostazione fa sì " ++"che più file Packages corrispondano a un solo file Contents (come avviene " ++"con il valore predefinito), allora <command>apt-ftparchive</command> unirà " ++"automaticamente insieme questi file dei pacchetti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:316 msgid "Sets header file to prepend to the contents output." -msgstr "" +msgstr "Imposta il file di intestazione da anteporre all'output dei contenuti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:321 @@@ -7721,8 -5319,6 +7635,8 @@@ msgid " "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" +"Imposta il database per la cache binaria da usare per questa sezione. Lo " +"stesso database può essere condiviso da più sezioni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:327 @@@ -7731,9 -5327,6 +7645,9 @@@ msgid " "ftparchive</command> should read the list of files from the given file. " "Relative files names are prefixed with the archive directory." msgstr "" +"Specifica che invece di percorrere l'albero delle directory, <command>apt-" +"ftparchive</command> deve leggere la lista dei file dal file dato. I nomi " +"relativi dei file vengono fatti precedere dalla directory archivio." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:334 @@@ -7743,15 -5336,11 +7657,15 @@@ msgid " "Relative files names are prefixed with the archive directory. This is used " "when processing source indexes." msgstr "" +"Specifica che invece di percorrere l'albero delle directory, <command>apt-" +"ftparchive</command> deve leggere la lista dei file dal file dato. I nomi di " +"file relativi vengono fatti precedere dalla directory archivio. Questa " +"opzione viene usata quando si elaborano gli indici dei sorgenti." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:342 msgid "<literal>Tree</literal> Section" -msgstr "" +msgstr "Sezione <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:344 @@@ -7762,11 -5351,6 +7676,11 @@@ msgid " "pathing used is defined by the <literal>Directory</literal> substitution " "variable." msgstr "" +"La sezione <literal>Tree</literal> definisce un albero di file standard " +"Debian che consiste in una directory di base, quindi più sezioni in quella " +"directory di base e infine più architetture in ogni sezione. Gli esatti " +"percorsi usati sono definiti dalla variabile di sostituzione " +"<literal>Directory</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:349 @@@ -7776,10 -5360,6 +7690,10 @@@ msgid " "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " "setting such as <filename>dists/&stable-codename;</filename>." msgstr "" +"La sezione <literal>Tree</literal> accetta un tag di ambito che imposta la " +"variabile <literal>$(DIST)</literal> e definisce la radice dell'albero (il " +"percorso viene fatto precedere da <literal>ArchiveDir</literal>). Di solito " +"è un'impostazione simile a <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:354 @@@ -7788,9 -5368,6 +7702,9 @@@ msgid " "can be used in a <literal>Tree</literal> section as well as three new " "variables." msgstr "" +"Tutte le impostazioni definite nella sezione <literal>TreeDefault</literal> " +"possono essere usate in una sezione <literal>Tree</literal>, oltre a tre " +"nuove variabili." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt-ftparchive.1.xml:360 @@@ -7801,10 -5378,6 +7715,10 @@@ msgid " " Generate for DIST=scope SECTION=i ARCH=j\n" " " msgstr "" +"for i in Sections do \n" +" for j in Architectures do\n" +" Genera per DIST=ambito SECTION=i ARCH=j\n" +" " #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:357 @@@ -7813,9 -5386,6 +7727,9 @@@ msgid " "command> performs an operation similar to: <placeholder type=\"programlisting" "\" id=\"0\"/>" msgstr "" - "Quando elabora una sezione <literal>Tree</literal>, <command>apt-" - "ftparchive</command> esegue un'operazione simile a: <placeholder " - "type=\"programlisting\" id=\"0\"/>" ++"Quando elabora una sezione <literal>Tree</literal>, <command>apt-ftparchive</" ++"command> esegue un'operazione simile a: <placeholder type=\"programlisting\" " ++"id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:368 @@@ -7824,8 -5394,6 +7738,8 @@@ msgid " "distribution; typically this is something like <literal>main contrib non-" "free</literal>" msgstr "" +"Questa è una lista di sezioni che appaiono sotto la distribuzione, separate " +"da spazi; tipicamente è simile a <literal>main contrib non-free</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:375 @@@ -7834,9 -5402,6 +7748,9 @@@ msgid " "search section. The special architecture 'source' is used to indicate that " "this tree has a source archive." msgstr "" +"Questa è una lista di tutte le architetture che appaiono sotto una sezione, " +"separate da spazi. L'architettura speciale «source» è usata per indicare che " +"questo albero ha un archivio sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:388 @@@ -7844,8 -5409,6 +7758,8 @@@ msgid " "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" +"Imposta il file override binario. Il file override contiene informazioni " +"sulla sezione, la priorità e l'indirizzo del manutentore." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:394 @@@ -7853,23 -5416,21 +7767,23 @@@ msgid " "Sets the source override file. The override file contains section " "information." msgstr "" +"Imposta il file override sorgente. Il file override contiene informazioni " +"sulla sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446 msgid "Sets the binary extra override file." -msgstr "" +msgstr "Imposta il file override binario extra." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451 msgid "Sets the source extra override file." -msgstr "" +msgstr "Imposta il file override sorgente extra." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:410 msgid "<literal>BinDirectory</literal> Section" -msgstr "" +msgstr "Sezione <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:412 @@@ -7880,16 -5441,11 +7794,16 @@@ msgid " "section with no substitution variables or <literal>Section</" "literal><literal>Architecture</literal> settings." msgstr "" +"La sezione <literal>bindirectory</literal> definisce un albero di directory " +"dei binari senza una struttura speciale. Il tag di ambito specifica la " +"posizione della directory dei binari e le impostazioni sono simili a quelle " +"della sezione <literal>Tree</literal> senza variabili di sostituzione o " +"impostazioni <literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:420 msgid "Sets the Packages file output." -msgstr "" +msgstr "Imposta l'output del file Packages." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:425 @@@ -7897,43 -5453,41 +7811,43 @@@ msgid " "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" +"Imposta l'output del file Sources. È obbligatorio almeno uno fra " +"<literal>Packages</literal> e <literal>Sources</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:431 msgid "Sets the Contents file output (optional)." -msgstr "" +msgstr "Imposta l'output del file Contents (opzionale)." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:436 msgid "Sets the binary override file." -msgstr "" +msgstr "Imposta il file override binario." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:441 msgid "Sets the source override file." -msgstr "" +msgstr "Imposta il file override sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:456 msgid "Sets the cache DB." -msgstr "" +msgstr "Imposta il DB della cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:461 msgid "Appends a path to all the output paths." -msgstr "" +msgstr "Aggiunge un percorso a tutti i percorsi di uscita." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:466 msgid "Specifies the file list file." -msgstr "" +msgstr "Specifica il file con l'elenco dei file." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:473 msgid "The Binary Override File" -msgstr "" +msgstr "Il file override binario" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:474 @@@ -7944,23 -5498,18 +7858,23 @@@ msgid " "section to force that package to and the final field is the maintainer " "permutation field." msgstr "" +"Il file override binario è completamente compatibile con &dpkg-" +"scanpackages;. Contiene quattro campi separati da spazi. Il primo campo è il " +"nome del pacchetto, il secondo è la priorità a cui forzare quel pacchetto, " +"il terzo è la sezione in cui forzare quel pacchetto e l'ultimo campo è il " +"campo di permutazione del manutentore." #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:480 #, no-wrap msgid "old [// oldn]* => new" -msgstr "" +msgstr "vecchio [// vecchio...]* => nuovo" #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:482 #, no-wrap msgid "new" -msgstr "" +msgstr "nuovo" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:479 @@@ -7972,17 -5521,11 +7886,17 @@@ msgid " "for the maintainer field. The second form unconditionally substitutes the " "maintainer field." msgstr "" - "La forma generale del campo manutentore è: <placeholder type=\"literallayout\" " - "id=\"0\"/> o semplicemente <placeholder type=\"literallayout\" id=\"1\"/>. La " - "prima forma consente di specificare una lista di vecchi indirizzi di posta " - "elettronica separati da una doppia sbarra. Se qualcuno di essi viene " ++"La forma generale del campo manutentore è: <placeholder type=\"literallayout" ++"\" id=\"0\"/> o semplicemente <placeholder type=\"literallayout\" id=\"1\"/" ++">. La prima forma consente di specificare una lista di vecchi indirizzi di " ++"posta elettronica separati da una doppia sbarra. Se qualcuno di essi viene " +"trovato, allora il campo manutentore viene sostituito con «nuovo». La " +"seconda forma sostituisce invariabilmente il campo manutentore." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:490 msgid "The Source Override File" -msgstr "" +msgstr "Il file override sorgente" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:492 @@@ -7991,14 -5534,11 +7905,14 @@@ msgid " "contains two fields separated by spaces. The first field is the source " "package name, the second is the section to assign it." msgstr "" +"Il file override sorgente è completamente compatibile con &dpkg-" +"scansources;. Contiene due campi separati da spazi. Il primo campo è il nome " +"del pacchetto sorgente, il secondo è la sezione a cui assegnarlo." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:497 msgid "The Extra Override File" -msgstr "" +msgstr "Il file override extra" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:499 @@@ -8007,9 -5547,6 +7921,9 @@@ msgid " "the output. It has three columns, the first is the package, the second is " "the tag and the remainder of the line is the new value." msgstr "" +"Il file override extra permette di aggiungere o sostituire nell'output un " +"tag arbitrario. Ha tre colonne: la prima per il pacchetto, la seconda per il " +"tag e il resto della riga è il nuovo valore." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:510 @@@ -8024,18 -5561,6 +7938,17 @@@ msgid " "literal> and <literal><replaceable>Checksum</replaceable></literal> can be " "<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>." msgstr "" +"Genera i codici di controllo specificati. Queste opzioni sono abilitate in " +"modo predefinito; quando vengono disabilitate i file indice non hanno, " +"quando ciò è possibile, i campi dei codici di controllo. Voci di " - "configurazione: <literal>APT::FTPArchive::<replaceable>Codice-di-" - "controllo</replaceable></literal> e " - "<literal>APT::FTPArchive::<replaceable>Indice</replaceable>::<replaceable" - ">Codice-di-controllo</replaceable></literal> dove " ++"configurazione: <literal>APT::FTPArchive::<replaceable>Codice-di-controllo</" ++"replaceable></literal> e <literal>APT::FTPArchive::<replaceable>Indice</" ++"replaceable>::<replaceable>Codice-di-controllo</replaceable></literal> dove " +"<literal><replaceable>Indice</replaceable></literal> può essere " - "<literal>Packages</literal>, <literal>Sources</literal> o " - "<literal>Release</literal> e <literal><replaceable>Codice-di-" - "controllo</replaceable></literal> può essere <literal>MD5</literal>, " - "<literal>SHA1</literal> o <literal>SHA256</literal>." ++"<literal>Packages</literal>, <literal>Sources</literal> o <literal>Release</" ++"literal> e <literal><replaceable>Codice-di-controllo</replaceable></literal> " ++"può essere <literal>MD5</literal>, <literal>SHA1</literal> o " ++"<literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:521 @@@ -8043,8 -5568,6 +7956,8 @@@ msgid " "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" +"Usa un DB per la cache binaria. Questo non ha effetto sul comando generate. " +"Voce di configurazione: <literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:527 @@@ -8054,11 -5577,6 +7967,11 @@@ msgid " "<option>-q=#</option> to set the quiet level, overriding the configuration " "file. Configuration Item: <literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto per un file di registro, omettendo gli " +"indicatori di avanzamento. Ulteriori q produrranno un risultato ancor più " - "silenzioso, fino a un massimo di 2. È anche possibile usare " - "<option>-q=n</option> per impostare il livello di silenziosità, scavalcando " - "il file di configurazione. Voce di configurazione: <literal>quiet</literal>." ++"silenzioso, fino a un massimo di 2. È anche possibile usare <option>-q=n</" ++"option> per impostare il livello di silenziosità, scavalcando il file di " ++"configurazione. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:535 @@@ -8068,11 -5586,6 +7981,11 @@@ msgid " "and can be turned off with <option>--no-delink</option>. Configuration " "Item: <literal>APT::FTPArchive::DeLinkAct</literal>." msgstr "" - "Effettua il de-collegamento. Se viene usata l'impostazione <literal" - ">External-Links</literal> allora questa opzione abilita di fatto il de-" - "collegamento dei file. È attiva in modo predefinito e può essere " - "disabilitata con <option>--no-delink</option>. Voce di configurazione: " - "<literal>APT::FTPArchive::DeLinkAct</literal>." ++"Effettua il de-collegamento. Se viene usata l'impostazione <literal>External-" ++"Links</literal> allora questa opzione abilita di fatto il de-collegamento " ++"dei file. È attiva in modo predefinito e può essere disabilitata con " ++"<option>--no-delink</option>. Voce di configurazione: <literal>APT::" ++"FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:543 @@@ -8083,12 -5596,6 +7996,12 @@@ msgid " "option also allows the creation of any Contents files. The default is on. " "Configuration Item: <literal>APT::FTPArchive::Contents</literal>." msgstr "" +"Effettua la generazione dei Contents. Se viene impostata questa opzione e " +"gli indici dei pacchetti sono generati con un DB della cache, allora anche " +"l'elenco dei file verrà estratto e memorizzato nel DB per gli usi futuri. " +"Quando si usa il comando generate questa opzione permette anche la creazione " +"di qualsiasi file Contents. È attiva in modo predefinito. Voce di " +"configurazione: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:553 @@@ -8097,9 -5604,6 +8010,9 @@@ msgid " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" "literal>." msgstr "" +"Seleziona il file override sorgente da usare con il comando " - "<literal>sources</literal>. Voce di configurazione " - "<literal>APT::FTPArchive::SourceOverride</literal>." ++"<literal>sources</literal>. Voce di configurazione <literal>APT::FTPArchive::" ++"SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:559 @@@ -8107,8 -5611,6 +8020,8 @@@ msgid " "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." msgstr "" +"Rende i database delle cache in sola lettura. Voce di configurazione: " +"<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:564 @@@ -8118,11 -5620,6 +8031,11 @@@ msgid " "<literal>*_all.deb</literal> instead of all package files in the given " "path. Configuration Item: <literal>APT::FTPArchive::Architecture</literal>." msgstr "" - "Accetta per i comandi <literal>packages</literal> e " - "<literal>contents</literal> solo i file di pacchetto che corrispondono a " - "<literal>*_arch.deb</literal> o <literal>*_all.deb</literal> invece di tutti " - "i file di pacchetto nel percorso specificato. Voce di configurazione: " - "<literal>APT::FTPArchive::Architecture</literal>." ++"Accetta per i comandi <literal>packages</literal> e <literal>contents</" ++"literal> solo i file di pacchetto che corrispondono a <literal>*_arch.deb</" ++"literal> o <literal>*_all.deb</literal> invece di tutti i file di pacchetto " ++"nel percorso specificato. Voce di configurazione: <literal>APT::FTPArchive::" ++"Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:572 @@@ -8137,15 -5634,6 +8050,15 @@@ msgid " "theory nobody will have these problems and therefore all these extra checks " "are useless." msgstr "" +"&apt-ftparchive; memorizza in un database cache il maggior numero possibile " +"di metadati. Se i pacchetti sono ricompilati o ripubblicati nuovamente con " +"la stessa versione, questo causa problemi dato che verranno usati dei " +"metadati in cache, come la dimensione e i codici di controllo, non più " +"aggiornati. Notare che questa opzione è impostata in modo predefinito a " +"«<literal>false</literal>» dato che non è raccomandabile caricare più " +"versioni/compilazioni di un pacchetto con lo stesso numero di versione, " +"perciò in teoria nessuno dovrebbe avere di questi problemi e di conseguenza " +"tutti questi controlli aggiuntivi sono inutili." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:584 @@@ -8156,20 -5644,12 +8069,18 @@@ msgid " "that the <filename>Translation-en</filename> master file can only be created " "in the generate command." msgstr "" +"Questa opzione di configurazione è impostata a «<literal>true</literal>» in " +"modo predefinito e dovrebbe essere impostata a <literal>«false»</literal> " +"solamente se l'archivio generato con &apt-ftparchive; fornisce anche file " - "<filename>Translation</filename>. Notare che il file principale <filename" - ">Translation-en</filename> può essere creato solamente con il comando " - "generate." ++"<filename>Translation</filename>. Notare che il file principale " ++"<filename>Translation-en</filename> può essere creato solamente con il " ++"comando generate." #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:602 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" - msgstr "<command>apt-ftparchive</command> packages " - "<replaceable>directory</replaceable> | <command>gzip</command> > " - "<filename>Packages.gz</filename>\n" -msgstr "" ++msgstr "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:598 @@@ -8177,8 -5657,6 +8088,8 @@@ msgid " "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Per creare un file Packages compresso per una directory contenente pacchetti " +"binari (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:612 @@@ -8186,8 -5664,6 +8097,8 @@@ msgid " "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" +"<command>apt-ftparchive</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: TH #: apt.8:17 @@@ -8199,41 -5675,41 +8110,41 @@@ msgstr "apt #: apt.8:17 #, no-wrap msgid "16 June 1998" -msgstr "" +msgstr "16 giugno 1998" #. type: TH #: apt.8:17 #, no-wrap msgid "Debian" -msgstr "" +msgstr "Debian" #. type: SH #: apt.8:18 #, no-wrap msgid "NAME" -msgstr "" +msgstr "NOME" #. type: Plain text #: apt.8:20 msgid "apt - Advanced Package Tool" -msgstr "" +msgstr "apt - Advanced Package Tool (strumento avanzato per i pacchetti)" #. type: SH #: apt.8:20 #, no-wrap msgid "SYNOPSIS" -msgstr "" +msgstr "SINTASSI" #. type: Plain text #: apt.8:22 msgid "B<apt>" -msgstr "" +msgstr "B<apt>" #. type: SH #: apt.8:22 #, no-wrap msgid "DESCRIPTION" -msgstr "" +msgstr "DESCRIZIONE" #. type: Plain text #: apt.8:31 @@@ -8243,16 -5719,12 +8154,16 @@@ msgid " "(8) for the command line or B<synaptic>(8) for the X Window System. Some " "options are only implemented in B<apt-get>(8) though." msgstr "" +"APT è un sistema di gestione per i pacchetti software. Per la normale " +"gestione quotidiana dei pacchetti sono disponibili diverse interfacce, quali " +"B<aptitude>(8) per la riga di comando o B<synaptic>(8) per il sistema X " +"Window. Comunque alcune opzioni sono implementate solo in B<apt-get>(8)." #. type: SH #: apt.8:31 #, no-wrap msgid "SEE ALSO" -msgstr "" +msgstr "VEDERE ANCHE" #. type: Plain text #: apt.8:38 @@@ -8260,32 -5732,28 +8171,32 @@@ msgid " "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " "B<apt_preferences>(5), B<apt-secure>(8)" msgstr "" +"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +"B<apt_preferences>(5), B<apt-secure>(8)" #. type: SH #: apt.8:38 #, no-wrap msgid "DIAGNOSTICS" -msgstr "" +msgstr "DIAGNOSTICA" #. type: Plain text #: apt.8:40 msgid "apt returns zero on normal operation, decimal 100 on error." msgstr "" +"apt restituisce zero in caso di funzionamento normale e il valore decimale " +"100 in caso di errore." #. type: SH #: apt.8:40 #, no-wrap msgid "BUGS" -msgstr "" +msgstr "BUG" #. type: Plain text #: apt.8:42 msgid "This manpage isn't even started." -msgstr "" +msgstr "Questa pagina di manuale non è neanche stata iniziata." #. type: Plain text #: apt.8:51 @@@ -8294,108 -5762,115 +8205,108 @@@ msgid " "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " "B<reportbug>(1) command." msgstr "" +"Vedere E<lt>http://bugs.debian.org/aptE<gt>. Per segnalare un bug in B<apt>, " - "vedere I</usr/share/doc/debian/bug-reporting.txt> o il comando " - "B<reportbug>(1)." ++"vedere I</usr/share/doc/debian/bug-reporting.txt> o il comando B<reportbug>" ++"(1)." #. type: SH #: apt.8:51 #, no-wrap msgid "AUTHOR" -msgstr "" +msgstr "AUTORE" #. type: Plain text #: apt.8:52 msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" +msgstr "apt è stato scritto dal Team APT E<lt>apt@packages.debian.orgE<gt>." #. type: <title> #: guide.sgml:4 -#, fuzzy msgid "APT User's Guide" msgstr "Guida dell'utente di APT" #. type: #: guide.sgml:6 offline.sgml:6 -#, fuzzy msgid "Jason Gunthorpe jgg@debian.org" msgstr "Jason Gunthorpe jgg@debian.org" #. type: #: guide.sgml:7 -#, fuzzy msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.it.sgml,v 1.5 2003/04/26 23:26:13 doogie Exp $" +msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" #. type: #: guide.sgml:11 -#, fuzzy msgid "" "This document provides an overview of how to use the the APT package manager." -msgstr "Guida per l'uso del gestore di pacchetti APT." +msgstr "" +"Questo documento fornisce una panoramica su come usare il gestore di " +"pacchetti APT." #. type: #: guide.sgml:15 -#, fuzzy msgid "Copyright © Jason Gunthorpe, 1998." msgstr "Copyright © Jason Gunthorpe, 1998." #. type:

#: guide.sgml:21 offline.sgml:22 -#, fuzzy msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." msgstr "" -"\"APT\" e questo documento sono software libero, e li si può ridistribuire e/" -"o modificare secondo i termini della Licenza Pubblica Generica GNU (GPL), " -"pubblicata dalla Free Software Foundation, nella versione 2 o (se preferite) " -"qualsiasi versione successiva." +"«APT» e questo documento sono software libero; li si può ridistribuire e/o " +"modificare secondo i termini della Licenza Pubblica Generica GNU (GPL), " +"pubblicata dalla Free Software Foundation, nella versione 2 o (a propria " +"scelta) qualsiasi versione successiva." #. type:

#: guide.sgml:24 offline.sgml:25 -#, fuzzy msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." msgstr "" -"Per ulteriori dettagli sui sistemi si veda il testo completo della licenza " -"nel file /usr/share/common-licenses/GPL." +"Per ulteriori dettagli, sui sistemi Debian, si veda il testo completo della " +"licenza nel file /usr/share/common-licenses/GPL." #. type: #: guide.sgml:32 -#, fuzzy msgid "General" msgstr "Descrizione generale" #. type:

#: guide.sgml:38 -#, fuzzy msgid "" "The APT package currently contains two sections, the APT dselect method and the apt-get command line user interface. Both " "provide a way to install and remove packages as well as download new " "packages from the Internet." msgstr "" -"Il pacchetto APT al momento contiene due sezioni, il metodo APT " -"dselect e l'interfaccia utente a linea di comando apt-" -"get; entrambi danno modo di installare e rimuovere pacchetti, e di " -"scaricarne altri da Internet." +"Il pacchetto APT al momento contiene due sezioni, il metodo APT per " - "dselect e l'interfaccia utente a riga di comando apt-" - "get; entrambi forniscono un modo per installare e rimuovere " - "pacchetti, così come per scaricarne di nuovi da Internet." ++"dselect e l'interfaccia utente a riga di comando apt-get; entrambi forniscono un modo per installare e rimuovere pacchetti, " ++"così come per scaricarne di nuovi da Internet." #. type: #: guide.sgml:39 -#, fuzzy msgid "Anatomy of the Package System" -msgstr "Anatomia del sistema di pacchettizzazione" +msgstr "Anatomia del sistema dei pacchetti" #. type:

#: guide.sgml:44 -#, fuzzy msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " "the system. The most prominent of its features is the dependency system." msgstr "" -"Il sistema di pacchettizzazione di Debian contiene un gran numero di " -"informazioni associate a ciascun pacchetto, per assicurarsi che si integri " -"facilmente ed in maniera pulita nel sistema; la più importante di esse è il " +"Il sistema dei pacchetti di Debian contiene un gran numero di informazioni " +"associate a ciascun pacchetto, per garantire che si integri facilmente ed in " +"maniera pulita nel sistema. La sua caratteristica più importante è il " "sistema di dipendenze." #. type:

#: guide.sgml:52 -#, fuzzy msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@@ -8404,14 -5879,15 +8315,14 @@@ "in mail transport agents, X servers and so on." msgstr "" "Il sistema di dipendenze permette ai singoli programmi di fare uso degli " -"elementi condivisi del sistema, quali le librerie; per ridurre il numero di " -"elementi che l'utente medio debba installare, le porzioni di programmi che " -"non vengono usate spesso vengono poste in pacchetti separati. Inoltre, è " -"possibile avere più di una scelta per cose quali i programmi di posta " -"elettronica, i server X e così via." +"elementi condivisi del sistema, quali le librerie. Semplifica l'inserimento " +"delle porzioni di un programma usate raramente in pacchetti separati per " +"ridurre il numero di cose che l'utente medio deve installare. Inoltre, rende " +"possibile avere più di una scelta per cose quali i programmi di " +"trasferimento della posta elettronica, i server X e così via." #. type:

#: guide.sgml:57 -#, fuzzy msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@@ -8424,20 -5900,22 +8335,20 @@@ msgstr " #. type:

#: guide.sgml:63 -#, fuzzy msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " "simple dependency on GPG. Also, because it is an emacs extension it has a " "simple dependency on emacs, without emacs it is completely useless." msgstr "" -"Ad esempio, mail-crypt è un'estensione di emacs che aiuta a criptare le mail " -"con PGP. Se PGP non è installato, mail-crypt è inutile, quindi mail-crypt ha " -"una dipendenza semplice da PGP. Inoltre, dato che si tratta di un'estensione " -"di emacs, mail-crypt dipende anche da emacs, senza il quale è totalmente " -"inutile." +"Ad esempio, mailcrypt è un'estensione di emacs che aiuta a cifrare i " +"messaggi di posta elettronica GPG. Se GPG non è installato, mailcrypt è " +"inutile, quindi mailcrypt ha una dipendenza semplice da GPG. Inoltre, dato " +"che si tratta di un'estensione di emacs, mailcrypt ha anche una dipendenza " +"semplice da emacs, senza il quale è totalmente inutile." #. type:

#: guide.sgml:73 -#, fuzzy msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@@ -8449,17 -5927,18 +8360,17 @@@ "other mail transport agents." msgstr "" "L'altro tipo di dipendenza importante da capire è la dipendenza di " -"conflitto; con questa, un pacchetto che venga installato insieme ad un altro " -"pacchetto non funziona, e si hanno seri problemi al sistema. Come esempio, " -"si consideri un programma di trasporto della posta, quale sendmail, exim o " -"qmail: non è possibile averne due contemporaneamente, perché entrambi hanno " -"bisogno di restare in ascolto sulla stessa porta di rete per ricevere la " -"posta. Tentare di installarne due danneggerebbe seriamente il sistema, " -"quindi ciascun programma di trasporto della posta ha una dipendenza di " -"conflitto con tutti gli altri." +"conflitto; significa che un pacchetto, quando è installato insieme ad un " +"altro, non funziona e potrebbe potenzialmente causare seri danni al sistema. " +"Come esempio, si consideri un programma di trasporto della posta, quale " +"sendmail, exim o qmail: non è possibile averne installati due " +"contemporaneamente, perché entrambi hanno bisogno di restare in ascolto " +"sulla rete per ricevere la posta. Tentare di installarne due danneggerebbe " +"seriamente il sistema, quindi ciascun programma di trasporto della posta ha " +"una dipendenza di conflitto verso tutti gli altri." #. type:

#: guide.sgml:83 -#, fuzzy msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@@ -8470,36 -5949,38 +8381,36 @@@ "depend on mail-transport-agent. This can add a great deal of confusion when " "trying to manually fix packages." msgstr "" -"Come ulteriore complicazione, c'è la possibilità che un pacchetto voglia " -"prendere il posto di un altro; ad esempio, exim e sendmail per molte cose " -"sono identici, dato che entrambi gestiscono la posta e comprendono " -"un'interfaccia comune, quindi il sistema di pacchettizzazione deve " -"dichiarare che sono entrambi agenti di trasporto della posta, e che gli " -"altri pacchetti a cui serve uno dei due devono dipendere da un pacchetto " -"fittizio agente-di-trasporto-della-posta. Quando si modificano a mano i " +"Come ulteriore complicazione, c'è la possibilità per un pacchetto di far " +"finta di essere un altro. Ad esempio, exim e sendmail sono dal lato pratico " +"identici, dato che entrambi consegnano la posta e utilizzano un'interfaccia " +"comune. Il sistema dei pacchetti quindi fornisce un mezzo con cui entrambi " +"possono dichiarare di essere programmi di trasporto della posta; perciò " +"entrambi dichiarano di fornire un mail-transport-agent e gli altri pacchetti " +"che hanno bisogno di un programma di trasferimento della posta possono " +"dipendere da mail-transport-agent. Quando si cerca di modificare a mano i " "pacchetti, questo può portare a moltissima confusione." #. type:

#: guide.sgml:88 -#, fuzzy msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " "issues by providing a number of automatic algorithms that help in selecting " "packages for installation." msgstr "" -"In ciascun momento una singola dipendenza può essere soddisfatta o meno dai " -"pacchetti già installati; APT cerca di risolvere i problemi di dipendenze " -"con un buon numero di algoritmi automatici, che aiutano a selezionare i " -"pacchetti da installare." +"In un determinato momento una singola dipendenza può essere soddisfatta dai " +"pacchetti già installati o può non esserlo; APT cerca di risolvere i " +"problemi di dipendenze fornendo svariati algoritmi automatici, che aiutano a " +"selezionare i pacchetti da installare." #. type: #: guide.sgml:96 -#, fuzzy msgid "apt-get" msgstr "apt-get" #. type:

#: guide.sgml:102 -#, fuzzy msgid "" "apt-get provides a simple way to install packages from the " "command line. Unlike dpkg, apt-get does not " @@@ -8507,12 -5988,13 +8418,12 @@@ "install .deb archives from a Source." msgstr "" "apt-get fornisce un modo semplice di installare i pacchetti " - "dalla riga di comando. Diversamente da dpkg, apt-" - "get non tratta i file .deb, ma utilizza il vero nome dei pacchetti e " - "può installare archivi .deb solo da una fonte." -"dalla linea di comando. Diversamente da dpkg, apt-get non capisce i nomi dei file .deb, ma utilizza il vero nome dei " -"pacchetti, e può installare archivi .deb solo da una fonte." ++"dalla riga di comando. Diversamente da dpkg, apt-get non tratta i file .deb, ma utilizza il vero nome dei pacchetti e può " ++"installare archivi .deb solo da una fonte." #. type:

#: guide.sgml:109 -#, fuzzy msgid "" "The first

If you are using an http proxy server you must set " "the http_proxy environment variable first, see sources.list(5)

apt-get update. For " "instance," msgstr "" -"La prima

Se state usando un proxy server http, dovete prima " +"La prima

Se si sta usando un server proxy http, si deve prima " - "ancora impostare la variabile d'ambiente http_proxy; vedere " - "sources.list(5).

cosa da fare prima di usare apt-" - "get è scaricare gli elenchi dei pacchetti dalle fonti in " - "modo che il programma sappia quali pacchetti sono disponibili. Lo si fa con " - "apt-get update. Ad esempio," + "ancora impostare la variabile d'ambiente http_proxy; vedere sources.list(5)." -"

cosa da fare prima di usare apt-get è impostare " -"l'elenco dei pacchetti dalle fonti in modo che il programma sappia quali " -"pacchetti sono disponibili. Lo si fa con apt-get update. Ad esempio," ++"

cosa da fare prima di usare apt-get è scaricare " ++"gli elenchi dei pacchetti dalle fonti in modo che il programma " ++"sappia quali pacchetti sono disponibili. Lo si fa con apt-get update. Ad esempio," #. type: #: guide.sgml:116 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get update\n" "Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" @@@ -8539,24 -6020,26 +8450,23 @@@ "Building Dependency Tree... Done" msgstr "" "# apt-get update\n" - "Scaricamento di: http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ " - "Packages\n" -"Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" -"Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" -"Reading Package Lists... Done\n" -"Building Dependency Tree... Done" ++"Scaricamento di: http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" +"Scaricamento di: http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Lettura elenco dei pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto" #. type:

#: guide.sgml:120 -#, fuzzy msgid "Once updated there are several commands that can be used:" -msgstr "Dopo aver aggiornato l'elenco si possono usare molti comandi:" +msgstr "Una volta aggiornato l'elenco, si possono usare svariati comandi:" #. type: #: guide.sgml:121 -#, fuzzy msgid "upgrade" msgstr "upgrade" #. type:

#: guide.sgml:131 -#, fuzzy msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@@ -8567,21 -6050,22 +8477,21 @@@ "apt-get install can be used to force these packages to install." msgstr "" "Upgrade tenterà di fare un aggiornamento indolore del sistema completo, " -"senza installare nuovi pacchetti o rimuoverne di esistenti, e senza " -"aggiornare un pacchetto che possa rovinarne altri. Upgrade farà un elenco di " -"tutti i pacchetti che non avrà potuto aggiornare, cosa che in genere " -"significa che questi dipendono da nuovi pacchetti o vanno in conflitto con " -"altri. Per forzare la loro installazione si può usare dselect o " -"apt-get install." +"senza installare mai nuovi pacchetti o rimuoverne di esistenti, e senza mai " +"aggiornare un pacchetto se ciò ne rende altri difettosi. Può essere usato " +"quotidianamente per fare un aggiornamento relativamente sicuro del sistema. " +"Upgrade elencherà tutti i pacchetti che non avrà potuto aggiornare, cosa che " +"in genere significa che questi dipendono da nuovi pacchetti o che vanno in " +"conflitto con altri. Per forzare la loro installazione si può usare " +"dselect o apt-get install." #. type: #: guide.sgml:131 -#, fuzzy msgid "install" msgstr "install" #. type:

#: guide.sgml:140 -#, fuzzy msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@@ -8591,22 -6075,24 +8501,22 @@@ "listed packages and will print a summary and ask for confirmation if " "anything other than its arguments are changed." msgstr "" -"Install viene usato per installare i singoli pacchetti dando il loro nome. " -"Il pacchetto viene automaticamente scaricato ed installato, cosa molto utile " -"se già se ne conosce il nome e non si vuole entrare in grafica per " +"Install viene usato per installare i pacchetti per nome. Il pacchetto viene " +"automaticamente scaricato ed installato; questo può essere utile se già se " +"ne conosce il nome e non si vuole entrare in un'interfaccia grafica per " "selezionarlo. Al comando si possono passare anche più pacchetti, che saranno " -"tutti scaricati. L'installazione automatica cerca di risolvere i problemi di " -"dipendenze con gli altri pacchetti elencati, stampa un riassunto e chiede " -"conferma se si devono modificare altri pacchetti che non siano quelli sulla " -"linea di comando." +"tutti scaricati. Install cerca automaticamente di risolvere i problemi di " +"dipendenze dei pacchetti elencati, stampa un riassunto e chiede conferma se " +"devono essere modificati altri pacchetti che non siano quelli sulla riga di " +"comando." #. type: #: guide.sgml:140 -#, fuzzy msgid "dist-upgrade" msgstr "dist-upgrade" #. type:

#: guide.sgml:149 -#, fuzzy msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@@ -8616,18 -6102,19 +8526,18 @@@ "dselect. Once dist-upgrade has completed then dselect can be used to install any packages that may have been left out." msgstr "" -"Dist-upgrade fa un aggiornamento completo, progettato in modo da rendere " -"semplici gli aggiornamenti tra versioni di Debian. Usa un algoritmo " +"Dist-upgrade fa un aggiornamento completo ed è progettato in modo da rendere " +"semplici gli aggiornamenti tra i rilasci di Debian. Usa un algoritmo " "sofisticato per determinare il miglior insieme di pacchetti da installare, " -"aggiornare e rimuovere per arrivare alla versione più aggiornata del sistema " -"possibile. In alcune situazioni può essere vantaggioso usare dist-upgrade " -"invece che sprecare tempo a risolvere manualmente le dipendenze con " -"dselect. Una volta completato dist-upgrade, si può usare " -"dselect per installare eventuali pacchetti che sono stati " -"tralasciati." +"aggiornare e rimuovere per migrare alla versione più recente la maggior " +"parte del sistema possibile. In alcune situazioni può essere vantaggioso " +"usare dist-upgrade invece di dedicare tempo a risolvere manualmente le " +"dipendenze con dselect. Una volta completato il lavoro di dist-" +"upgrade, si può usare dselect per installare eventuali " +"pacchetti che sono stati tralasciati." #. type:

#: guide.sgml:152 -#, fuzzy msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@@ -8637,6 -6124,7 +8547,6 @@@ msgstr " #. type:

#: guide.sgml:163 -#, fuzzy msgid "" "apt-get has several command line options that are detailed in " "its man page, . The most useful " @@@ -8646,35 -6134,38 +8556,35 @@@ "the downloaded archives can be installed by simply running the command that " "caused them to be downloaded again without -d." msgstr "" -"apt-get ha diverse opzioni a linea di comando, che vengono " -"documentate dettagliatamente nella sua pagina man, . L'opzione più utile è -d, che non installa i " -"file scaricati: se il sistema deve scaricare un gran numero di pacchetti, " -"non è bene farglieli installare subito, in caso dovesse andare male " -"qualcosa. Dopo aver usato -d, gli archivi scaricati possono essere " -"installati semplicemente dando di nuovo lo stesso comando senza l'opzione " -"-d." +"apt-get ha diverse opzioni per la riga di comando, che sono " - "documentate dettagliatamente nella sua pagina di manuale, . L'opzione più utile è -d, che non " - "installa i file scaricati; se il sistema deve scaricare un gran numero di " - "pacchetti, non è bene iniziare ad installarli nel caso qualcosa dovesse " - "andare storto. Quando si usa -d, gli archivi scaricati possono " - "essere installati semplicemente eseguendo di nuovo lo stesso comando senza " - "l'opzione -d." ++"documentate dettagliatamente nella sua pagina di manuale, . L'opzione più utile è -d, che non installa " ++"i file scaricati; se il sistema deve scaricare un gran numero di pacchetti, " ++"non è bene iniziare ad installarli nel caso qualcosa dovesse andare storto. " ++"Quando si usa -d, gli archivi scaricati possono essere installati " ++"semplicemente eseguendo di nuovo lo stesso comando senza l'opzione -d." #. type: #: guide.sgml:168 -#, fuzzy msgid "DSelect" msgstr "DSelect" #. type:

#: guide.sgml:173 -#, fuzzy msgid "" "The APT dselect method provides the complete APT system with " "the dselect package selection GUI. dselect is used " "to select the packages to be installed or removed and APT actually installs " "them." msgstr "" -"Il metodo APT di dselect fornisce tutte le funzionalità di APT " -"all'interno dell'interfaccia grafica di selezione dei pacchetti " +"Il metodo APT di dselect fornisce tutte le funzionalità del " +"sistema APT con l'interfaccia grafica di selezione dei pacchetti " "dselect. dselect viene usato per selezionare i " -"pacchetti da installare o rimuovere, ed APT li installa." +"pacchetti da installare o rimuovere, ed APT fa l'effettiva installazione." #. type:

#: guide.sgml:184 -#, fuzzy msgid "" "To enable the APT method you need to select [A]ccess in dselect " "and then choose the APT method. You will be prompted for a set of " @@@ -8686,20 -6177,19 +8596,20 @@@ "have access to the latest bug fixes. APT will automatically use packages on " "your CD-ROM before downloading from the Internet." msgstr "" - "Per abilitare il metodo APT si deve selezionare [A]ccess in " - "dselect e scegliere il metodo APT; verrà chiesto un insieme di " - "fonti (Sources), cioè di posti da cui scaricare gli archivi. " - "Possono essere siti Internet remoti, mirror locali di Debian o CD-ROM; ogni " - "fonte può fornire una parte dell'intero archivio Debian, ed APT le combinerà " -"Per abilitare il metodo APT dovete selezionare [A]ccess in dselect e scegliere il metodo APT; vi verrà chiesto un insieme di fonti " -"(Sources), cioè di posti da cui scaricare gli archivi. Tali fonti " -"possono essere siti Internet remoti, mirror locali di Debian o CDROM; " -"ciascuna di esse può fornire una parte dell'archivio Debian, ed APT le " -"combinerà insieme in un set completo di pacchetti. Se avete un CDROM è una " -"buona idea indicare quello per primo, e poi i mirror, in modo da avere " -"accesso alle ultime versioni; APT userà in questo modo automaticamente i " -"pacchetti sul CDROM prima di scaricarli da Internet." ++"Per abilitare il metodo APT si deve selezionare [A]ccess in dselect e scegliere il metodo APT; verrà chiesto un insieme di fonti " ++"(Sources), cioè di posti da cui scaricare gli archivi. Possono " ++"essere siti Internet remoti, mirror locali di Debian o CD-ROM; ogni fonte " ++"può fornire una parte dell'intero archivio Debian, ed APT le combinerà " +"automaticamente insieme per formare un insieme completo di pacchetti. Se si " +"ha un CD-ROM allora è una buona idea indicarlo per primo e poi specificare " +"un mirror, in modo da avere accesso alle ultime versioni con le soluzioni " +"dei bug. APT in questo modo userà automaticamente i pacchetti sul CD-ROM " +"prima di scaricarli da Internet." #. type: #: guide.sgml:198 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Set up a list of distribution source locations\n" "\t \n" @@@ -8729,18 -6219,19 +8639,18 @@@ msgstr " #. type:

#: guide.sgml:205 -#, fuzzy msgid "" "The Sources setup starts by asking for the base of the Debian " "archive, defaulting to a HTTP mirror. Next it asks for the distribution to " "get." msgstr "" -"La configurazione delle fonti inizia chiedendo la base dell'archivio Debian, " -"propone come default un mirror HTTP, e poi chiede la distribuzione da " -"scaricare." +"La configurazione delle fonti inizia chiedendo la base " +"dell'archivio Debian, proponendo in modo predefinito un mirror HTTP; " +"successivamente viene chiesta la distribuzione da scaricare." #. type: #: guide.sgml:212 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" @@@ -8756,6 -6247,7 +8666,6 @@@ msgstr " #. type:

#: guide.sgml:222 -#, fuzzy msgid "" "The distribution refers to the Debian version in the archive, stable refers to the latest released version and unstable refers to " @@@ -8764,16 -6256,16 +8674,16 @@@ "that cannot be exported from the United States. Importing these packages " "into the US is legal however." msgstr "" -"La distribuzione (``distribution'') fa riferimento alla versione Debian " -"dell'archivio: stable è l'ultima rilasciata, ed unstable è " -"quella di sviluppo. non-US è disponibile solo su alcuni mirror, e " -"contiene dei pacchetti in cui viene usata della tecnologia di criptazione o " -"altre cose che non possano essere esportate dagli Stati Uniti; importare " -"questi pacchetti negli US è però legale." +"La distribuzione indica la versione Debian dell'archivio: stable è " - "l'ultima versione rilasciata e unstable è quella di sviluppo. non-US è disponibile solo su alcuni mirror e contiene dei pacchetti in " - "cui viene usata della tecnologia di cifratura o altre cose che non possono " - "essere esportate dagli Stati Uniti; importare questi pacchetti negli USA è " - "però legale." ++"l'ultima versione rilasciata e unstable è quella di sviluppo. " ++"non-US è disponibile solo su alcuni mirror e contiene dei pacchetti " ++"in cui viene usata della tecnologia di cifratura o altre cose che non " ++"possono essere esportate dagli Stati Uniti; importare questi pacchetti negli " ++"USA è però legale." #. type: #: guide.sgml:228 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" @@@ -8787,30 -6279,33 +8697,30 @@@ msgstr " #. type:

#: guide.sgml:236 -#, fuzzy msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " "packages while contrib and non-free contain things that have various " "restrictions placed on their use and distribution." msgstr "" -"L'elenco dei componenti (``components'') si riferisce alla lista di sotto-" -"distribuzioni da scaricare. Ciascuna distribuzione viene divisa in base al " -"copyright del software: la main contiene pacchetti la cui licenza soddisfa " -"le DFSG, mentre contrib e non-free contengono software che ha diverse " -"restrizioni sull'uso e sulla distribuzione." +"L'elenco delle componenti indica la lista di sottodistribuzioni da " +"scaricare. Ciascuna distribuzione viene suddivisa in base alle licenze del " +"software: la componente main contiene pacchetti liberi secondo le DFSG, " +"mentre contrib e non-free contengono software che ha diverse restrizioni " +"sull'uso e sulla distribuzione." #. type:

#: guide.sgml:240 -#, fuzzy msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" -"Si possono inserire un qualsiasi numero di fonti, e lo script di " -"configurazione continuerà a chiedere fino a che abbiate specificato tutti " -"gli elementi che volete." +"Si può aggiungere un qualsiasi numero di fonti, e lo script di " +"configurazione continuerà a chiedere fino a che non sono state specificate " +"tutte quelle desiderate." #. type:

#: guide.sgml:247 -#, fuzzy msgid "" "Before starting to use dselect it is necessary to update the " "available list by selecting [U]pdate from the menu. This is a superset of " @@@ -8818,14 -6313,15 +8728,14 @@@ "dselect. [U]pdate must be performed even if apt-get update has been run before." msgstr "" -"Prima di cominciare ad usare dselect è necessario aggiornare " +"Prima di cominciare a usare dselect è necessario aggiornare " "l'elenco dei pacchetti disponibili selezionando [U]pdate dal menù: si tratta " -"di un sovrainsieme di ciò che fa apt-get update, che rende " -"l'informazione scaricata disponibile a dselect. [U]pdate deve " -"essere fatto anche se prima è stato dato apt-get update." +"di un sovrainsieme di ciò che fa apt-get update, che rende le " +"informazioni scaricate disponibili a dselect. [U]pdate deve " +"essere usato anche se prima è stato eseguito apt-get update." #. type:

#: guide.sgml:253 -#, fuzzy msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@@ -8839,23 -6335,25 +8749,23 @@@ msgstr " #. type:

#: guide.sgml:258 -#, fuzzy msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place Dselect::" "clean \"prompt\"; in /etc/apt/apt.conf." msgstr "" -"Per default APT rimuoverà automaticamente i pacchetti che sono stati " -"installati con successo. Per modificare questo comportamento, si inserisca " -"Dselect::clean \"prompt\"; in /etc/apt/apt.conf." +"In modo predefinito APT rimuoverà automaticamente i file (.deb) dei " +"pacchetti che sono stati installati con successo. Per modificare questo " - "comportamento, inserire Dselect::clean \"prompt\"; in " - "/etc/apt/apt.conf." ++"comportamento, inserire Dselect::clean \"prompt\"; in /etc/apt/apt." ++"conf." #. type: #: guide.sgml:264 -#, fuzzy msgid "The Interface" msgstr "L'interfaccia" #. type:

#: guide.sgml:278 -#, fuzzy msgid "" "Both that APT dselect method and apt-get share the " "same interface. It is a simple system that generally tells you what it will " @@@ -8866,62 -6364,66 +8776,62 @@@ "then will print out some informative status messages so that you can " "estimate how far along it is and how much is left to do." msgstr "" -"Entrambi i metodi, dselect APT ed apt-get, " +"Sia il metodo APT per dselect sia apt-get " "condividono la stessa interfaccia; si tratta di un sistema semplice che " "indica in genere cosa sta per fare, e poi lo fa.

Il metodo " - "dselect è in realtà un insieme di script di wrapper per apt-get. Il metodo di fatto fornisce delle funzionalità maggiori del " -"dselect è in realtà un insieme di script di wrapper ad " -"apt-get. Il metodo fornisce delle funzionalità maggiori del " --"solo apt-get.

Dopo la stampa di un riassunto " --"delle operazioni che saranno fatte, APT stampa dei messaggi informativi " - "sullo stato, in modo da poter avere un'idea del punto a cui arrivato e di " - "quanto ci sia ancora da fare." -"sullo stato del sistema, in modo che possiate avere davanti agli occhi a " -"quale punto dell'operazione si trova, e quanto ancora si deve aspettare." ++"dselect è in realtà un insieme di script di wrapper per " ++"apt-get. Il metodo di fatto fornisce delle funzionalità " ++"maggiori del solo apt-get.

Dopo la stampa di un " ++"riassunto delle operazioni che saranno fatte, APT stampa dei messaggi " ++"informativi sullo stato, in modo da poter avere un'idea del punto a cui " ++"arrivato e di quanto ci sia ancora da fare." #. type: #: guide.sgml:280 -#, fuzzy msgid "Startup" msgstr "Avvio" #. type:

#: guide.sgml:284 -#, fuzzy msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " "At any time these operations can be performed by running apt-get check." msgstr "" -"Prima di ciascuna operazione, eccetto l'aggiornamento della lista, APT " -"compie alcune operazioni per prepararsi, oltre a dei controlli dello stato " -"del sistema. In qualsiasi momento le stesse operazioni possono essere fatte " -"con apt-get check" +"Prima di ogni operazione, eccetto update, APT compie alcune operazioni per " +"preparare il suo stato interno; fa inoltre dei controlli sullo stato del " +"sistema. In qualsiasi momento le stesse operazioni possono essere fatte con " +"apt-get check." #. type: #: guide.sgml:289 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" "Building Dependency Tree... Done" msgstr "" "# apt-get check\n" -"Reading Package Lists... Done\n" -"Building Dependancy Tree... Done" +"Lettura elenco pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto" #. type:

#: guide.sgml:297 -#, fuzzy msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " "If some of the package files are not found then they will be ignored and a " "warning will be printed when apt-get exits." msgstr "" -"La prima cosa che fa è leggere tutti i file dei pacchetti in memoria, usando " -"uno schema di caching in modo da rendere la stessa operazione più veloce la " -"seconda volta che la si fa. Se alcuni dei file dei pacchetti non vengono " +"La prima cosa che fa è leggere tutti i file dei pacchetti in memoria; APT " +"usa un sistema di cache in modo da rendere la stessa operazione più veloce " +"la seconda volta che la si fa. Se alcuni dei file dei pacchetti non vengono " "trovati, sono ignorati e viene stampato un avvertimento all'uscita di apt-" "get." #. type:

#: guide.sgml:303 -#, fuzzy msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@@ -8931,12 -6433,12 +8841,12 @@@ msgstr " "L'operazione finale consiste in un'analisi dettagliata delle dipendenze del " "sistema: viene controllato che tutte le dipendenze dei singoli pacchetti " "installati o non scompattati siano soddisfatte. Se vengono individuati dei " -"problemi, viene stampato un resoconto, ed apt-get esce senza " +"problemi, viene stampato un resoconto, e apt-get esce senza " "eseguire alcuna operazione." #. type: #: guide.sgml:320 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" @@@ -8955,23 -6457,24 +8865,23 @@@ " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" msgstr "" "# apt-get check\n" -"Reading Package Lists... Done\n" -"Building Dependancy Tree... Done\n" -"You might want to run apt-get -f install' to correct these.\n" -"Sorry, but the following packages have unmet dependencies:\n" -" 9fonts: Depends: xlib6g but it is not installed\n" -" uucp: Depends: mailx but it is not installed\n" -" blast: Depends: xlib6g (>= 3.3-5) but it is not installed\n" -" adduser: Depends: perl-base but it is not installed\n" -" aumix: Depends: libgpmg1 but it is not installed\n" -" debiandoc-sgml: Depends: sgml-base but it is not installed\n" -" bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed\n" -" cthugha: Depends: svgalibg1 but it is not installed\n" -" Depends: xlib6g (>= 3.3-5) but it is not installed\n" -" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" +"Lettura elenco pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto\n" +"È utile eseguire \"run apt-get -f install\" per correggere ciò.\n" +"I seguenti pacchetti hanno dipendenze non soddisfatte:\n" +" 9fonts: Dipende: xlib6g ma non è installato\n" +" uucp: Dipende: mailx ma non è installato\n" +" blast: Dipende: xlib6g (>= 3.3-5) ma non è installato\n" +" adduser: Dipende: perl-base ma non è installato\n" +" aumix: Dipende: libgpmg1 ma non è installato\n" +" debiandoc-sgml: Dipende: sgml-base ma non è installato\n" +" bash-builtins: Dipende: bash (>= 2.01) ma la versione 2.0-3 è installata\n" +" cthugha: Dipende: svgalibg1 ma non è installato\n" +" Dipende: xlib6g (>= 3.3-5) ma non è installato\n" +" libreadlineg2: Va in conflitto: libreadline2 (<< 2.1-2.1)" #. type:

#: guide.sgml:329 -#, fuzzy msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@@ -8980,13 -6483,14 +8890,13 @@@ "problem is also included." msgstr "" "In questo esempio il sistema ha molti problemi, tra cui uno piuttosto serio " -"con la libreadlineg2. Per ciascun pacchetto che ha dipendenze non " -"soddisfatte, viene stampata una linea che indica il pacchetto che crea il " -"problema e quali problemi ci sono. Viene inclusa inoltre una breve " -"spiegazione del perché il pacchetto ha un problema di dipendenze." +"con libreadlineg2. Per ciascun pacchetto che ha dipendenze non soddisfatte, " +"viene stampata una riga che indica il pacchetto con il problema e quali " +"dipendenze non sono soddisfatte. Viene inclusa inoltre una breve spiegazione " +"del perché il pacchetto ha un problema di dipendenze." #. type:

#: guide.sgml:337 -#, fuzzy msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by dpkg missing some subtle relationships between " @@@ -8996,17 -6500,18 +8906,17 @@@ "situation a package may have been unpacked without its dependents being " "installed." msgstr "" -"Ci sono due modi in cui un sistema possa arrivare in uno stato problematico " -"di questo genere: il primo è causato dal fatto che dpkg possa " -"mancare alcune relazioni sottili tra pacchetti durante un aggiornamento del " -"sistema

APT considera comunque tutte le dipendenze note, e cerca " -"di prevenire problemi ai pacchetti

; il secondo è possibile se " -"l'installazione di un pacchetto fallisce, ed in questo caso è possibile che " -"un pacchetto venga scompattato senza che tutti quelli da cui dipende siano " -"stati installati." +"Ci sono due modi in cui un sistema può arrivare in uno stato problematico di " - "questo genere: il primo avviene se dpkg non ha ravvisato " - "alcune relazioni delicate tra i pacchetti durante un aggiornamento. " ++"questo genere: il primo avviene se dpkg non ha ravvisato alcune " ++"relazioni delicate tra i pacchetti durante un aggiornamento. " +"

APT invece considera tutte le dipendenze note e cerca di " +"evitare la presenza di pacchetti difettosi.

Il secondo è " +"possibile se l'installazione di un pacchetto fallisce; in questo caso è " +"possibile che un pacchetto venga scompattato senza che tutti quelli da cui " +"dipende siano stati installati." #. type:

#: guide.sgml:345 -#, fuzzy msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@@ -9015,15 -6520,16 +8925,15 @@@ "dselect method always supplies the -f option to allow " "for easy continuation of failed maintainer scripts." msgstr "" -"La seconda possibilità è meno seria della prima, dato che APT gestisce " -"l'ordine di installazione dei pacchetti; in entrambi i casi l'opzione -" -"f di apt-get gli farà trovare una soluzione e lo farà " -"continuare. Il metodo APT di dselect comprende sempre l'opzione " -"-f per permettere di configurare facilmente anche i pacchetti con " -"script errati." +"La seconda situazione è molto meno seria della prima, dato che APT pone " +"alcune restrizioni sull'ordine di installazione dei pacchetti. In entrambi i " - "casi l'opzione -f di apt-get farà sì che APT trovi " - "una soluzione possibile e possa continuare. Il metodo APT di " - "dselect comprende sempre l'opzione -f per permettere " - "di continuare facilmente anche in caso di script dei manutentori errati." ++"casi l'opzione -f di apt-get farà sì che APT trovi una " ++"soluzione possibile e possa continuare. Il metodo APT di dselect comprende sempre l'opzione -f per permettere di continuare " ++"facilmente anche in caso di script dei manutentori errati." #. type:

#: guide.sgml:351 -#, fuzzy msgid "" "However, if the -f option is used to correct a seriously broken " "system caused by the first case then it is possible that it will either fail " @@@ -9031,20 -6537,21 +8941,20 @@@ "necessary to manually use dpkg (possibly with forcing options) to correct " "the situation enough to allow APT to proceed." msgstr "" -"Se viene usata però l'opzione -f per correggere un sistema in uno " -"stato molto problematico, è possibile che anche con l'opzione il programma " -"fallisca, subito o durante la sequenza di installazione. In entrambi i casi " -"è necessario usare dpkg a mano (probabilmente usando delle opzioni di " -"forzatura) per correggere quanto basta per poter fare continuare APT." +"Tuttavia, se l'opzione -f viene usata per correggere un sistema in " +"uno stato molto problematico causato da una situazione del primo tipo, è " +"possibile che l'operazione fallisca subito o che fallisca durante la " +"sequenza di installazione. In entrambi i casi è necessario usare dpkg a mano " +"(probabilmente usando delle opzioni di forzatura) per correggere quanto " +"basta per poter fare continuare APT." #. type: #: guide.sgml:356 -#, fuzzy msgid "The Status Report" msgstr "Il resoconto sullo stato" #. type:

#: guide.sgml:363 -#, fuzzy msgid "" "Before proceeding apt-get will present a report on what will " "happen. Generally the report reflects the type of operation being performed " @@@ -9054,19 -6561,20 +8964,18 @@@ msgstr "" "Prima di procedere, apt-get presenterà un resoconto delle " "operazioni che sta per fare. In genere tale resoconto varierà con il tipo di " - "operazione da fare, ma ci sono svariati elementi comuni: in tutti i casi " - "gli elenchi riflettono lo stato finale delle cose, e tengono conto " -"operazioni da fare, ma ci sono alcuni elementi comuni: in tutti i casi gli " -"elenchi dipendono dallo stato finale delle cose, e tengono conto " --"dell'opzione -f e di altre attività rilevanti per il comando da " --"eseguire." ++"operazione da fare, ma ci sono svariati elementi comuni: in tutti i casi gli " ++"elenchi riflettono lo stato finale delle cose, e tengono conto dell'opzione " ++"-f e di altre attività rilevanti per il comando da eseguire." #. type: #: guide.sgml:364 -#, fuzzy msgid "The Extra Package list" -msgstr "L'elenco dei pacchetti Extra" +msgstr "L'elenco dei pacchetti extra" #. type: #: guide.sgml:372 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following extra packages will be installed:\n" " libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl\n" @@@ -9075,7 -6583,7 +8984,7 @@@ " squake pgp-i python-base debmake ldso perl libreadlineg2\n" " ssh" msgstr "" -"The following extra packages will be installed:\n" +"I seguenti pacchetti saranno inoltre installati:\n" " libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl\n" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" @@@ -9084,25 -6592,28 +8993,25 @@@ #. type:

#: guide.sgml:379 -#, fuzzy msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " "generated for an install command. The listed packages are often the " "result of an Auto Install." msgstr "" -"L'elenco dei pacchetti Extra mostra tutti i pacchetti che verranno " -"installati o aggiornati oltre a quelli indicati sulla linea di comando. " -"Viene generato solo per il comando install. I pacchetti elencati " -"sono spesso il risultato di un'operazione di auto installazione (Auto " -"Install)." +"L'elenco dei pacchetti extra mostra tutti i pacchetti che verranno " +"installati o aggiornati oltre a quelli indicati sulla riga di comando. Viene " +"generato solo per il comando install. I pacchetti elencati sono " +"spesso il risultato di un'operazione di installazione automatica." #. type: #: guide.sgml:382 -#, fuzzy msgid "The Packages to Remove" msgstr "I pacchetti da rimuovere" #. type: #: guide.sgml:389 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following packages will be REMOVED:\n" " xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix\n" @@@ -9110,7 -6621,7 +9019,7 @@@ " xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" " nas xpilot xfig" msgstr "" -"The following packages will be REMOVED:\n" +"I seguenti pacchetti saranno RIMOSSI:\n" " xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix\n" " xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel\n" " xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" @@@ -9118,6 -6629,7 +9027,6 @@@ #. type:

#: guide.sgml:399 -#, fuzzy msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@@ -9127,60 -6639,64 +9036,60 @@@ "that are going to be removed because they are only partially installed, " "possibly due to an aborted installation." msgstr "" -"L'elenco dei pacchetti da rimuovere (Remove) indica tutti i pacchetti che " -"verranno rimossi dal sistema. Può essere mostrato per una qualsiasi delle " -"operazioni, e deve sempre essere esaminato attentamente per assicurarsi che " -"non venga eliminato qualcosa di importante. Con l'opzione -f è " -"particolarmente probabile che vengano eliminati dei pacchetti, ed in questo " -"caso va fatta estrema attenzione. La lista può contenere dei pacchetti che " -"verranno rimossi perché sono già rimossi parzialmente, forse a causa di " -"un'installazione non terminata correttamente." +"L'elenco dei pacchetti da rimuovere indica tutti i pacchetti che verranno " +"rimossi dal sistema. Può essere mostrato per una qualsiasi delle operazioni, " +"e deve sempre essere esaminato attentamente per assicurarsi che non venga " +"eliminato qualcosa di importante. Con l'opzione -f è " +"particolarmente probabile che vengano eliminati dei pacchetti, perciò in " +"questo caso va fatta particolare attenzione. L'elenco può contenere dei " +"pacchetti che verranno rimossi perché sono solo parzialmente installati, " +"forse a causa di un'installazione non terminata correttamente." #. type: #: guide.sgml:402 -#, fuzzy msgid "The New Packages list" msgstr "L'elenco dei nuovi pacchetti installati" #. type: #: guide.sgml:406 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following NEW packages will installed:\n" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" msgstr "" -"The following NEW packages will installed:\n" +"I seguenti pacchetti NUOVI saranno installati:\n" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" #. type:

#: guide.sgml:411 -#, fuzzy msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " "done." msgstr "" -"L'elenco dei nuovi pacchetti installati (New) è semplicemente un appunto su " +"L'elenco dei nuovi pacchetti installati è semplicemente un promemoria su " "quello che accadrà. I pacchetti nell'elenco non sono al momento installati " "nel sistema, ma lo saranno alla fine delle operazioni di APT." #. type: #: guide.sgml:414 -#, fuzzy msgid "The Kept Back list" -msgstr "L'elenco dei pacchetti trattenuti" +msgstr "L'elenco dei pacchetti bloccati" #. type: #: guide.sgml:419 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following packages have been kept back\n" " compface man-db tetex-base msql libpaper svgalib1\n" " gs snmp arena lynx xpat2 groff xscreensaver" msgstr "" -"The following packages have been kept back\n" +"I seguenti pacchetti sono stati mantenuti alla versione attuale:\n" " compface man-db tetex-base msql libpaper svgalib1\n" " gs snmp arena lynx xpat2 groff xscreensaver" #. type:

#: guide.sgml:428 -#, fuzzy msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@@ -9192,65 -6708,70 +9101,65 @@@ msgstr " "In ogni caso in cui il sistema viene aggiornato nel suo insieme, c'è la " "possibilità che non possano venire installate nuove versioni di alcuni " "pacchetti, dato che potrebbero richiedere l'installazione di pacchetti non " -"presenti nel sistema, o entrare in conflitto con altri già presenti. In " -"questo caso, il pacchetto viene elencato nella lista di quelli trattenuti " -"(Kept Back). Il miglior modo per convincere i pacchetti elencati in questa " -"lista è di installarli con apt-get install o usare dselect per risolvere i problemi." +"presenti nel sistema o entrare in conflitto con altri già presenti. In " +"questo caso, il pacchetto viene elencato nella lista di quelli mantenuti " +"alla versione attuale. Il miglior modo per forzare l'installazione dei " - "pacchetti elencati in questa lista è installarli con apt-get " - "install o usare dselect per risolvere i problemi." ++"pacchetti elencati in questa lista è installarli con apt-get install o usare dselect per risolvere i problemi." #. type: #: guide.sgml:431 -#, fuzzy msgid "Held Packages warning" -msgstr "Messaggi di attenzione sui pacchetti trattenuti" +msgstr "Messaggi di avvertimento sui pacchetti bloccati" #. type: #: guide.sgml:435 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following held packages will be changed:\n" " cvs" msgstr "" -"The following held packages will be changed:\n" +"I seguenti pacchetti bloccati saranno cambiati:\n" " cvs" #. type:

#: guide.sgml:441 -#, fuzzy msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " "This should only happen during dist-upgrade or install." msgstr "" "A volte si può richiedere ad APT di installare un pacchetto che è stato " -"trattenuto; in questi casi viene stampato un messaggio di attenzione, che " -"avverte che il pacchetto verrà modificato. Questo dovrebbe accadere solo " -"durante operazioni di dist-upgrade o di install." +"bloccato; in questi casi viene stampato un messaggio che avverte che il " +"pacchetto verrà modificato. Questo dovrebbe accadere solo durante operazioni " +"di dist-upgrade o di install." #. type: #: guide.sgml:444 -#, fuzzy msgid "Final summary" msgstr "Resoconto finale" #. type:

#: guide.sgml:447 -#, fuzzy msgid "" "Finally, APT will print out a summary of all the changes that will occur." - msgstr "Infine, APT stamperà un riassunto di tutte le modifiche che accadranno." + msgstr "" + "Infine, APT stamperà un riassunto di tutte le modifiche che accadranno." #. type: #: guide.sgml:452 -#, fuzzy, no-wrap +#, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." msgstr "" -"206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" -"12 packages not fully installed or removed.\n" -"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." +"206 aggiornati, 8 installati, 23 da rimuovere e 51 non aggiornati.\n" +"12 non completamente installati o rimossi..\n" - "È necessario scaricare 65.7M/66.7M di archivi. Dopo quest'operazione, " - "verranno occupati 26.5M di spazio su disco." ++"È necessario scaricare 65.7M/66.7M di archivi. Dopo quest'operazione, verranno occupati 26.5M di spazio su disco." #. type:

#: guide.sgml:470 -#, fuzzy msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@@ -9266,22 -6787,23 +9175,22 @@@ "If a large number of packages are being removed then the value may indicate " "the amount of space that will be freed." msgstr "" -"La prima linea del riassunto è semplicemente una versione ridotta di tutte " -"le liste, ed include il numero di aggiornamenti -- cioè dei pacchetti già " -"installati per cui sono disponibili nuove versioni. La seconda linea indica " +"La prima riga del riassunto è semplicemente una versione ridotta di tutti " +"gli elenchi ed include il numero di aggiornamenti, cioè dei pacchetti già " +"installati per cui è disponibile una nuova versione. La seconda riga indica " "il numero di pacchetti con problemi di configurazione, probabilmente in " -"conseguenza di un'installazione non andata a buon fine. La linea finale " -"indica i requisiti di spazio dell'installazione: i primi due numeri indicano " -"rispettivamente il numero di byte che devono essere trasferiti da posizioni " -"remote, ed il secondo la dimensione totale di tutti gli archivi necessari " -"per l'installazione. Il numero successivo indica la differenza in dimensione " -"tra i pacchetti già installati e quelli che lo saranno, ed è " -"approssimativamente equivalente allo spazio richiesto in /usr dopo " -"l'installazione. Se si stanno rimuovendo dei pacchetti, il valore può " -"indicare lo spazio che verrà liberato." +"conseguenza di un'installazione non andata a buon fine. La riga finale " +"indica i requisiti di spazio dell'installazione; i primi due numeri " +"riguardano la dimensione dei file archivio: indicano rispettivamente il " +"numero di byte che devono essere trasferiti da posizioni remote e la " +"dimensione totale di tutti gli archivi necessari. Il numero successivo " +"indica la differenza in dimensione tra i pacchetti già installati e quelli " +"che lo saranno, ed è approssimativamente equivalente allo spazio richiesto " +"in /usr dopo l'installazione. Se si stanno rimuovendo molti pacchetti, " +"allora il valore può indicare lo spazio che verrà liberato." #. type:

#: guide.sgml:473 -#, fuzzy msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@@ -9291,21 -6813,23 +9200,21 @@@ msgstr " #. type: #: guide.sgml:477 -#, fuzzy msgid "The Status Display" msgstr "La visualizzazione dello stato" #. type:

#: guide.sgml:481 -#, fuzzy msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" -"Durante il download degli archivi e dei file dei pacchetti, APT stampa una " -"serie di messaggi di stato." +"Durante lo scaricamento degli archivi e dei file dei pacchetti APT stampa " +"una serie di messaggi di stato." #. type: #: guide.sgml:490 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get update\n" "Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@@ -9316,17 -6840,16 +9225,15 @@@ "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" msgstr "" "# apt-get update\n" - "Scaricamento di:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ " - "Packages\n" -"Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" -"Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" -"Hit http://llug.sep.bnl.gov/debian/ testing/main Packages\n" -"Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" -"Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" ++"Scaricamento di:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" +"Scaricamento di:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Trovato http://llug.sep.bnl.gov/debian/ testing/main Packages\n" - "Scaricamento di:4 http://ftp.de.debian.org/debian-non-US/ " - "unstable/binary-i386/ Packages\n" ++"Scaricamento di:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" +"Scaricamento di:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" #. type:

#: guide.sgml:500 -#, fuzzy msgid "" "The lines starting with Get are printed out when APT begins to " "fetch a file while the last line indicates the progress of the download. The " @@@ -9335,15 -6858,15 +9242,15 @@@ "apt-get update estimates the percent done which causes some " "inaccuracies." msgstr "" -"Le linee che cominciano con Get vengono stampate quando APT inizia " -"a scaricare un file, e l'ultima linea indica il progresso dell'operazione. " -"Il primo valore in percentuale indica la percentuale totale di tutti i file; " -"dato che la dimensione dei file Package non è nota, purtroppo a volte " -"apt-get update fa una stima poco accurata." +"Le righe che cominciano con Scaricamento di vengono stampate quando " +"APT inizia a scaricare un file, mentre l'ultima riga indica il progresso " +"dell'operazione. Il primo valore in percentuale nella riga di progresso " +"indica la percentuale totale scaricata di tutti i file; dato che la " +"dimensione dei file Package non è nota, purtroppo a volte apt-get " +"update fa una stima poco accurata." #. type:

#: guide.sgml:509 -#, fuzzy msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@@ -9353,17 -6876,17 +9260,17 @@@ "The next word is the short form name of the object being downloaded. For " "archives it will contain the name of the package that is being fetched." msgstr "" -"La sezione successiva della linea di stato viene ripetuta una volta per " -"ciascuna fase del download, ed indica l'operazione in corso, insieme ad " -"alcune informazioni utili su cosa stia accadendo. A volte questa sezione " +"La sezione successiva della riga di stato viene ripetuta una volta per " +"ciascuna istanza di scaricamento, ed indica l'operazione in corso, insieme " +"ad alcune informazioni utili su cosa stia accadendo. A volte questa sezione " "contiene solamente Forking, che significa che il sistema operativo " -"sta caricando il modulo. La prima parola dopo la parentesi quadra aperta è " -"il nome breve dell'oggetto che si sta scaricando, che per gli archivi è il " -"nome del pacchetto." +"sta caricando il modulo per lo scaricamento. La prima parola dopo la " +"parentesi quadra aperta è il numero dello scaricamento come mostrato nelle " +"righe della cronologia. La parola successiva è il nome breve dell'oggetto " +"che si sta scaricando, che per gli archivi è il nome del pacchetto." #. type:

#: guide.sgml:524 -#, fuzzy msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@@ -9379,24 -6902,25 +9286,24 @@@ "regularly and reflects the time to complete everything at the shown transfer " "rate." msgstr "" -"All'interno delle virgolette c'è una stringa informativa, che indica il " -"progresso della fase di negoziazione del download. Tipicamente comincia con " -"Connecting, procede con Waiting for file e poi con " -"Downloading o Resuming. Il valore finale è il numero di " -"byte che sono stati scaricati dal sito remoto: una volta cominciato il " -"download viene rappresentato come 102/10.2k, che indica che sono " -"stati scaricati 102 byte di 10.2 kilobyte. La dimensione totale viene sempre " -"espressa in notazione a quattro cifre, per risparmiare spazio. Dopo la " -"dimensione viene indicato un indicatore progressivo della percentuale del " -"file. Il penultimo elemento è la velocità istantanea media, che viene " -"aggiornata ogni 5 secondi, e riflette la velocità di trasferimento dei dati " -"in quel periodo. Infine, viene visualizzato il tempo stimato per il " -"trasferimento, che viene aggiornato periodicamente e riflette il tempo " -"necessario per completare tutte le operazioni alla velocità di trasferimento " -"mostrata." +"All'interno delle virgolette singole c'è una stringa informativa, che indica " +"il progresso della fase di negoziazione dello scaricamento. Tipicamente " +"comincia con Connecting, procede con Waiting for file e " +"poi con Downloading o Resuming; il valore finale è il " +"numero di byte che sono stati scaricati dal sito remoto. Una volta " +"cominciato lo scaricamento, viene rappresentato come 102/10.2k, che " +"indica che sono stati scaricati 102 byte su 10,2 kilobyte attesi. La " +"dimensione totale viene sempre espressa in notazione a quattro cifre, per " +"risparmiare spazio. Dopo la dimensione viene indicato un indicatore " +"progressivo della percentuale del file. Il penultimo elemento è la velocità " +"istantanea media, che viene aggiornata ogni 5 secondi e riflette la velocità " +"di trasferimento dei dati in quel periodo. Infine, viene visualizzato il " +"tempo stimato per il trasferimento, che viene aggiornato periodicamente e " +"riflette il tempo necessario per completare tutte le operazioni alla " +"velocità di trasferimento mostrata." #. type:

#: guide.sgml:530 -#, fuzzy msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@@ -9405,19 -6929,21 +9312,19 @@@ "display." msgstr "" "La visualizzazione dello stato viene aggiornata ogni mezzo secondo per " -"fornire un feedback costante del processo di download, e le linee Get " -"scorrono indietro quando viene cominciato il download di un nuovo file. Dato " +"fornire un feedback costante sul processo di scaricamento, e le righe Get " +"scorrono in alto quando viene avviato lo scaricamento di un nuovo file. Dato " "che la visualizzazione dello stato viene costantemente aggiornata, non è " "adatta per essere registrata in un file; per non visualizzarla si può usare " "l'opzione -q." #. type: #: guide.sgml:535 -#, fuzzy msgid "Dpkg" msgstr "Dpkg" #. type:

#: guide.sgml:542 -#, fuzzy msgid "" "APT uses dpkg for installing the archives and will switch over " "to the dpkg interface once downloading is completed. " @@@ -9427,22 -6953,23 +9334,22 @@@ "questions are too varied to discuss completely here." msgstr "" "APT usa dpkg per installare gli archivi e passerà " -"all'interfaccia dpkg una volta finito il download. dpkg porrà anche alcune domande durante la manipolazione dei pacchetti, ed " -"i pacchetti stessi potranno farne altre. Prima di ciascuna domanda viene " -"proposta una descrizione di quello che sta per chiedere, e le domande sono " -"troppo diverse per poter essere discusse in maniera completa in questa " -"occasione." +"all'interfaccia di dpkg una volta completati gli scaricamenti. " +"dpkg porrà anche alcune domande durante l'elaborazione dei " +"pacchetti, ed i pacchetti stessi potranno farne altre. Prima di ciascuna " +"domanda viene proposta di solito una descrizione di ciò che viene chiesto, e " - "le domande sono troppo diverse per poter essere discusse in maniera " - "completa in questa occasione." ++"le domande sono troppo diverse per poter essere discusse in maniera completa " ++"in questa occasione." #. type: #: offline.sgml:4 msgid "Using APT Offline" -msgstr "" +msgstr "Usare APT offline" #. type: #: offline.sgml:7 -#, fuzzy msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: guide.it.sgml,v 1.5 2003/04/26 23:26:13 doogie Exp $" +msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" #. type: #: offline.sgml:12 @@@ -9450,24 -6977,22 +9357,24 @@@ msgid " "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" +"Questo documento descrive come usare APT in un ambiente non connesso in " +"rete, specificatamente un approccio «sfrutta-altra-rete» per fare gli " +"aggiornamenti." #. type: #: offline.sgml:16 -#, fuzzy msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1998." +msgstr "Copyright © Jason Gunthorpe, 1999." #. type: #: offline.sgml:32 msgid "Introduction" -msgstr "" +msgstr "Introduzione" #. type: #: offline.sgml:34 offline.sgml:65 offline.sgml:180 msgid "Overview" -msgstr "" +msgstr "Panoramica" #. type:

#: offline.sgml:40 @@@ -9477,10 -7002,6 +9384,10 @@@ msgid " "machine is on a slow link, such as a modem and another machine has a very " "fast connection but they are physically distant." msgstr "" +"Normalmente APT richiede l'accesso diretto ad un archivio Debian, attraverso " +"un supporto locale o la rete. Un problema comune è che una macchina Debian " +"ha un collegamento lento, come un modem, e un'altra macchina ha una " +"connessione veloce, ma le due sono fisicamente distanti." #. type:

#: offline.sgml:51 @@@ -9495,17 -7016,6 +9402,17 @@@ msgid " "the machine downloading the packages, and target host the one with " "bad or no connection." msgstr "" +"La soluzione è usare supporti rimovibili grandi come un disco Zip o uno " +"SuperDisk. Questi dischi non sono grandi abbastanza per memorizzare l'intero " +"archivio Debian, ma possono facilmente contenere un sottoinsieme " +"sufficientemente grande per la maggior parte degli utenti. L'idea è di usare " +"APT per generare un elenco di pacchetti che sono necessari e poi scaricarli " +"nel disco usando un'altra macchina con una buona connettività. È possibile " +"anche usare un'altra macchina Debian con APT o usare un sistema operativo " +"completamente diverso e uno strumento per scaricare file come wget. In " +"questo documento con host remoto viene indicata la macchina che " +"scarica i pacchetti, e host di destinazione è quella senza " +"connessione o con una connessione non buona." #. type:

#: offline.sgml:57 @@@ -9515,16 -7025,11 +9422,16 @@@ msgid " "that the disc should be formated with a filesystem that can handle long file " "names such as ext2, fat32 or vfat." msgstr "" +"Per mettere in pratica la soluzione si deve modificare in modo particolare " +"il file di configurazione di APT. Come premessa essenziale, si deve dire ad " +"APT di cercare in un disco i suoi file archivio. Notare che il disco deve " +"essere formattato con un file system che può gestire i nomi di file lunghi, " +"come ext2, fat32 o vfat." #. type: #: offline.sgml:63 msgid "Using APT on both machines" -msgstr "" +msgstr "Usare APT su entrambe le macchine" #. type:

#: offline.sgml:71 @@@ -9534,11 -7039,6 +9441,11 @@@ msgid " "remote machine to fetch the latest package files and decide which packages " "to download. The disk directory structure should look like:" msgstr "" +"La configurazione più semplice si ha se APT è disponibile su entrambe le " +"macchine. L'idea di base è di mettere una copia del file di stato sul disco " +"e usare la macchina remota per scaricare i file dei pacchetti più recenti e " +"per decidere quali pacchetti scaricare. La struttura delle directory sul " +"disco deve essere simile a:" #. type: #: offline.sgml:80 @@@ -9553,19 -7053,11 +9460,19 @@@ msgid " " sources.list\n" " apt.conf" msgstr "" +" /disc/\n" +" archives/\n" +" partial/\n" +" lists/\n" +" partial/\n" +" status\n" +" sources.list\n" +" apt.conf" #. type: #: offline.sgml:88 msgid "The configuration file" -msgstr "" +msgstr "Il file di configurazione" #. type:

#: offline.sgml:96 @@@ -9577,13 -7069,6 +9484,13 @@@ msgid " "target host. Please note, if you are using a local archive you must " "use copy URIs, the syntax is identical to file URIs." msgstr "" +"Il file di configurazione deve indicare ad APT di memorizzare i suoi file " +"sul disco e di usare i file di configurazione anch'essi sul disco. Il file " +"sources.list deve contenere i siti appropriati che si desiderano usare dalla " - "macchina remota e il file di stato dovrebbe essere una copia di " - "/var/lib/dpkg/status della macchina di destinazione. " - "Notare che, se si sta usando un archivio locale, si devono usare URI «copy» " - "la cui sintassi è identica a quella degli URI «file»." ++"macchina remota e il file di stato dovrebbe essere una copia di /var/lib/" ++"dpkg/status della macchina di destinazione. Notare che, se si " ++"sta usando un archivio locale, si devono usare URI «copy» la cui sintassi è " ++"identica a quella degli URI «file»." #. type:

#: offline.sgml:100 @@@ -9591,8 -7076,6 +9498,8 @@@ msgid " "apt.conf must contain the necessary information to make APT use the " "disc:" msgstr "" +"apt.conf deve contenere le informazioni necessarie per far sì che " +"APT usi il disco:" #. type: #: offline.sgml:124 @@@ -9622,32 -7105,6 +9529,29 @@@ msgid " " Etc \"/disc/\";\n" " };" msgstr "" +" APT\n" +" {\n" - " /* Questo non è necessario se le due macchine hanno la stessa " - "architettura,\n" - " dice ad APT remoto qual è l'architettura della macchina di " - "destinazione */\n" ++" /* Questo non è necessario se le due macchine hanno la stessa architettura,\n" ++" dice ad APT remoto qual è l'architettura della macchina di destinazione */\n" +" Architecture \"i386\";\n" +" \n" +" Get::Download-Only \"true\";\n" +" };\n" +" \n" +" Dir\n" +" {\n" - " /* Usa il disco per le informazioni sullo stato e ridirige il file di " - "stato\n" ++" /* Usa il disco per le informazioni sullo stato e ridirige il file di stato\n" +" dalla posizione predefinita /var/lib/dpkg */\n" +" State \"/disc/\";\n" +" State::status \"status\";\n" +"\n" +" // Le cache binarie saranno memorizzate in locale\n" +" Cache::archives \"/disc/archives/\";\n" +" Cache \"/tmp/\";\n" +" \n" +" // Posizione dell'elenco di fonti.\n" +" Etc \"/disc/\";\n" +" };" #. type:

#: offline.sgml:129 @@@ -9655,9 -7112,6 +9559,9 @@@ msgid " "More details can be seen by examining the apt.conf man page and the sample " "configuration file in /usr/share/doc/apt/examples/apt.conf." msgstr "" +"Si possono vedere informazioni più dettagliate nella pagina di manuale di " - "apt.conf e nel file di configurazione d'esempio in " - "/usr/share/doc/apt/examples/apt.conf." ++"apt.conf e nel file di configurazione d'esempio in /usr/share/doc/apt/" ++"examples/apt.conf." #. type:

#: offline.sgml:136 @@@ -9668,11 -7122,6 +9572,11 @@@ msgid " "em>. Then take the disc to the remote machine and configure the sources." "list. On the remote machine execute the following:" msgstr "" +"Nella macchina di destinazione, la prima cosa da fare è montare il disco e " +"copiarvi /var/lib/dpkg/status. Sarà anche necessario creare le " - "directory elencate nella panoramica: archives/partial/ e " - "lists/partial/. Poi portare il disco nella macchina remota e " - "configurare il file sources.list; in tale macchina eseguire:" ++"directory elencate nella panoramica: archives/partial/ e lists/" ++"partial/. Poi portare il disco nella macchina remota e configurare il " ++"file sources.list; in tale macchina eseguire:" #. type: #: offline.sgml:142 @@@ -9684,12 -7133,6 +9588,11 @@@ msgid " " # apt-get dist-upgrade\n" " [ APT fetches all the packages needed to upgrade the target machine ]" msgstr "" +" # export APT_CONFIG=\"/disc/apt.conf\"\n" +" # apt-get update\n" +" [ APT scarica i file degli elenchi dei pacchetti ]\n" +" # apt-get dist-upgrade\n" - " [ APT scarica tutti i pacchetti necessari per aggiornare la macchina di " - "destinazione ]" ++" [ APT scarica tutti i pacchetti necessari per aggiornare la macchina di destinazione ]" #. type:

#: offline.sgml:149 @@@ -9699,10 -7142,6 +9602,10 @@@ msgid " "such as dselect. However this presents a problem in communicating " "your selections back to the local computer." msgstr "" +"Il comando dist-upgrade può essere sostituito con qualsiasi altro comando " +"APT standard, in particolare dselect-upgrade. Si può persino usare un " +"frontend per APT come dselect; questo tuttavia pone alcuni problemi " +"nel comunicare le selezioni fatte al computer locale." #. type:

#: offline.sgml:153 @@@ -9710,9 -7149,6 +9613,9 @@@ msgid " "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" +"Ora il disco contiene i file indice e gli archivi necessari per aggiornare " +"la macchina di destinazione. Riportare il disco alla macchina locale ed " +"eseguire:" #. type: #: offline.sgml:159 @@@ -9724,11 -7160,6 +9627,11 @@@ msgid " " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" " [ Or any other APT command ]" msgstr "" +" # export APT_CONFIG=\"/disc/apt.conf\"\n" +" # apt-get check\n" +" [ APT genera una copia locale dei file di cache ]\n" +" # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" +" [ O qualsiasi altro comando APT ]" #. type:

#: offline.sgml:165 @@@ -9736,8 -7167,6 +9639,8 @@@ msgid " "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" +"Per il corretto funzionamento è necessario rispecificare il fatto che il " +"file di stato è quello locale. Questo è molto importante!" #. type:

#: offline.sgml:172 @@@ -9748,16 -7177,11 +9651,16 @@@ msgid " "the local machine - but this may not always be possible. DO NOT copy the " "status file if dpkg or APT have been run in the mean time!!" msgstr "" +"Se si sta usando dselect si può fare l'operazione molto rischiosa di copiare " +"disc/status in /var/lib/dpkg/status, in modo che sia aggiornata qualsiasi " +"selezione fatta nella macchina remota. Si raccomanda di fare le selezioni " +"solamente nella macchina locale, ma ciò non è sempre possibile. NON copiare " +"il file di stato se nel frattempo sono stati eseguiti dpkg o APT!" #. type: #: offline.sgml:178 msgid "Using APT and wget" -msgstr "" +msgstr "Usare APT e wget" #. type:

#: offline.sgml:185 @@@ -9766,10 -7190,6 +9669,10 @@@ msgid " "any machine. Unlike the method above this requires that the Debian machine " "already has a list of available packages." msgstr "" +"wget è uno strumento popolare e portabile per scaricare file che " +"può essere eseguito quasi su qualsiasi macchina. A differenza del metodo " +"descritto sopra, questo richiede che la macchina Debian abbia già un elenco " +"dei pacchetti disponibili." #. type:

#: offline.sgml:190 @@@ -9779,15 -7199,11 +9682,15 @@@ msgid " "option to apt-get and then preparing a wget script to actually fetch the " "packages." msgstr "" +"L'idea di base è di creare un disco che ha solo i file degli archivi dei " - "pacchetti, scaricati dal sito remoto. Ciò viene fatto usando l'opzione " - "--print-uris di apt-get e poi preparando uno script che usa wget per " - "scaricare effettivamente i pacchetti." ++"pacchetti, scaricati dal sito remoto. Ciò viene fatto usando l'opzione --" ++"print-uris di apt-get e poi preparando uno script che usa wget per scaricare " ++"effettivamente i pacchetti." #. type: #: offline.sgml:196 msgid "Operation" -msgstr "" +msgstr "Funzionamento" #. type:

#: offline.sgml:200 @@@ -9795,9 -7211,6 +9698,9 @@@ msgid " "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" +"A differenza della tecnica precedente, non sono richiesti file di " +"configurazione speciali; vengono semplicemente usati i comandi APT standard " +"per generare l'elenco dei file." #. type: #: offline.sgml:205 @@@ -9808,10 -7221,6 +9711,10 @@@ msgid " " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" msgstr "" +" # apt-get dist-upgrade \n" +" [ Inserire no alla domanda, assicurarsi di approvare le azioni proposte ]\n" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" #. type:

#: offline.sgml:210 @@@ -9819,8 -7228,6 +9722,8 @@@ msgid " "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" +"Si può usare qualsiasi comando che non sia dist-upgrade, incluso dselect-" +"upgrade." #. type:

#: offline.sgml:216 @@@ -9830,15 -7237,11 +9733,15 @@@ msgid " "with the current directory as the disc's mount point so as to save the " "output on the disc." msgstr "" +"Il file /disc/wget-script contiene ora un elenco dei comandi wget da " +"eseguire per poter scaricare gli archivi necessari. Questo script dovrebbe " +"essere eseguito con il punto di mount del disco come directory attuale di " +"lavoro, in modo che l'output venga salvato sul disco." #. type:

#: offline.sgml:219 msgid "The remote machine would do something like" -msgstr "" +msgstr "Nella macchina remota fare qualcosa come:" #. type: #: offline.sgml:223 @@@ -9848,9 -7251,6 +9751,9 @@@ msgid " " # sh -x ./wget-script\n" " [ wait.. ]" msgstr "" +" # cd /disc\n" +" # sh -x ./wget-script\n" +" [ attendere... ]" #. type: #: offline.sgml:228 @@@ -9858,1059 -7258,14 +9761,1451 @@@ msgid " "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" +"Una volta che gli archivi sono stati scaricati e il disco è stato riportato " +"alla macchina Debian, si può procedere con l'installazione usando" #. type: #: offline.sgml:230 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr "" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" #. type:

#: offline.sgml:234 msgid "Which will use the already fetched archives on the disc." -msgstr "" +msgstr "che userà gli archivi già scaricati e presenti sul disco." + - #, no-wrap +#~ msgid "Debian GNU/Linux" +#~ msgstr "Debian GNU/Linux" + - #, no-wrap +#~ msgid "OPTIONS" +#~ msgstr "OPZIONI" + +#~ msgid "None." +#~ msgstr "Nessuna." + - #, no-wrap +#~ msgid "FILES" +#~ msgstr "FILE" + +#~ msgid "" +#~ msgstr "" + - #~ msgid " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " - #~ msgstr " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " ++#~ msgid "" ++#~ " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " ++#~ msgstr "" ++#~ " " ++#~ " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ " apt.conf\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ " apt.conf\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-get\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-get\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-config\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-config\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-cdrom\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-cdrom\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-cache\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-cache\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt_preferences\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt_preferences\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-key\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-key\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-secure\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-secure\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-ftparchive\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-ftparchive\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " sources.list\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " sources.list\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " reportbug\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " reportbug\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-buildpackage\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-buildpackage\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " gzip\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gzip\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-scanpackages\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-scanpackages\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-scansources\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-scansources\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " dselect\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dselect\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " aptitude\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " aptitude\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " synaptic\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " synaptic\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " debsign\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " debsign\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " debsig-verify\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " debsig-verify\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " gpg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gpg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " gnome-apt\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gnome-apt\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " wajig\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " wajig\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ "
apt@packages.debian.org
\n" +#~ " \n" +#~ " Jason Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ " 1998-2001 Jason Gunthorpe\n" +#~ " 28 October 2008\n" +#~ " Linux\n" +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ "
apt@packages.debian.org
\n" +#~ " \n" +#~ " Jason Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ " 1998-2001 Jason Gunthorpe\n" +#~ " 28 ottobre 2008\n" +#~ " Linux\n" + - #, no-wrap +#~ msgid "" +#~ " \n" +#~ "\"> \n" +#~ msgstr "" +#~ " \n" +#~ "\"> \n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt@packages.debian.org\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " apt@packages.debian.org\n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " Jason\n" +#~ " Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Jason\n" +#~ " Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " Mike\n" +#~ " O'Connor\n" +#~ " \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Mike\n" +#~ " O'Connor\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "Linux\n" +#~ "\">\n" +#~ msgstr "" +#~ "Linux\n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ " Jason Gunthorpe\n" +#~ " 1998-2001\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Jason Gunthorpe\n" +#~ " 1998-2001\n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ "Bugs\n" +#~ " APT bug page. \n" +#~ " If you wish to report a bug in APT, please see\n" +#~ " /usr/share/doc/debian/bug-reporting.txt or the\n" +#~ " &reportbug; command.\n" +#~ " \n" +#~ "
\n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ "Bachi\n" +#~ " Pagina dei bachi di APT. \n" +#~ " Per segnalare un baco in APT, vedere\n" +#~ " /usr/share/doc/debian/bug-reporting.txt o il\n" +#~ " comando &reportbug;.\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " Configuration File; Specify a configuration file to use. \n" +#~ " The program will read the default configuration file and then this \n" +#~ " configuration file. See &apt-conf; for syntax information. \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ msgstr "" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " File di configurazione; Specifica un file di configurazione da usare. \n" +#~ " Il programma leggerà il file di configurazione predefinito e poi questo \n" +#~ " file di configurazione. Vedere &apt-conf; per informazioni sulla sintassi. \n" +#~ " \n" +#~ " \n" +#~ " \n" + - #, no-wrap +#~ msgid "" +#~ " &cachedir;/archives/partial/\n" +#~ " Storage area for package files in transit.\n" +#~ " Configuration Item: Dir::Cache::Archives (implicit partial). \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ " &cachedir;/archives/partial/\n" +#~ " Area di memorizzazione per i file dei pacchetti in transito.\n" +#~ " Voce di configurazione: Dir::Cache::Archives (partial implicito). \n" +#~ " \n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ " &statedir;/lists/partial/\n" +#~ " Storage area for state information in transit.\n" +#~ " Configuration Item: Dir::State::Lists (implicit partial).\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ " &statedir;/lists/partial/\n" +#~ " Area di archiviazione per le informazioni di stato in transito.\n" +#~ " Voce di configurazione: Dir::State::Lists (partial implicito).\n" +#~ " \n" +#~ "\">\n" + +#~ msgid "" +#~ msgstr "" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ "john@doe.org in 2009,\n" +#~ " 2010 and Daniela Acme daniela@acme.us in 2010 together with the\n" +#~ " Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ "eugenia@linuxcare.com nel 2000 e da Gabriele Stilli\n" +#~ " superenzima@libero.it nel 2010 insieme a\n" +#~ " chiunque vorrà unirsi (DA CORREGGERE ALLA FINE).\n" +#~ "\">\n" + - #, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ msgstr "" +#~ "\n" +#~ "\n" + - #~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 February 2004" - #~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 February 2004" ++#~ msgid "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "29 February 2004" ++#~ msgstr "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "29 February 2004" + +#~ msgid "apt-cache" +#~ msgstr "apt-cache" + +#~ msgid "APT package handling utility -- cache manipulator" +#~ msgstr "APT strumento di gestione pacchetti -- manipolatore di cache" + - #~ msgid "apt-cache add file gencaches showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg rdepends pkg pkgnames prefix dotty pkg xvcg pkg policy pkgs madison pkgs " - #~ msgstr "apt-cache add file gencaches showpkg pacchetto showsrc pacchetto stats dump dumpavail unmet search regex show pacchetto depends pacchetto rdepends pacchetto pkgnames prefisso dotty pacchetto xvcg pacchetto policy pacchetti madison pacchetti " ++#~ msgid "" ++#~ "apt-cache " ++#~ " " ++#~ " add file gencaches " ++#~ "showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg " ++#~ "depends pkg rdepends pkg pkgnames prefix dotty pkg xvcg pkg policy pkgs madison pkgs " ++#~ msgstr "" ++#~ "apt-cache " ++#~ " add file gencaches " ++#~ "showpkg pacchetto showsrc pacchetto stats " ++#~ "dump dumpavail unmet search regex show " ++#~ "pacchetto depends pacchetto rdepends pacchetto pkgnames prefisso dotty pacchetto xvcg pacchetto " ++#~ "policy pacchetti madison pacchetti " + +#~ msgid "add file(s)" +#~ msgstr "add file" + - #~ msgid "add adds the named package index files to the package cache. This is for debugging only." - #~ msgstr "add aggiunge i file di indice dei pacchetti menzionati alla cache dei pacchetti. Questo serve solo per fare il debug." ++#~ msgid "" ++#~ "add adds the named package index files to the package " ++#~ "cache. This is for debugging only." ++#~ msgstr "" ++#~ "add aggiunge i file di indice dei pacchetti menzionati " ++#~ "alla cache dei pacchetti. Questo serve solo per fare il debug." + +#~ msgid "gencaches" +#~ msgstr "gencaches" + - #~ msgid "gencaches performs the same operation as apt-get check. It builds the source and package caches from the sources in &sources-list; and from /var/lib/dpkg/status." - #~ msgstr "gencaches esegue la stessa operazione di apt-get check. Costruisce le cache sorgenti e pacchetti dalle fonti in &sources-list; e da /var/lib/dpkg/status." ++#~ msgid "" ++#~ "gencaches performs the same operation as apt-" ++#~ "get check. It builds the source and package caches from the " ++#~ "sources in &sources-list; and from /var/lib/dpkg/status." ++#~ msgstr "" ++#~ "gencaches esegue la stessa operazione di apt-" ++#~ "get check. Costruisce le cache sorgenti e pacchetti dalle fonti " ++#~ "in &sources-list; e da /var/lib/dpkg/status." + +#~ msgid "showpkg pkg(s)" +#~ msgstr "showpkg pacchetti" + +#~ msgid "stats" +#~ msgstr "stats" + - #~ msgid "Pure virtual packages is the number of packages that exist only as a virtual package name; that is, packages only \"provide\" the virtual package name, and no package actually uses the name. For instance, \"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual package; several packages provide \"mail-transport-agent\", but there is no package named \"mail-transport-agent\"." - #~ msgstr "Pacchetti virtuali puri è il numero di pacchetti che esistono solo come nome di pacchetto virtuale; vale a dire, i pacchetti \"forniscono\" solo il nome del pacchetto virtuale e nessun pacchetto in realtà usa quel nome. Per esempio, \"mail-transport-agent\" nel sistema Debian GNU/Linux è un pacchetto virtuale puro; diversi pacchetti forniscono \"mail-transport-agent\", ma non c'è alcun pacchetto chiamato \"mail-transport-agent\"." ++#~ msgid "" ++#~ "Pure virtual packages is the number of packages that " ++#~ "exist only as a virtual package name; that is, packages only \"provide\" " ++#~ "the virtual package name, and no package actually uses the name. For " ++#~ "instance, \"mail-transport-agent\" in the Debian GNU/Linux system is a " ++#~ "pure virtual package; several packages provide \"mail-transport-agent\", " ++#~ "but there is no package named \"mail-transport-agent\"." ++#~ msgstr "" ++#~ "Pacchetti virtuali puri è il numero di pacchetti che " ++#~ "esistono solo come nome di pacchetto virtuale; vale a dire, i pacchetti " ++#~ "\"forniscono\" solo il nome del pacchetto virtuale e nessun pacchetto in " ++#~ "realtà usa quel nome. Per esempio, \"mail-transport-agent\" nel sistema " ++#~ "Debian GNU/Linux è un pacchetto virtuale puro; diversi pacchetti " ++#~ "forniscono \"mail-transport-agent\", ma non c'è alcun pacchetto chiamato " ++#~ "\"mail-transport-agent\"." + - #~ msgid "Single virtual packages is the number of packages with only one package providing a particular virtual package. For example, in the Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only one package, xless, provides \"X11-text-viewer\"." - #~ msgstr "Pacchetti virtuali singoli è il numero di pacchetti per cui solo un pacchetto fornisce un particolare pacchetto virtuale. Per esempio, nel sistema Debian GNU/Linux, \"X11-text-viewer\" è un pacchetto virtuale, ma solo un pacchetto, xless, fornisce \"X11-text-viewer\"." ++#~ msgid "" ++#~ "Single virtual packages is the number of packages with " ++#~ "only one package providing a particular virtual package. For example, in " ++#~ "the Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, " ++#~ "but only one package, xless, provides \"X11-text-viewer\"." ++#~ msgstr "" ++#~ "Pacchetti virtuali singoli è il numero di pacchetti " ++#~ "per cui solo un pacchetto fornisce un particolare pacchetto virtuale. Per " ++#~ "esempio, nel sistema Debian GNU/Linux, \"X11-text-viewer\" è un pacchetto " ++#~ "virtuale, ma solo un pacchetto, xless, fornisce \"X11-text-viewer\"." + - #~ msgid "Mixed virtual packages is the number of packages that either provide a particular virtual package or have the virtual package name as the package name. For instance, in the Debian GNU/Linux system, \"debconf\" is both an actual package, and provided by the debconf-tiny package." - #~ msgstr "Pacchetti virtuali misti è il numero di pacchetti che forniscono un particolare pacchetto virtuale o che hanno il nome del pacchetto virtuale come nome del pacchetto. Per esempio, nel sistema Debian GNU/Linux , \"debconf\" è sia un pacchetto vero e proprio sia fornito dal pacchetto debconf-tiny." ++#~ msgid "" ++#~ "Mixed virtual packages is the number of packages that " ++#~ "either provide a particular virtual package or have the virtual package " ++#~ "name as the package name. For instance, in the Debian GNU/Linux system, " ++#~ "\"debconf\" is both an actual package, and provided by the debconf-tiny " ++#~ "package." ++#~ msgstr "" ++#~ "Pacchetti virtuali misti è il numero di pacchetti che " ++#~ "forniscono un particolare pacchetto virtuale o che hanno il nome del " ++#~ "pacchetto virtuale come nome del pacchetto. Per esempio, nel sistema " ++#~ "Debian GNU/Linux , \"debconf\" è sia un pacchetto vero e proprio sia " ++#~ "fornito dal pacchetto debconf-tiny." + - #~ msgid "Total distinct versions is the number of package versions found in the cache; this value is therefore at least equal to the number of total package names. If more than one distribution (both \"stable\" and \"unstable\", for instance), is being accessed, this value can be considerably larger than the number of total package names." - #~ msgstr "Totale versioni distinte è il numero di versioni di pacchetti trovate nella cache; questo valore pertanto è almeno pari al numero dei nomi totali di pacchetto. Se si ha accesso a più di una distribuzione (ad esempio sia \"stable\" che \"unstable\"), questo valore può essere decisamente più grande del numero dei nomi totali di pacchetti." ++#~ msgid "" ++#~ "Total distinct versions is the number of package " ++#~ "versions found in the cache; this value is therefore at least equal to " ++#~ "the number of total package names. If more than one distribution (both " ++#~ "\"stable\" and \"unstable\", for instance), is being accessed, this value " ++#~ "can be considerably larger than the number of total package names." ++#~ msgstr "" ++#~ "Totale versioni distinte è il numero di versioni di " ++#~ "pacchetti trovate nella cache; questo valore pertanto è almeno pari al " ++#~ "numero dei nomi totali di pacchetto. Se si ha accesso a più di una " ++#~ "distribuzione (ad esempio sia \"stable\" che \"unstable\"), questo valore " ++#~ "può essere decisamente più grande del numero dei nomi totali di pacchetti." + +#~ msgid "showsrc pkg(s)" +#~ msgstr "showsrc pacchetti" + - #~ msgid "showsrc displays all the source package records that match the given package names. All versions are shown, as well as all records that declare the name to be a Binary." - #~ msgstr "showsrc mostra tutti i pacchetti sorgente che combaciano coi nomi dei pacchetti dati. Vengono mostrate tutte le versioni, così come tutti i record che dichiarano che il nome è un pacchetto binario." ++#~ msgid "" ++#~ "showsrc displays all the source package records that " ++#~ "match the given package names. All versions are shown, as well as all " ++#~ "records that declare the name to be a Binary." ++#~ msgstr "" ++#~ "showsrc mostra tutti i pacchetti sorgente che " ++#~ "combaciano coi nomi dei pacchetti dati. Vengono mostrate tutte le " ++#~ "versioni, così come tutti i record che dichiarano che il nome è un " ++#~ "pacchetto binario." + +#~ msgid "dump" +#~ msgstr "dump" + +#~ msgid "dumpavail" +#~ msgstr "dumpavail" + +#~ msgid "unmet" +#~ msgstr "unmet" + +#~ msgid "show pkg(s)" +#~ msgstr "show pacchetti" + +#~ msgid "search regex [ regex ... ]" +#~ msgstr "search regex [ regex ... ]" + - #~ msgid "search performs a full text search on all available package lists for the POSIX regex pattern given, see regex 7. It searches the package names and the descriptions for an occurrence of the regular expression and prints out the package name and the short description, including virtual package names. If is given then output identical to show is produced for each matched package, and if is given then the long description is not searched, only the package name is." - #~ msgstr "search esegue una ricerca completa del testo su tutte le liste di pacchetti disponibili cercando il modellp di regexp POSIX fornito; vedere regex 7. Cerca le occorrenze dell'expressione regolare nei nomi e nelle descrizioni dei pacchetti e stampa il nome e la descrizione breve dei pacchetti, inclusi quelli virtuali. Se viene fornita l'opzione , il risultato è identico a show per ciascun pacchetto che soddisfa la ricerca; se viene fornita l'opzione la ricerca viene fatta solo sul nome del pacchetto e non sulla descrizione lunga." ++#~ msgid "" ++#~ "search performs a full text search on all available " ++#~ "package lists for the POSIX regex pattern given, see " ++#~ "regex " ++#~ "7. It searches the package names " ++#~ "and the descriptions for an occurrence of the regular expression and " ++#~ "prints out the package name and the short description, including virtual " ++#~ "package names. If is given then output identical " ++#~ "to show is produced for each matched package, and if " ++#~ " is given then the long description is not " ++#~ "searched, only the package name is." ++#~ msgstr "" ++#~ "search esegue una ricerca completa del testo su tutte " ++#~ "le liste di pacchetti disponibili cercando il modellp di regexp POSIX " ++#~ "fornito; vedere regex 7. Cerca le " ++#~ "occorrenze dell'expressione regolare nei nomi e nelle descrizioni dei " ++#~ "pacchetti e stampa il nome e la descrizione breve dei pacchetti, inclusi " ++#~ "quelli virtuali. Se viene fornita l'opzione , il " ++#~ "risultato è identico a show per ciascun pacchetto che " ++#~ "soddisfa la ricerca; se viene fornita l'opzione " +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + - #~ msgid "Print only important dependencies; for use with unmet and depends. Causes only Depends and Pre-Depends relations to be printed. Configuration Item: APT::Cache::Important." - #~ msgstr "Stampa solo le dipendenze importanti; da usarsi con unmet e depends. Fa sì che vengano stampate solo le relazioni di Depends e Pre-Depends. Voce di configurazione: APT::Cache::Important." ++#~ msgid "" ++#~ "Print only important dependencies; for use with unmet and depends. Causes " ++#~ "only Depends and Pre-Depends relations to be printed. Configuration " ++#~ "Item: APT::Cache::Important." ++#~ msgstr "" ++#~ "Stampa solo le dipendenze importanti; da usarsi con unmet e depends. Fa " ++#~ "sì che vengano stampate solo le relazioni di Depends e Pre-Depends. Voce " ++#~ "di configurazione: APT::Cache::Important." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + - #~ msgid "Print full records for all available versions. This is the default; to turn it off, use . If is specified, only the candidate version will displayed (the one which would be selected for installation). This option is only applicable to the show command. Configuration Item: APT::Cache::AllVersions." - #~ msgstr "Stampa i record completi per tutte le versioni disponibili. Questa è l'impostazione predefinita; per disattivarla, usare . Se si specifica , verrà visualizzata solo la versione candidata (quella che sarebbe scelta per l'installazione). Questa opzione è applicabile solo al comando show. Voce di configurazione: APT::Cache::AllVersions." ++#~ msgid "" ++#~ "Print full records for all available versions. This is the default; to " ++#~ "turn it off, use . If is specified, only the candidate version will displayed " ++#~ "(the one which would be selected for installation). This option is only " ++#~ "applicable to the show command. Configuration Item: " ++#~ "APT::Cache::AllVersions." ++#~ msgstr "" ++#~ "Stampa i record completi per tutte le versioni disponibili. Questa è " ++#~ "l'impostazione predefinita; per disattivarla, usare . Se si specifica , " ++#~ "verrà visualizzata solo la versione candidata (quella che sarebbe scelta " ++#~ "per l'installazione). Questa opzione è applicabile solo al comando " ++#~ "show. Voce di configurazione: APT::Cache::" ++#~ "AllVersions." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "&apt-commonoptions;" +#~ msgstr "&apt-commonoptions;" + +#~ msgid "&file-sourceslist; &file-statelists;" +#~ msgstr "&file-sourceslist; &file-statelists;" + - #~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 14 February 2004" - #~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 14 febbraio 2004" ++#~ msgid "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "14 February 2004" ++#~ msgstr "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "14 febbraio 2004" + +#~ msgid "apt-cdrom" +#~ msgstr "apt-cdrom" + +#~ msgid "APT CDROM management utility" +#~ msgstr "Strumento di APT per la gestione dei CDROM" + - #~ msgid "apt-cdrom add ident " - #~ msgstr "apt-cdrom add ident " ++#~ msgid "" ++#~ "apt-cdrom " ++#~ " " ++#~ " add ident " ++#~ msgstr "" ++#~ "apt-cdrom " ++#~ " add ident " + - #~ msgid "apt-cdrom is used to add a new CDROM to APTs list of available sources. apt-cdrom takes care of determining the structure of the disc as well as correcting for several possible mis-burns and verifying the index files." - #~ msgstr "apt-cdrom è usato per aggiungere un nuovo CDROM alla lista di sorgenti disponibili di APT. apt-cdrom si prende cura di determinare la struttura del disco e anche di correggere possibili errori di masterizzazione e verificare i file indice." ++#~ msgid "" ++#~ "apt-cdrom is used to add a new CDROM to APTs list of " ++#~ "available sources. apt-cdrom takes care of determining " ++#~ "the structure of the disc as well as correcting for several possible mis-" ++#~ "burns and verifying the index files." ++#~ msgstr "" ++#~ "apt-cdrom è usato per aggiungere un nuovo CDROM alla " ++#~ "lista di sorgenti disponibili di APT. apt-cdrom si " ++#~ "prende cura di determinare la struttura del disco e anche di correggere " ++#~ "possibili errori di masterizzazione e verificare i file indice." + - #~ msgid "It is necessary to use apt-cdrom to add CDs to the APT system, it cannot be done by hand. Furthermore each disk in a multi-cd set must be inserted and scanned separately to account for possible mis-burns." - #~ msgstr "Per aggiungere CD al sistema APT è necessario usare apt-cdrom, in quanto ciò non può essere fatto manualmente. Inoltre ogni disco in un insieme di più CD deve essere inserito e scansionato separatamente per tenere conto di possibili errori di masterizzazione." ++#~ msgid "" ++#~ "It is necessary to use apt-cdrom to add CDs to the APT " ++#~ "system, it cannot be done by hand. Furthermore each disk in a multi-cd " ++#~ "set must be inserted and scanned separately to account for possible mis-" ++#~ "burns." ++#~ msgstr "" ++#~ "Per aggiungere CD al sistema APT è necessario usare apt-cdrom, in quanto ciò non può essere fatto manualmente. Inoltre ogni " ++#~ "disco in un insieme di più CD deve essere inserito e scansionato " ++#~ "separatamente per tenere conto di possibili errori di masterizzazione." + +#~ msgid "add" +#~ msgstr "add" + - #~ msgid "add is used to add a new disc to the source list. It will unmount the CDROM device, prompt for a disk to be inserted and then proceed to scan it and copy the index files. If the disc does not have a proper disk directory you will be prompted for a descriptive title." - #~ msgstr "add è usato per aggiungere un nuovo CDROM alla lista delle sorgenti. Smonterà il device del CDROM, chiederà di inserire un disco e poi procederà alla scansione del cdrom e copierà i file indice. Se il disco non ha una directory .disk/ corretta verrà chiesto un titolo descrittivo." ++#~ msgid "" ++#~ "add is used to add a new disc to the source list. It " ++#~ "will unmount the CDROM device, prompt for a disk to be inserted and then " ++#~ "proceed to scan it and copy the index files. If the disc does not have a " ++#~ "proper disk directory you will be prompted for a " ++#~ "descriptive title." ++#~ msgstr "" ++#~ "add è usato per aggiungere un nuovo CDROM alla lista " ++#~ "delle sorgenti. Smonterà il device del CDROM, chiederà di inserire un " ++#~ "disco e poi procederà alla scansione del cdrom e copierà i file indice. " ++#~ "Se il disco non ha una directory .disk/ corretta " ++#~ "verrà chiesto un titolo descrittivo." + - #~ msgid "APT uses a CDROM ID to track which disc is currently in the drive and maintains a database of these IDs in &statedir;/cdroms.list" - #~ msgstr "APT usa un identificatore del CDROM per tenere traccia di quale disco è attualmente nel lettore e mantiene un database di questi identificativi nel file &statedir;/cdroms.list." ++#~ msgid "" ++#~ "APT uses a CDROM ID to track which disc is currently in the drive and " ++#~ "maintains a database of these IDs in &statedir;/cdroms.list" ++#~ msgstr "" ++#~ "APT usa un identificatore del CDROM per tenere traccia di quale disco è " ++#~ "attualmente nel lettore e mantiene un database di questi identificativi " ++#~ "nel file &statedir;/cdroms.list." + +#~ msgid "ident" +#~ msgstr "ident" + - #~ msgid "Unless the , or option is given one of the commands below must be present. " - #~ msgstr "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti. " ++#~ msgid "" ++#~ "Unless the , or option is " ++#~ "given one of the commands below must be present. " ++#~ msgstr "" ++#~ "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti. " ++#~ "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + - #~ msgid "Mount point; specify the location to mount the cdrom. This mount point must be listed in /etc/fstab and properly configured. Configuration Item: Acquire::cdrom::mount." - #~ msgstr "Punto di mount; specifica la posizione in cui montare il CDROM. Questo punto di mount deve essere elencato nel file /etc/fstab e configurato correttamente. Voce di configurazione: Acquire::cdrom::mount." ++#~ msgid "" ++#~ "Mount point; specify the location to mount the cdrom. This mount point " ++#~ "must be listed in /etc/fstab and properly " ++#~ "configured. Configuration Item: Acquire::cdrom::mount." ++#~ msgstr "" ++#~ "Punto di mount; specifica la posizione in cui montare il CDROM. Questo " ++#~ "punto di mount deve essere elencato nel file /etc/fstab e configurato correttamente. Voce di configurazione: " ++#~ "Acquire::cdrom::mount." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + - #~ msgid "Rename a disc; change the label of a disk or override the disks given label. This option will cause apt-cdrom to prompt for a new label. Configuration Item: APT::CDROM::Rename." - #~ msgstr "Rinomina un disco; cambia l'etichetta di un disco o soppianta l'etichetta originale del disco. Questa opzione farà sì che apt-cdrom chieda una nuova etichetta. Voce di configurazione: APT::CDROM::Rename." ++#~ msgid "" ++#~ "Rename a disc; change the label of a disk or override the disks given " ++#~ "label. This option will cause apt-cdrom to prompt for " ++#~ "a new label. Configuration Item: APT::CDROM::Rename." ++#~ msgstr "" ++#~ "Rinomina un disco; cambia l'etichetta di un disco o soppianta l'etichetta " ++#~ "originale del disco. Questa opzione farà sì che apt-cdrom chieda una nuova etichetta. Voce di configurazione: " ++#~ "APT::CDROM::Rename." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "apt-config" +#~ msgstr "apt-config" + - #~ msgid "apt-config shell dump " - #~ msgstr "apt-config shell dump " ++#~ msgid "" ++#~ "apt-config " ++#~ " " ++#~ " shell dump " ++#~ msgstr "" ++#~ "apt-config " ++#~ " shell dump " + - #~ msgid "apt-config is an internal program used by various portions of the APT suite to provide consistent configurability. It accesses the main configuration file /etc/apt/apt.conf in a manner that is easy to use by scripted applications." - #~ msgstr "apt-config è un programma interno usato da varie parti della suite APT per fornire una configurabiità coerente. Accede al file principale di configurazione /etc/apt/apt.conf in modo facile da usare da parte di applicazioni che girano sotto forma di script." ++#~ msgid "" ++#~ "apt-config is an internal program used by various " ++#~ "portions of the APT suite to provide consistent configurability. It " ++#~ "accesses the main configuration file /etc/apt/apt.conf in a manner that is easy to use by scripted applications." ++#~ msgstr "" ++#~ "apt-config è un programma interno usato da varie parti " ++#~ "della suite APT per fornire una configurabiità coerente. Accede al file " ++#~ "principale di configurazione /etc/apt/apt.conf in " ++#~ "modo facile da usare da parte di applicazioni che girano sotto forma di " ++#~ "script." + - #~ msgid "Unless the , or option is given one of the commands below must be present." - #~ msgstr "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti." ++#~ msgid "" ++#~ "Unless the , or option is " ++#~ "given one of the commands below must be present." ++#~ msgstr "" ++#~ "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti." + +#~ msgid "shell" +#~ msgstr "shell" + - #~ msgid "shell is used to access the configuration information from a shell script. It is given pairs of arguments, the first being a shell variable and the second the configuration value to query. As output it lists a series of shell assignments commands for each present value. In a shell script it should be used like:" - #~ msgstr "shell viene usato per accedere alle informazioni di configurazione da parte di uno script di shell. Riceve coppie di argomenti, il primo dei quali è una variabile di shell e il secondo è il valore di configurazione da interrogare. Come risultato elenca una serie di comandi di assegnazione di shell per ciascun valore presente. In uno script di shell dovrebbe essere usato in modo simile a:" ++#~ msgid "" ++#~ "shell is used to access the configuration information from a shell " ++#~ "script. It is given pairs of arguments, the first being a shell variable " ++#~ "and the second the configuration value to query. As output it lists a " ++#~ "series of shell assignments commands for each present value. In a shell " ++#~ "script it should be used like:" ++#~ msgstr "" ++#~ "shell viene usato per accedere alle informazioni di configurazione da " ++#~ "parte di uno script di shell. Riceve coppie di argomenti, il primo dei " ++#~ "quali è una variabile di shell e il secondo è il valore di configurazione " ++#~ "da interrogare. Come risultato elenca una serie di comandi di " ++#~ "assegnazione di shell per ciascun valore presente. In uno script di shell " ++#~ "dovrebbe essere usato in modo simile a:" + +#~ msgid "apt-extracttemplates" +#~ msgstr "apt-extracttemplates" + +#~ msgid "Utility to extract DebConf config and templates from Debian packages" - #~ msgstr "Utilità per estrarre configurazioni e modelli DebConf dai pacchetti Debian" ++#~ msgstr "" ++#~ "Utilità per estrarre configurazioni e modelli DebConf dai pacchetti Debian" + - #~ msgid "apt-extracttemplates file" - #~ msgstr "apt-extracttemplates file" ++#~ msgid "" ++#~ "apt-extracttemplates " ++#~ " file" ++#~ msgstr "" ++#~ "apt-extracttemplates " ++#~ " file" + - #~ msgid "template-file and config-script are written to the temporary directory specified by the -t or --tempdir (APT::ExtractTemplates::TempDir) directory, with filenames of the form package.template.XXXX and package.config.XXXX" - #~ msgstr "file-template e script-di-configurazione sono scritti nella directory temporanea specificata da -t o --tempdir (APT::ExtractTemplates::TempDir) directory, con i nomi dei file nella forma pacchetto.template.XXXX e pacchetto.config.XXXX" ++#~ msgid "" ++#~ "template-file and config-script are written to the temporary directory " ++#~ "specified by the -t or --tempdir (APT::ExtractTemplates::" ++#~ "TempDir) directory, with filenames of the form " ++#~ "package.template.XXXX and package.config." ++#~ "XXXX" ++#~ msgstr "" ++#~ "file-template e script-di-configurazione sono scritti nella directory " ++#~ "temporanea specificata da -t o --tempdir (APT::ExtractTemplates::" ++#~ "TempDir) directory, con i nomi dei file nella forma " ++#~ "pacchetto.template.XXXX e pacchetto.config." ++#~ "XXXX" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + - #~ msgid "Temporary directory in which to write extracted debconf template files and config scripts. Configuration Item: APT::ExtractTemplates::TempDir" - #~ msgstr "Directory temporanea dove scrivere i file template di debconf e gli script di configurazione estratti. Voce di configurazione: APT::ExtractTemplates::TempDir." ++#~ msgid "" ++#~ "Temporary directory in which to write extracted debconf template files " ++#~ "and config scripts. Configuration Item: APT::ExtractTemplates::" ++#~ "TempDir" ++#~ msgstr "" ++#~ "Directory temporanea dove scrivere i file template di debconf e gli " ++#~ "script di configurazione estratti. Voce di configurazione: APT::" ++#~ "ExtractTemplates::TempDir." + - #~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 17 August 2009" - #~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 17 agosto 2009" ++#~ msgid "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "17 August 2009" ++#~ msgstr "" ++#~ "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " ++#~ "17 agosto 2009" + +#~ msgid "apt-ftparchive" +#~ msgstr "apt-ftparchive" + - #~ msgid "apt-ftparchive packagespathoverridepathprefix sourcespathoverridepathprefix contents path release path generate config-file section clean config-file " - #~ msgstr "apt-ftparchive packagespercorsooverrideprefisso del percorso sourcespercorsooverrideprefisso del percorso contents percorso release percorso generate file-di-configurazione sezione clean file-di-configurazione " ++#~ msgid "" ++#~ "apt-ftparchive " ++#~ " " ++#~ " " ++#~ " packagespathoverridepathprefix " ++#~ "sourcespathoverridepathprefix " ++#~ "contents path release path generate config-file section clean config-file " ++#~ msgstr "" ++#~ "apt-ftparchive " ++#~ " " ++#~ " " ++#~ " packagespercorsooverrideprefisso del percorso sourcespercorsooverrideprefisso del percorso contents percorso release percorso generate file-di-configurazione " ++#~ "sezione clean file-di-" ++#~ "configurazione " + +#~ msgid "packages" +#~ msgstr "packages" + +#~ msgid "sources" +#~ msgstr "sources" + +#~ msgid "contents" +#~ msgstr "contents" + +#~ msgid "release" +#~ msgstr "release" + - #~ msgid "The release command generates a Release file from a directory tree. It recursively searches the given directory for Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and md5sum.txt files. It then writes to stdout a Release file containing an MD5 digest and SHA1 digest for each file." - #~ msgstr "Il comando release genera un file Release da un albero di directory. Cerca ricorivamente file Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release e md5sum.txt nella directory data. Quindi scrive su stdout un file Release che contiene un digest MD5 e SHA1 per ciascun file." ++#~ msgid "" ++#~ "The release command generates a Release file from a " ++#~ "directory tree. It recursively searches the given directory for Packages, " ++#~ "Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " ++#~ "md5sum.txt files. It then writes to stdout a Release file containing an " ++#~ "MD5 digest and SHA1 digest for each file." ++#~ msgstr "" ++#~ "Il comando release genera un file Release da un albero " ++#~ "di directory. Cerca ricorivamente file Packages, Packages.gz, Packages." ++#~ "bz2, Sources, Sources.gz, Sources.bz2, Release e md5sum.txt nella " ++#~ "directory data. Quindi scrive su stdout un file Release che contiene un " ++#~ "digest MD5 e SHA1 per ciascun file." + - #~ msgid "Values for the additional metadata fields in the Release file are taken from the corresponding variables under APT::FTPArchive::Release, e.g. APT::FTPArchive::Release::Origin. The supported fields are: Origin, Label, Suite, Version, Codename, Date, Architectures, Components, Description." - #~ msgstr "I valori dei campi di metadati aggiuntivi nel file Release sono presi dalle variabili corrispondenti sotto APT::FTPArchive::Release, ad esempio APT::FTPArchive::Release::Origin. I campi supportati sono: Origin, Label, Suite, Version, Codename, Date, Architectures, Components, Description." ++#~ msgid "" ++#~ "Values for the additional metadata fields in the Release file are taken " ++#~ "from the corresponding variables under APT::FTPArchive::Release, e.g. APT::FTPArchive::Release::Origin. The " ++#~ "supported fields are: Origin, Label, Suite, Version, " ++#~ "Codename, Date, " ++#~ "Architectures, Components, " ++#~ "Description." ++#~ msgstr "" ++#~ "I valori dei campi di metadati aggiuntivi nel file Release sono presi " ++#~ "dalle variabili corrispondenti sotto APT::FTPArchive::Release, ad esempio APT::FTPArchive::Release::Origin. I campi supportati sono: Origin, " ++#~ "Label, Suite, Version, Codename, Date, " ++#~ "Architectures, Components, " ++#~ "Description." + +#~ msgid "generate" +#~ msgstr "generate" + +#~ msgid "clean" +#~ msgstr "clean" + - #~ msgid "The generate configuration has 4 separate sections, each described below." - #~ msgstr "La configurazione di generate ha 4 sezioni separate, ciascuna delle quali è descritta sotto." ++#~ msgid "" ++#~ "The generate configuration has 4 separate sections, each described below." ++#~ msgstr "" ++#~ "La configurazione di generate ha 4 sezioni separate, ciascuna delle quali " ++#~ "è descritta sotto." + +#~ msgid "Dir Section" +#~ msgstr "Sezione Dir" + +#~ msgid "ArchiveDir" +#~ msgstr "ArchiveDir" + +#~ msgid "OverrideDir" +#~ msgstr "OverrideDir" + +#~ msgid "CacheDir" +#~ msgstr "CacheDir" + +#~ msgid "Specifies the location of the cache files" +#~ msgstr "Specifica la posizione dei file cache." + +#~ msgid "FileListDir" +#~ msgstr "FileListDir" + +#~ msgid "Default Section" +#~ msgstr "Sezione Default" + +#~ msgid "Packages::Compress" +#~ msgstr "Packages::Compress" + - #~ msgid "Sets the default compression schemes to use for the Package index files. It is a string that contains a space separated list of at least one of: '.' (no compression), 'gzip' and 'bzip2'. The default for all compression schemes is '. gzip'." - #~ msgstr "Imposta gli schemi di compressione predefiniti da usare per i file indice dei pacchetti. È una stringa che contiene una lista separata da spazi contenente almeno uno fra \".\" (nessuna compressione), \"gzip\" e \"bzip2\". Il valore predefinito per tutti gli schemi di compressione è \"gzip\"." ++#~ msgid "" ++#~ "Sets the default compression schemes to use for the Package index files. " ++#~ "It is a string that contains a space separated list of at least one of: " ++#~ "'.' (no compression), 'gzip' and 'bzip2'. The default for all compression " ++#~ "schemes is '. gzip'." ++#~ msgstr "" ++#~ "Imposta gli schemi di compressione predefiniti da usare per i file indice " ++#~ "dei pacchetti. È una stringa che contiene una lista separata da spazi " ++#~ "contenente almeno uno fra \".\" (nessuna compressione), \"gzip\" e " ++#~ "\"bzip2\". Il valore predefinito per tutti gli schemi di compressione è " ++#~ "\"gzip\"." + +#~ msgid "Packages::Extensions" +#~ msgstr "Packages::Extensions" + +#~ msgid "Sources::Compress" +#~ msgstr "Sources::Compress" + +#~ msgid "Sources::Extensions" +#~ msgstr "Sources::Extensions" + +#~ msgid "Contents::Compress" +#~ msgstr "Contents::Compress" + +#~ msgid "DeLinkLimit" +#~ msgstr "DeLinkLimit" + +#~ msgid "FileMode" +#~ msgstr "FileMode" + +#~ msgid "TreeDefault Section" +#~ msgstr "Sezione TreeDefault" + +#~ msgid "MaxContentsChange" +#~ msgstr "MaxContentsChange" + +#~ msgid "ContentsAge" +#~ msgstr "ContentsAge" + +#~ msgid "Directory" +#~ msgstr "Directory" + +#~ msgid "SrcDirectory" +#~ msgstr "SrcDirectory" + +#~ msgid "Packages" +#~ msgstr "Packages" + +#~ msgid "Sources" +#~ msgstr "Sources" + +#~ msgid "InternalPrefix" +#~ msgstr "InternalPrefix" + +#~ msgid "Contents" +#~ msgstr "Contents" + - #~ msgid "Sets the output Contents file. Defaults to $(DIST)/Contents-$(ARCH). If this setting causes multiple Packages files to map onto a single Contents file (such as the default) then apt-ftparchive will integrate those package files together automatically." - #~ msgstr "Imposta il file Contents di uscita. Il valore predefinito è $(DIST)/Contents-$(ARCH). Se questa impostazione fa sì che più file Packages corrispondano a un solo file Contents (come con il valore predefinito) allora apt-ftparchive unirà automaticamente insieme questi file dei pacchetti." ++#~ msgid "" ++#~ "Sets the output Contents file. Defaults to $(DIST)/Contents-" ++#~ "$(ARCH). If this setting causes multiple Packages files to map " ++#~ "onto a single Contents file (such as the default) then apt-" ++#~ "ftparchive will integrate those package files together " ++#~ "automatically." ++#~ msgstr "" ++#~ "Imposta il file Contents di uscita. Il valore predefinito è " ++#~ "$(DIST)/Contents-$(ARCH). Se questa impostazione fa sì che più " ++#~ "file Packages corrispondano a un solo file Contents (come con il valore " ++#~ "predefinito) allora apt-ftparchive unirà " ++#~ "automaticamente insieme questi file dei pacchetti." + +#~ msgid "Contents::Header" +#~ msgstr "Contents::Header" + +#~ msgid "BinCacheDB" +#~ msgstr "BinCacheDB" + +#~ msgid "FileList" +#~ msgstr "FileList" + +#~ msgid "SourceFileList" +#~ msgstr "SourceFileList" + +#~ msgid "Tree Section" +#~ msgstr "Sezione Tree" + - #~ msgid "The Tree section takes a scope tag which sets the $(DIST) variable and defines the root of the tree (the path is prefixed by ArchiveDir). Typically this is a setting such as dists/woody." - #~ msgstr "La sezione Tree prende un tag di ambito che imposta la variabile $(DIST) e definisce la radice dell'albero (il percorso viene prefissato da ArchiveDir). Di solito è un'impostazione simile a dists/woody." ++#~ msgid "" ++#~ "The Tree section takes a scope tag which sets the " ++#~ "$(DIST) variable and defines the root of the tree (the " ++#~ "path is prefixed by ArchiveDir). Typically this is a " ++#~ "setting such as dists/woody." ++#~ msgstr "" ++#~ "La sezione Tree prende un tag di ambito che imposta la " ++#~ "variabile $(DIST) e definisce la radice dell'albero " ++#~ "(il percorso viene prefissato da ArchiveDir). Di " ++#~ "solito è un'impostazione simile a dists/woody." + - #~ msgid "All of the settings defined in the TreeDefault section can be use in a Tree section as well as three new variables." - #~ msgstr "Tutte le impostazioni definite nella sezione TreeDefault possono essere usate in una sezione Tree, oltre a tre nuove variabili." ++#~ msgid "" ++#~ "All of the settings defined in the TreeDefault section " ++#~ "can be use in a Tree section as well as three new " ++#~ "variables." ++#~ msgstr "" ++#~ "Tutte le impostazioni definite nella sezione TreeDefault possono essere usate in una sezione Tree, " ++#~ "oltre a tre nuove variabili." + +#~ msgid "Sections" +#~ msgstr "Sezioni" + - #~ msgid "This is a space separated list of sections which appear under the distribution, typically this is something like main contrib non-free" - #~ msgstr "Questa è una lista di sezioni che appaiono sotto la distribuzione, separate da spazi; tipicamente è simile a main contrib non-free." ++#~ msgid "" ++#~ "This is a space separated list of sections which appear under the " ++#~ "distribution, typically this is something like main contrib non-" ++#~ "free" ++#~ msgstr "" ++#~ "Questa è una lista di sezioni che appaiono sotto la distribuzione, " ++#~ "separate da spazi; tipicamente è simile a main contrib non-free." + +#~ msgid "Architectures" +#~ msgstr "Architetture" + +#~ msgid "BinOverride" +#~ msgstr "BinOverride" + +#~ msgid "SrcOverride" +#~ msgstr "SrcOverride" + +#~ msgid "ExtraOverride" +#~ msgstr "ExtraOverride" + +#~ msgid "SrcExtraOverride" +#~ msgstr "SrcExtraOverride" + +#~ msgid "BinDirectory Section" +#~ msgstr "Sezione BinDirectory" + +#~ msgid "Sets the Contents file output. (optional)" +#~ msgstr "Imposta il file Contents di uscita (facoltativo)." + +#~ msgid "PathPrefix" +#~ msgstr "PathPrefix" + +#~ msgid "FileList, SourceFileList" +#~ msgstr "FileList, SourceFileList" + - #~ msgid "The binary override file is fully compatible with &dpkg-scanpackages;. It contains 4 fields separated by spaces. The first field is the package name, the second is the priority to force that package to, the third is the the section to force that package to and the final field is the maintainer permutation field." - #~ msgstr "Il file override binario è completamente compatibile con &dpkg-scanpackages;. Contiene 4 campi separati da spazi. Il primo campo è il nome del pacchetto, il secondo è la priorità a cui forzare quel pacchetto, il terzo è la sezione in cui forzare quel pacchetto e l'ultimo campo è il campo di permutazione del manutentore." ++#~ msgid "" ++#~ "The binary override file is fully compatible with &dpkg-scanpackages;. It " ++#~ "contains 4 fields separated by spaces. The first field is the package " ++#~ "name, the second is the priority to force that package to, the third is " ++#~ "the the section to force that package to and the final field is the " ++#~ "maintainer permutation field." ++#~ msgstr "" ++#~ "Il file override binario è completamente compatibile con &dpkg-" ++#~ "scanpackages;. Contiene 4 campi separati da spazi. Il primo campo è il " ++#~ "nome del pacchetto, il secondo è la priorità a cui forzare quel " ++#~ "pacchetto, il terzo è la sezione in cui forzare quel pacchetto e l'ultimo " ++#~ "campo è il campo di permutazione del manutentore." + +#, fuzzy +#~ msgid "update" +#~ msgstr "upgrade" + +#, fuzzy +#~ msgid "dselect-upgrade" +#~ msgstr "dist-upgrade" + +#, fuzzy +#~ msgid "apt-key" +#~ msgstr "apt-get" + +#, fuzzy - #~ msgid "For more details, on Debian GNU/Linux systems, see the file /usr/share/common-licenses/GPL for the full license." - #~ msgstr "Per ulteriori dettagli sui sistemi GNU/Linux si veda il testo completo della licenza nel file /usr/share/common-licenses/GPL." ++#~ msgid "" ++#~ "For more details, on Debian GNU/Linux systems, see the file /usr/share/" ++#~ "common-licenses/GPL for the full license." ++#~ msgstr "" ++#~ "Per ulteriori dettagli sui sistemi GNU/Linux si veda il testo completo " ++#~ "della licenza nel file /usr/share/common-licenses/GPL." + +#, fuzzy - #~ msgid "To enable the APT method you need to select [A]ccess in dselect and then choose the APT method. You will be prompted for a set of Sources which are places to fetch archives from. These can be remote Internet sites, local Debian mirrors or CDROMs. Each source can provide a fragment of the total Debian archive, APT will automatically combine them to form a complete set of packages. If you have a CDROM then it is a good idea to specify it first and then specify a mirror so that you have access to the latest bug fixes. APT will automatically use packages on your CDROM before downloading from the Internet." - #~ msgstr "Per abilitare il metodo APT dovete selezionare [A]ccess in dselect e scegliere il metodo APT; vi verrà chiesto un insieme di fonti (Sources), cioè di posti da cui scaricare gli archivi. Tali fonti possono essere siti Internet remoti, mirror locali di Debian o CDROM; ciascuna di esse può fornire una parte dell'archivio Debian, ed APT le combinerà insieme in un set completo di pacchetti. Se avete un CDROM è una buona idea indicare quello per primo, e poi i mirror, in modo da avere accesso alle ultime versioni; APT userà in questo modo automaticamente i pacchetti sul CDROM prima di scaricarli da Internet." ++#~ msgid "" ++#~ "To enable the APT method you need to select [A]ccess in dselect and then choose the APT method. You will be prompted for a set of " ++#~ "Sources which are places to fetch archives from. These can be " ++#~ "remote Internet sites, local Debian mirrors or CDROMs. Each source can " ++#~ "provide a fragment of the total Debian archive, APT will automatically " ++#~ "combine them to form a complete set of packages. If you have a CDROM then " ++#~ "it is a good idea to specify it first and then specify a mirror so that " ++#~ "you have access to the latest bug fixes. APT will automatically use " ++#~ "packages on your CDROM before downloading from the Internet." ++#~ msgstr "" ++#~ "Per abilitare il metodo APT dovete selezionare [A]ccess in dselect e scegliere il metodo APT; vi verrà chiesto un insieme di fonti " ++#~ "(Sources), cioè di posti da cui scaricare gli archivi. Tali " ++#~ "fonti possono essere siti Internet remoti, mirror locali di Debian o " ++#~ "CDROM; ciascuna di esse può fornire una parte dell'archivio Debian, ed " ++#~ "APT le combinerà insieme in un set completo di pacchetti. Se avete un " ++#~ "CDROM è una buona idea indicare quello per primo, e poi i mirror, in modo " ++#~ "da avere accesso alle ultime versioni; APT userà in questo modo " ++#~ "automaticamente i pacchetti sul CDROM prima di scaricarli da Internet." diff --combined doc/po/ja.po index 8549d4bb6,8549d4bb6..1c8f4cdef --- a/doc/po/ja.po +++ b/doc/po/ja.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.25.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" --"POT-Creation-Date: 2012-08-30 22:07+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-08-08 07:58+0900\n" "Last-Translator: KURASAWA Nozomu \n" "Language-Team: Debian Japanese List \n" @@@ -1530,14 -1530,14 +1530,14 @@@ msgstr " #. type: Content of: #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "ファイル" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -4101,13 -4101,13 +4101,23 @@@ msgstr " "Translation ファイルを、リストの最後 (暗黙の \"<literal>none</literal>\" の" "後) に追加します。" ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "ディレクトリ" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4126,7 -4126,7 +4136,7 @@@ msgstr " "サブアイテムすべてに、前に付加するデフォルトディレクトリを含んでいます。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4147,7 -4147,7 +4157,7 @@@ msgstr " "様、<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4161,7 -4161,7 +4171,7 @@@ msgstr " "ファイルを指定された場合のみ、この設定の効果があります)" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4172,7 -4172,7 +4182,7 @@@ msgstr " "します。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4189,7 -4189,7 +4199,7 @@@ msgstr " "プログラムの場所を指定します。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4209,7 -4209,7 +4219,7 @@@ msgstr " "<filename>/tmp/staging/var/lib/dpkg/status</filename> から探します。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4225,12 -4225,12 +4235,12 @@@ msgstr " "フォルト値を見ればわかる通り、このパターンには正規表現を使用できます。" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "DSelect での APT" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4241,7 -4241,7 +4251,7 @@@ msgstr " "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4262,7 -4262,7 +4272,7 @@@ msgstr " "パッケージをダウンロードする直前に行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@@ -4271,7 -4271,7 +4281,7 @@@ msgstr " "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@@ -4280,7 -4280,7 +4290,7 @@@ msgstr " "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@@ -4289,12 -4289,12 +4299,12 @@@ msgstr " "します。デフォルトはエラーが発生した場合のみです。" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "APT が &dpkg; を呼ぶ方法" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@@ -4303,7 -4303,7 +4313,7 @@@ msgstr " "<literal>DPkg</literal> セクションにあります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4313,7 -4313,7 +4323,7 @@@ msgstr " "なければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4325,7 -4325,7 +4335,7 @@@ msgstr " "bin/sh</filename> を通して呼び出され、何か問題があれば APT が異常終了します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4340,7 -4340,7 +4350,7 @@@ msgstr " "マンドの標準入力に送ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4355,7 -4355,7 +4365,7 @@@ msgstr " "Install-Pkgs</literal> で与えられるコマンドです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@@ -4364,7 -4364,7 +4374,7 @@@ msgstr " "<filename>/</filename> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@@ -4373,12 -4373,12 +4383,12 @@@ msgstr " "ます。デフォルトでは署名を無効にし、全バイナリを生成します。" #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "dpkg トリガの使い方 (および関連オプション)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4402,7 -4402,7 +4412,7 @@@ msgstr " "(もしくはそれ以上) の時間 100% のままとなり、進捗レポートを壊してしまいます。" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4416,7 -4416,7 +4426,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4439,7 -4439,7 +4449,7 @@@ msgstr " "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4459,7 -4459,7 +4469,7 @@@ msgstr " "在 APT は、このフラグを、展開呼び出しや削除呼び出しにも追加します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4486,7 -4486,7 +4496,7 @@@ msgstr " "能性があるからです。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4503,7 -4503,7 +4513,7 @@@ msgstr " "では、最後以外のすべての実行で、無効にできます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4518,7 -4518,7 +4528,7 @@@ msgstr " "ことに注意してください。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4536,7 -4536,7 +4546,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4559,12 -4559,12 +4569,12 @@@ msgstr " "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4577,12 -4577,12 +4587,12 @@@ msgstr " "トは、このスクリプトの先頭を参照してください。" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4598,7 -4598,7 +4608,7 @@@ msgstr " "のオプションは興味がないでしょうが、以下のものは興味を引くかもしれません。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4609,7 -4609,7 +4619,7 @@@ msgstr " "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4620,7 -4620,7 +4630,7 @@@ msgstr " "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4632,7 -4632,7 +4642,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@@ -4641,34 -4641,34 +4651,34 @@@ msgstr " "ないようにします。" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "以下は apt に対するデバッグオプションのすべてです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@@ -4676,7 -4676,7 +4686,7 @@@ msgstr " "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@@ -4685,12 -4685,12 +4695,12 @@@ msgstr " "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "&apt-get; での構築依存関係解決のプロセスを説明します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@@ -4698,7 -4698,7 +4708,7 @@@ msgstr " "<literal>apt</literal> ライブラリが生成した、暗号化ハッシュを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4708,7 -4708,7 +4718,7 @@@ msgstr " "システムにある使用済・未使用ブロックの数からの情報を含めないようにします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@@ -4717,13 -4717,13 +4727,13 @@@ msgstr " "<quote><literal>apt-get update</literal></quote> を実行できるようになります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" "グローバルダウンロードキューに対する項目の追加・削除の際にログを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@@ -4732,7 -4732,7 +4742,7 @@@ msgstr " "ジやエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@@ -4741,7 -4741,7 +4751,7 @@@ msgstr " "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@@ -4750,14 -4750,14 +4760,14 @@@ msgstr " "リストへのパッチ適用に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" "実際のダウンロードを行う際の、サブプロセスとのやりとりをログに出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@@ -4766,7 -4766,7 +4776,7 @@@ msgstr " "に出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -4781,7 -4781,7 +4791,7 @@@ msgstr " "路に対応しています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -4810,7 -4810,7 +4820,7 @@@ msgstr " "ます。<literal>section</literal> はパッケージが現れるセクション名です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@@ -4819,7 -4819,7 +4829,7 @@@ msgstr " "切られます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@@ -4828,7 -4828,7 +4838,7 @@@ msgstr " "を解析中に発生したエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@@ -4837,18 -4837,18 +4847,18 @@@ msgstr " "のトレースを生成します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "&dpkg; を呼び出す際に、実行手順を追跡した状態メッセージを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "起動時の各パッケージの優先度を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@@ -4857,7 -4857,7 +4867,7 @@@ msgstr " "した場合にのみ、適用されます)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -4868,7 -4868,7 +4878,7 @@@ msgstr " "説明したものと同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@@ -4877,13 -4877,13 +4887,13 @@@ msgstr " "します。" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "サンプル" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -4893,7 -4893,7 +4903,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/pl.po index c6dbde448,c6dbde448..9be82667e --- a/doc/po/pl.po +++ b/doc/po/pl.po @@@ -11,7 -11,7 +11,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-07-28 21:59+0200\n" "Last-Translator: Robert Luberda <robert@debian.org>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" @@@ -1613,14 -1613,14 +1613,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "Pliki" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -3981,13 -3981,13 +3981,23 @@@ msgid " "added to the end of the list (after an implicit \"<literal>none</literal>\")." msgstr "" ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -3999,7 -3999,7 +4009,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4012,7 -4012,7 +4022,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4022,7 -4022,7 +4032,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4030,7 -4030,7 +4040,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4041,7 -4041,7 +4051,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4054,7 -4054,7 +4064,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4065,12 -4065,12 +4075,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4078,7 -4078,7 +4088,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4091,40 -4091,40 +4101,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4132,7 -4132,7 +4142,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4141,7 -4141,7 +4151,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4151,7 -4151,7 +4161,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4161,26 -4161,26 +4171,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4195,7 -4195,7 +4205,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4209,7 -4209,7 +4219,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4223,7 -4223,7 +4233,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4236,7 -4236,7 +4246,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4253,7 -4253,7 +4263,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4264,7 -4264,7 +4274,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4274,7 -4274,7 +4284,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4292,7 -4292,7 +4302,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4306,12 -4306,12 +4316,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4320,13 -4320,13 +4330,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 #, fuzzy msgid "Debug options" msgstr "opcje" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4337,7 -4337,7 +4347,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4345,7 -4345,7 +4355,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4353,7 -4353,7 +4363,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4363,7 -4363,7 +4373,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@@ -4373,59 -4373,59 +4383,59 @@@ msgstr " "in CDROM IDs." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4433,53 -4433,53 +4443,53 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -4489,7 -4489,7 +4499,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -4507,46 -4507,46 +4517,46 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -4554,20 -4554,20 +4564,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "Przykłady" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -4575,7 -4575,7 +4585,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/pt.po index da1af2149,da1af2149..6beff2223 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 22:07+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2012-09-03 01:53+0100\n" "Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n" "Language-Team: Portuguese <l10n@debianpt.org>\n" @@@ -1566,14 -1566,14 +1566,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "Ficheiros" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" @@@ -4243,13 -4243,13 +4243,23 @@@ msgstr " "filename> serão adicionados ao final da lista (após um \"<literal>none</" "literal>\" implícito)." ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "Directórios" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4268,7 -4268,7 +4278,7 @@@ msgstr " "items que não começam com <filename>/</filename> ou <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4290,7 -4290,7 +4300,7 @@@ msgstr " "literal>" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4305,7 -4305,7 +4315,7 @@@ msgstr " "ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4316,7 -4316,7 +4326,7 @@@ msgstr " "estar feito então é carregado o ficheiro de configuração principal." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4334,7 -4334,7 +4344,7 @@@ msgstr " "respectivos programas." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4355,7 -4355,7 +4365,7 @@@ msgstr " "procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4373,12 -4373,12 +4383,12 @@@ msgstr " "expressão regular." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "APT em DSelect" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4389,7 -4389,7 +4399,7 @@@ msgstr " "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4411,7 -4411,7 +4421,7 @@@ msgstr " "pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@@ -4420,7 -4420,7 +4430,7 @@@ msgstr " "comandos quando é corrido para a fase de instalação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@@ -4429,7 -4429,7 +4439,7 @@@ msgstr " "comandos quando é executado para a fase de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@@ -4438,12 -4438,12 +4448,12 @@@ msgstr " "continuar. A predefinição é avisar apenas em caso de erro." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "Como o APT chama o &dpkg;" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@@ -4452,7 -4452,7 +4462,7 @@@ msgstr " "&dpkg;. Estas estão na secção <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4463,7 -4463,7 +4473,7 @@@ msgstr " "um argumento único ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4476,7 -4476,7 +4486,7 @@@ msgstr " "bin/sh</filename>, caso algum deles falhe, o APT irá abortar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4492,7 -4492,7 +4502,7 @@@ msgstr " "instalar, um por cada linha na entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4507,7 -4507,7 +4517,7 @@@ msgstr " "dado ao <literal>Pre-Install-Pkgs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@@ -4516,7 -4516,7 +4526,7 @@@ msgstr " "predefinição é <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@@ -4525,12 -4525,12 +4535,12 @@@ msgstr " "predefinição é desactivar a assinatura e produzir todos os binários." #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "Utilização trigger do dpkg (e opções relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4556,7 -4556,7 +4566,7 @@@ msgstr " "100% enquanto na realidade está a configurar todos os pacotes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4570,7 -4570,7 +4580,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4594,7 -4594,7 +4604,7 @@@ msgstr " "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4616,7 -4616,7 +4626,7 @@@ msgstr " "chamadas unpack e remove." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4646,7 -4646,7 +4656,7 @@@ msgstr " "arrancar." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4664,7 -4664,7 +4674,7 @@@ msgstr " "esta opção em todas excepto na última execução." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4680,7 -4680,7 +4690,7 @@@ msgstr " "configurar este pacote." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4698,7 -4698,7 +4708,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4722,12 -4722,12 +4732,12 @@@ msgstr " "predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "Opções Periodic e Archives" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4740,12 -4740,12 +4750,12 @@@ msgstr " "Veja o cabeçalho deste script para uma breve documentação das suas opções." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "Opções de depuração" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4762,7 -4762,7 +4772,7 @@@ msgstr " "interesse para o utilizador normal, mas algumas podem ter:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4773,7 -4773,7 +4783,7 @@@ msgstr " "remove, purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4784,7 -4784,7 +4794,7 @@@ msgstr " "<literal>apt-get -s install</literal>) como um utilizador não root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4796,7 -4796,7 +4806,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@@ -4805,12 -4805,12 +4815,12 @@@ msgstr " "IDs de CD-ROM." #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "Segue-se uma lista completa de opções de depuração para o apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@@ -4818,25 -4818,25 +4828,25 @@@ "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@@ -4845,7 -4845,7 +4855,7 @@@ msgstr " "criptográficas usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@@ -4854,13 -4854,13 +4864,13 @@@ msgstr " "armazenados em CD-ROMs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descreve os processos de resolver dependências de compilação no &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@@ -4869,7 -4869,7 +4879,7 @@@ msgstr " "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4880,7 -4880,7 +4890,7 @@@ msgstr " "para um CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@@ -4890,14 -4890,14 +4900,14 @@@ msgstr " "literal></quote> ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Regista no log quando os items são adicionados ou removidos da fila de " "download global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@@ -4906,7 -4906,7 +4916,7 @@@ msgstr " "checksums e assinaturas criptográficas dos ficheiros descarregados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@@ -4916,7 -4916,7 +4926,7 @@@ msgstr " "pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@@ -4925,7 -4925,7 +4935,7 @@@ msgstr " "do apt quando se descarrega diffs de índice em vez de índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@@ -4933,7 -4933,7 +4943,7 @@@ "downloads." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@@ -4942,7 -4942,7 +4952,7 @@@ msgstr " "de pacotes e com a remoção de pacotes não utilizados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -4957,7 -4957,7 +4967,7 @@@ msgstr " "literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -4988,7 -4988,7 +4998,7 @@@ msgstr " "pacote aparece." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@@ -4998,7 -4998,7 +5008,7 @@@ msgstr " "único." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@@ -5007,7 -5007,7 +5017,7 @@@ msgstr " "estado e quaisquer erros encontrados enquanto os analisa." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@@ -5016,7 -5016,7 +5026,7 @@@ msgstr " "literal> deve passar os pacotes ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@@ -5024,12 -5024,12 +5034,12 @@@ "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "Escreve a prioridade da cada lista de pacote no arranque." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@@ -5038,7 -5038,7 +5048,7 @@@ msgstr " "acontece quando é encontrado um problema de dependências complexo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -5049,7 -5049,7 +5059,7 @@@ msgstr " "mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@@ -5058,13 -5058,13 +5068,13 @@@ msgstr " "vendors.list</filename>." #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -5074,7 -5074,7 +5084,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --combined doc/po/pt_BR.po index 18a6c3142,18a6c3142..2f73e3d49 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" --"POT-Creation-Date: 2012-08-30 12:50+0300\n" ++"POT-Creation-Date: 2013-04-02 15:13+0300\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" @@@ -1091,14 -1091,14 +1091,14 @@@ msgstr " #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 --#: apt.conf.5.xml:1156 apt_preferences.5.xml:698 ++#: apt.conf.5.xml:1168 apt_preferences.5.xml:698 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 #: apt-secure.8.xml:191 apt-cdrom.8.xml:144 apt-config.8.xml:109 --#: apt.conf.5.xml:1162 apt_preferences.5.xml:705 sources.list.5.xml:252 ++#: apt.conf.5.xml:1174 apt_preferences.5.xml:705 sources.list.5.xml:252 #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 #, fuzzy @@@ -2975,13 -2975,13 +2975,23 @@@ msgid " "added to the end of the list (after an implicit \"<literal>none</literal>\")." msgstr "" ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:559 ++msgid "When downloading, force to use only the IPv4 protocol." ++msgstr "" ++ ++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> ++#: apt.conf.5.xml:565 ++msgid "When downloading, force to use only the IPv6 protocol." ++msgstr "" ++ #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:560 ++#: apt.conf.5.xml:572 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:562 ++#: apt.conf.5.xml:574 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -2993,7 -2993,7 +3003,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:569 ++#: apt.conf.5.xml:581 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -3006,7 -3006,7 +3016,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:578 ++#: apt.conf.5.xml:590 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -3016,7 -3016,7 +3026,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:584 ++#: apt.conf.5.xml:596 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -3024,7 -3024,7 +3034,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:588 ++#: apt.conf.5.xml:600 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -3035,7 -3035,7 +3045,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:596 ++#: apt.conf.5.xml:608 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -3048,7 -3048,7 +3058,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:609 ++#: apt.conf.5.xml:621 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -3059,12 -3059,12 +3069,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:618 ++#: apt.conf.5.xml:630 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:620 ++#: apt.conf.5.xml:632 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -3072,7 -3072,7 +3082,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:625 ++#: apt.conf.5.xml:637 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -3085,40 -3085,40 +3095,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:639 ++#: apt.conf.5.xml:651 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:644 ++#: apt.conf.5.xml:656 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:649 ++#: apt.conf.5.xml:661 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:655 ++#: apt.conf.5.xml:667 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:656 ++#: apt.conf.5.xml:668 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:661 ++#: apt.conf.5.xml:673 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -3126,7 -3126,7 +3136,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:667 ++#: apt.conf.5.xml:679 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3135,7 -3135,7 +3145,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:674 ++#: apt.conf.5.xml:686 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3145,7 -3145,7 +3155,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:680 ++#: apt.conf.5.xml:692 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -3155,26 -3155,26 +3165,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:688 ++#: apt.conf.5.xml:700 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:693 ++#: apt.conf.5.xml:705 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> --#: apt.conf.5.xml:698 ++#: apt.conf.5.xml:710 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:699 ++#: apt.conf.5.xml:711 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -3189,7 -3189,7 +3199,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> --#: apt.conf.5.xml:714 ++#: apt.conf.5.xml:726 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -3199,7 -3199,7 +3209,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> --#: apt.conf.5.xml:708 ++#: apt.conf.5.xml:720 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -3213,7 -3213,7 +3223,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:721 ++#: apt.conf.5.xml:733 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -3226,7 -3226,7 +3236,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:729 ++#: apt.conf.5.xml:741 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -3243,7 -3243,7 +3253,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:744 ++#: apt.conf.5.xml:756 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -3254,7 -3254,7 +3264,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:751 ++#: apt.conf.5.xml:763 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -3264,7 -3264,7 +3274,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> --#: apt.conf.5.xml:764 ++#: apt.conf.5.xml:776 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -3276,7 -3276,7 +3286,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:757 ++#: apt.conf.5.xml:769 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -3290,12 -3290,12 +3300,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:777 ++#: apt.conf.5.xml:789 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:778 ++#: apt.conf.5.xml:790 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -3304,12 -3304,12 +3314,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:786 ++#: apt.conf.5.xml:798 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:788 ++#: apt.conf.5.xml:800 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -3320,7 -3320,7 +3330,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:799 ++#: apt.conf.5.xml:811 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -3328,7 -3328,7 +3338,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:807 ++#: apt.conf.5.xml:819 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -3336,7 -3336,7 +3346,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:816 ++#: apt.conf.5.xml:828 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -3346,66 -3346,66 +3356,66 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> --#: apt.conf.5.xml:824 ++#: apt.conf.5.xml:836 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:834 ++#: apt.conf.5.xml:846 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:843 ++#: apt.conf.5.xml:855 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:854 ++#: apt.conf.5.xml:866 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:865 ++#: apt.conf.5.xml:877 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:876 ++#: apt.conf.5.xml:888 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:887 ++#: apt.conf.5.xml:899 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:898 ++#: apt.conf.5.xml:910 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:908 ++#: apt.conf.5.xml:920 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:918 ++#: apt.conf.5.xml:930 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:928 ++#: apt.conf.5.xml:940 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -3413,53 -3413,53 +3423,53 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:939 ++#: apt.conf.5.xml:951 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:951 ++#: apt.conf.5.xml:963 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:961 ++#: apt.conf.5.xml:973 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:971 ++#: apt.conf.5.xml:983 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:983 ++#: apt.conf.5.xml:995 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:994 ++#: apt.conf.5.xml:1006 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1005 ++#: apt.conf.5.xml:1017 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1015 ++#: apt.conf.5.xml:1027 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -3469,7 -3469,7 +3479,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1029 ++#: apt.conf.5.xml:1041 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -3487,46 -3487,46 +3497,46 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1050 ++#: apt.conf.5.xml:1062 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1061 ++#: apt.conf.5.xml:1073 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1072 ++#: apt.conf.5.xml:1084 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1084 ++#: apt.conf.5.xml:1096 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1095 ++#: apt.conf.5.xml:1107 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1105 ++#: apt.conf.5.xml:1117 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1116 ++#: apt.conf.5.xml:1128 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -3534,21 -3534,21 +3544,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> --#: apt.conf.5.xml:1128 ++#: apt.conf.5.xml:1140 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><title> --#: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 ++#: apt.conf.5.xml:1162 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 #, fuzzy msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1151 ++#: apt.conf.5.xml:1163 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -3556,7 -3556,7 +3566,7 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> --#: apt.conf.5.xml:1163 ++#: apt.conf.5.xml:1175 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" diff --combined po/apt-all.pot index fd772e275,690908054..8ff4bb5f5 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@@ -5,9 -5,9 +5,9 @@@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 0.9.7.8\n" +"Project-Id-Version: apt 0.9.7.9~exp1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@@ -569,7 -569,7 +569,7 @@@ msgstr " msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@@ -743,7 -743,7 +743,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "" @@@ -1041,7 -1041,7 +1041,8 @@@ msgid "%s was already not hold.\n msgstr "" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" @@@ -1244,7 -1244,7 +1245,7 @@@ msgstr " msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@@ -1271,90 -1271,85 +1272,90 @@@ msgstr " msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1392,43 -1387,43 +1393,43 @@@ msgstr " msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "" @@@ -1664,87 -1659,87 +1665,87 @@@ msgstr " msgid "Unable to get a cursor" msgstr "" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2065,30 -2060,30 +2066,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "" @@@ -2158,16 -2153,6 +2159,16 @@@ msgstr " msgid "%c%s... Done" msgstr "" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2279,17 -2264,17 +2280,17 @@@ msgstr " msgid "Sub-process %s received signal %u." msgstr "" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "" @@@ -2336,6 -2321,6 +2337,12 @@@ msgstr " msgid "Problem syncing the file" msgstr "" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "" @@@ -2554,17 -2539,17 +2561,17 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2730,8 -2715,8 +2737,8 @@@ msgstr " msgid "MD5Sum mismatch" msgstr "" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "" @@@ -2763,7 -2748,7 +2770,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2771,56 -2756,56 +2778,56 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "" @@@ -2912,22 -2897,22 +2919,22 @@@ msgstr " msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -2942,17 -2927,17 +2949,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3016,7 -3001,7 +3012,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ar.po index 7c9ea1d11,010860af2..f61ab4288 --- a/po/ar.po +++ b/po/ar.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n" "Language-Team: Arabic <support@arabeyes.org>\n" @@@ -582,7 -582,7 +582,7 @@@ msgstr "إجهاض. msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]؟" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "فشل إحضار %s %s\n" @@@ -761,7 -761,7 +761,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "حساب الترقية..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "فشل" @@@ -1062,7 -1062,7 +1062,8 @@@ msgid "%s was already not hold.\n msgstr "%s هي النسخة الأحدث.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" @@@ -1269,7 -1269,7 +1270,7 @@@ msgstr " msgid "Unable to accept connection" msgstr "تعذر قبول الاتصال" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@@ -1296,90 -1296,85 +1297,90 @@@ msgstr "استعلام msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "الاتصال بـ%s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "الاتصال بـ%s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "تعذر الاتصال بـ%s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1417,43 -1412,43 +1418,43 @@@ msgstr "خادم http له دعم مد٠msgid "Unknown date format" msgstr "نسق تاريخ مجهول" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "فشل التحديد" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "انتهى وقت الاتصال" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "خطأ في الكتابة إلى ملف المُخرجات" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "خطأ في القراءة من الخادم" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "بيانات ترويسة سيئة" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "فشل الاتصال" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "خطأ داخلي" @@@ -1691,87 -1686,87 +1692,87 @@@ msgstr " msgid "Unable to get a cursor" msgstr "" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: تعذرت قراءة الدليل %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "فشل فتح %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** فشل ربط %s بـ%s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2095,30 -2090,30 +2096,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "تعذر العثور على التحديد %s" @@@ -2188,16 -2183,6 +2189,16 @@@ msgstr "%c%s... خطأ! msgid "%c%s... Done" msgstr "%c%s... تمّ" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... تمّ" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2309,17 -2294,17 +2310,17 @@@ msgstr " msgid "Sub-process %s received signal %u." msgstr "" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "" @@@ -2366,6 -2351,6 +2367,12 @@@ msgstr "مشكلة في إغلاق ال msgid "Problem syncing the file" msgstr "مشكلة في مزامنة الملف" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "إجهاض التثبيت." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "" @@@ -2585,17 -2570,17 +2592,17 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2761,8 -2746,8 +2768,8 @@@ msgstr "فشل إعادة Ø§Ù„ØªØ³Ù…ÙŠØ msgid "MD5Sum mismatch" msgstr "MD5Sum غير متطابقة" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum غير متطابقة" @@@ -2795,7 -2780,7 +2802,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2803,56 -2788,56 +2810,56 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "الحجم غير متطابق" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "لاحظ، تحديد %s بدلاً من %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "لاحظ، تحديد %s بدلاً من %s\n" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" @@@ -2947,22 -2932,22 +2954,22 @@@ msgstr "كتابة لائحة Ø§Ù„Ù…ØµØ msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -2977,17 -2962,17 +2984,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "MD5Sum غير متطابقة" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "إجهاض التثبيت." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3051,7 -3036,7 +3047,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ast.po index 908155a66,df41c82cc..dfdf26fdf --- a/po/ast.po +++ b/po/ast.po @@@ -4,7 -4,7 +4,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (ast)\n" @@@ -628,7 -628,7 +628,7 @@@ msgstr "Encaboxar. msgid "Do you want to continue [Y/n]? " msgstr "¿Quies continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falló algamar %s %s\n" @@@ -820,7 -820,7 +820,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calculando l'anovamientu... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falló" @@@ -1189,7 -1189,7 +1189,8 @@@ msgid "%s was already not hold.\n msgstr "%s yá ta na versión más nueva.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero nun taba ellí" @@@ -1396,7 -1396,7 +1397,7 @@@ msgstr "Gandió'l tiempu de conexón co msgid "Unable to accept connection" msgstr "Nun se pudo aceptar la conexón" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Hebo un problema al xenerar el hash del ficheru" @@@ -1423,91 -1423,86 +1424,91 @@@ msgstr "Consulta msgid "Unable to invoke " msgstr "Nun se pudo invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Coneutando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nun se pudo coneutar a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nun se pudo coneutar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Coneutando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nun se pudo resolver '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Fallu temporal al resolver '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nun pudo coneutase a %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Atopóse polo menos una robla mala." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Fallu desconocíu al executar gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Les siguientes robles nun valieron:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1547,43 -1542,43 +1548,43 @@@ msgstr "Esti sirvidor HTTP tien rotu'l msgid "Unknown date format" msgstr "Formatu de data desconocíu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Falló la escoyeta" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Gandió'l tiempu de conexón" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fallu al escribir nel ficheru de salida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fallu al lleer nel sirvidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Datos de testera incorreutos" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Fallo la conexón" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Fallu internu" @@@ -1880,87 -1875,87 +1881,87 @@@ msgstr "L'archivu nun tien rexistru de msgid "Unable to get a cursor" msgstr "Nun pudo algamase un cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nun pudo lleese'l direutoriu %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nun pudo lleese %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al ficheru " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Nun pudo resolvese %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Falló'l percorríu pol árbol" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Nun pudo abrise %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Desenllazar %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Nun pudo lleese l'enllaz %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Nun pudo desenllazase %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falló enllazar enllazr %s a %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Alcanzose'l llímite of %sB de desenllaz.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "L'archivu nun tien el campu paquetes" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nun tien la entrada saltos\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el curiador de %s ye %s y non %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nun tien la entrada saltos de fonte\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco nun tiene una entrada binaria de saltos\n" @@@ -2309,30 -2304,30 +2310,30 @@@ msgstr " "desactivao pol usuariu." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Escoyeta %s que nun s'atopa" @@@ -2405,16 -2400,6 +2406,16 @@@ msgstr "%c%s... ¡Fallu! msgid "%c%s... Done" msgstr "%c%s... Fecho" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fecho" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2526,17 -2511,17 +2527,17 @@@ msgstr "El subprocesu %s recibió un fa msgid "Sub-process %s received signal %u." msgstr "El subprocesu %s recibió una señal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "El subprocesu %s devolvió un códigu d'error (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subprocesu %s terminó de manera inesperada" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nun se pudo abrir el ficheru %s" @@@ -2583,6 -2568,6 +2584,12 @@@ msgstr "Hai problemes desvenceyando'l f msgid "Problem syncing the file" msgstr "Hai problemes al sincronizar el ficheru" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "L'aniellu de claves nun s'instaló en %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Caché de paquetes balera." @@@ -2811,7 -2796,7 +2818,7 @@@ msgid " msgstr "" "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2819,11 -2804,11 +2826,11 @@@ msgstr " "Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " "mor de paquetes reteníos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2995,8 -2980,8 +3002,8 @@@ msgstr "falló'l cambiu de nome, %s (% msgid "MD5Sum mismatch" msgstr "La suma MD5 nun concasa" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "La suma hash nun concasa" @@@ -3028,7 -3013,7 +3035,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3038,12 -3023,12 +3045,12 @@@ msgstr " "anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Fallu GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3052,7 -3037,7 +3059,7 @@@ msgstr " "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " "necesites iguar manualmente esti paquete (por faltar una arquitectura)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3061,7 -3046,7 +3068,7 @@@ msgstr " "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " "necesites iguar manualmente esti paquete" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3069,31 -3054,31 +3076,31 @@@ msgstr " "Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal " "paquete %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "El tamañu nun concasa" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Nun se pudo parchear el ficheru release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Ensin seiciones nel ficheru release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ensin entrada Hash nel ficheru release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Entrada inválida pa 'Date' nel ficheru release %s" @@@ -3193,22 -3178,22 +3200,22 @@@ msgstr "Escribiendo llista nueva d'orí msgid "Source list entries for this disc are:\n" msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i rexistros escritos.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i rexistros escritos con %i ficheros de menos.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3225,17 -3210,17 +3232,6 @@@ msgstr "Nun puede alcontrase'l rexistr msgid "Hash mismatch for: %s" msgstr "El hash nun concasa pa: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "L'aniellu de claves nun s'instaló en %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3307,7 -3292,7 +3303,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/bg.po index f43ae7530,dfcebd630..f302170a3 --- a/po/bg.po +++ b/po/bg.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@@ -638,7 -638,7 +638,7 @@@ msgstr "Прекъсване. msgid "Do you want to continue [Y/n]? " msgstr "Искате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Неуспех при изтеглянето на %s %s\n" @@@ -831,7 -831,7 +831,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Неуспех" @@@ -1202,7 -1202,7 +1202,8 @@@ msgid "%s was already not hold.\n msgstr "Пакетът „%s“ вече е задържан.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Изчака се завършването на %s, но той не беше пуснат" @@@ -1430,7 -1430,7 +1431,7 @@@ msgstr "Времето за устанРmsgid "Unable to accept connection" msgstr "Невъзможно е да се приеме свързването" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблем при хеширане на файла" @@@ -1457,94 -1457,89 +1458,94 @@@ msgstr "Запитване msgid "Unable to invoke " msgstr "Неуспех при извикването на " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Свързване с %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Не може да се започне свързване с %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Свързване с %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Неуспех при намирането на IP адреса на „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Временен неуспех при намирането на IP адреса на „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Неуспех при свързване с %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " "ключа?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Намерен е поне един невалиден подпис." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " "gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Неизвестна грешка при изпълнението на gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Следните подписи са невалидни:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1584,43 -1579,43 +1585,43 @@@ msgstr "HTTP сървърът няма msgid "Unknown date format" msgstr "Неизвестен формат на дата" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Неуспех на избора" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Допустимото време за свързване изтече" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Грешка при записа на изходен файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Грешка при записа на файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Грешка при записа на файла" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Грешка при четене от сървъра" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Невалидни данни на заглавната част" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Неуспех при свързването" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Вътрешна грешка" @@@ -1919,87 -1914,87 +1920,87 @@@ msgstr "В архива няма пол msgid "Unable to get a cursor" msgstr "Неуспех при получаването на курсор" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Неуспех при четенето на директория %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Неуспех при четенето на %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Грешките се отнасят за файла " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Неуспех при превръщането на %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Неуспех при обхода на дървото" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Неуспех при отварянето на %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Неуспех при прочитането на връзка %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Неуспех при премахването на връзка %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Неуспех при създаването на връзка %s към %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "Превишен лимит на DeLink от %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Архивът няма поле „package“" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s няма запис „override“\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " поддържащия пакета %s е %s, а не %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s няма запис „source override“\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s няма също и запис „binary override“\n" @@@ -2347,30 -2342,30 +2348,30 @@@ msgstr " "забранено от потребителя." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liч %liм %liс" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%liч %liм %liс" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%liм %liс" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%liс" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Изборът %s не е намерен" @@@ -2443,16 -2438,6 +2444,16 @@@ msgstr "%c%s... Грешка! msgid "%c%s... Done" msgstr "%c%s... Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Готово" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2567,17 -2552,17 +2568,17 @@@ msgstr "Нарушение на защРmsgid "Sub-process %s received signal %u." msgstr "Под-процесът %s получи сигнал %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Подпроцесът %s върна код за грешка (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Подпроцесът %s завърши неочаквано" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Неуспех при отварянето на файла %s" @@@ -2625,6 -2610,6 +2626,12 @@@ msgstr "Проблем при изтрРmsgid "Problem syncing the file" msgstr "Проблем при синхронизиране на файла" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "В %s няма инсталиран ключодържател." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Празен кеш на пакети" @@@ -2858,7 -2843,7 +2865,7 @@@ msgstr " "Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " "него." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2866,12 -2851,12 +2873,12 @@@ msgstr " "Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " "причинено от задържани пакети." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3049,8 -3034,8 +3056,8 @@@ msgstr "преименуването с msgid "MD5Sum mismatch" msgstr "Несъответствие на контролна сума MD5" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Несъответствие на контролната сума" @@@ -3086,7 -3071,7 +3093,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3096,12 -3081,12 +3103,12 @@@ msgstr " "използват старите индексни файлове. Грешка от GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Грешка от GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3110,7 -3095,7 +3117,7 @@@ msgstr " "Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " "ръчно да оправите този пакет (поради пропусната архитектура)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3119,38 -3104,38 +3126,38 @@@ msgstr " "Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " "ръчно да оправите този пакет." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Несъответствие на размера" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Неуспех при анализиране на файл Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Във файла Release %s липсват раздели" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Във файла Release %s липсва контролна сума" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Неправилна стойност за „Valid-Until“ във файла Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Неправилна стойност за „Date“ във файла Release %s" @@@ -3250,22 -3235,22 +3257,22 @@@ msgstr "Запазване на новРmsgid "Source list entries for this disc are:\n" msgstr "Записите в списъка с източници за този диск са:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Записани са %i записа.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записани са %i записа с %i липсващи файла.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записани са %i записа с %i несъответстващи файла\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" @@@ -3280,17 -3265,17 +3287,6 @@@ msgstr "Не е намерен oторРmsgid "Hash mismatch for: %s" msgstr "Несъответствие на контролната сума за: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Файлът %s не започва с информация за подписване в обикновен текст." -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "В %s няма инсталиран ключодържател." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3364,7 -3349,7 +3360,7 @@@ msgstr " "Външната програма за удовлетворяване на зависимости се провали без да изведе " "съобщение за грешка" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" @@@ -3534,6 -3519,6 +3530,9 @@@ msgstr " msgid "Not locked" msgstr "Без заключване" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Файлът %s не започва с информация за подписване в обикновен текст." ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Пропускане на несъществуващ файл %s" diff --combined po/bs.po index bce21d794,92371278a..2e2dd1192 --- a/po/bs.po +++ b/po/bs.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Å ećerović <sapphire@linux.org.ba>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@@ -587,7 -587,7 +587,7 @@@ msgstr "Odustani. msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@@ -762,7 -762,7 +762,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "NeuspjeÅ¡no" @@@ -1060,7 -1060,7 +1060,8 @@@ msgid "%s was already not hold.\n msgstr "" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" @@@ -1266,7 -1266,7 +1267,7 @@@ msgstr " msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@@ -1293,91 -1293,86 +1294,91 @@@ msgstr " msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Povezujem se sa %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ne mogu se povezati sa %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Slijedeći dodatni paketi će biti instalirani:" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1415,43 -1410,43 +1416,43 @@@ msgstr " msgid "Unknown date format" msgstr "Nepoznat oblik datuma" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Povezivanje neuspjeÅ¡no" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "UnutraÅ¡nja greÅ¡ka" @@@ -1688,87 -1683,87 +1689,87 @@@ msgstr "Arhiva nema kontrolnog zapisa msgid "Unable to get a cursor" msgstr "" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Ne mogu otvoriti %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2092,30 -2087,30 +2093,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "" @@@ -2185,16 -2180,6 +2186,16 @@@ msgstr " msgid "%c%s... Done" msgstr "" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2306,17 -2291,17 +2307,17 @@@ msgstr " msgid "Sub-process %s received signal %u." msgstr "" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "" @@@ -2363,6 -2348,6 +2364,12 @@@ msgstr " msgid "Problem syncing the file" msgstr "" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Odustajem od instalacije." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "" @@@ -2583,17 -2568,17 +2590,17 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2759,8 -2744,8 +2766,8 @@@ msgstr " msgid "MD5Sum mismatch" msgstr "" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "" @@@ -2792,7 -2777,7 +2799,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2800,56 -2785,56 +2807,56 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Ne mogu otvoriti DB datoteku %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ne mogu otvoriti DB datoteku %s" @@@ -2944,22 -2929,22 +2951,22 @@@ msgstr " msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -2974,17 -2959,17 +2981,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Odustajem od instalacije." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3048,7 -3033,7 +3044,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ca.po index 64af4e6f4,8eaa638a7..b99734771 --- a/po/ca.po +++ b/po/ca.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@@ -639,7 -639,7 +639,7 @@@ msgstr "Avortat. msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" @@@ -835,7 -835,7 +835,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització… " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Ha fallat" @@@ -1210,7 -1210,7 +1210,8 @@@ msgid "%s was already not hold.\n msgstr "%s ja estava no retingut.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperava %s però no hi era" @@@ -1418,7 -1418,7 +1419,7 @@@ msgstr "S'ha esgotat el temps de connex msgid "Unable to accept connection" msgstr "No es pot acceptar la connexió" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema escollint el fitxer" @@@ -1445,94 -1445,89 +1446,94 @@@ msgstr "Consulta msgid "Unable to invoke " msgstr "No es pot invocar" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "S'està connectant amb %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "No es pot iniciar la connexió amb %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "S'està connectant amb %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "No s'ha pogut resoldre «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "S'ha produït un error temporal en resoldre «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "No es pot connectar amb %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error intern: La signatura és correcta, però no s'ha pogut determinar " "l'emprempta digital de la clau!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "S'ha trobat almenys una signatura invàlida." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "No s'ha pogut executar el «gpgv» per a verificar la signatura (està " "instaŀlat el gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "S'ha produït un error desconegut en executar el gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Les signatures següents són invàlides:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1572,44 -1567,44 +1573,44 @@@ msgstr "Aquest servidor HTTP té el sup msgid "Unknown date format" msgstr "Format de la data desconegut" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Ha fallat la selecció" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Connexió finalitzada" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "S'ha produït un error en llegir, el servidor remot ha tancat la connexió" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "S'ha produït un error en llegir des del servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Capçalera de dades no vàlida" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Ha fallat la connexió" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Error intern" @@@ -1905,87 -1900,87 +1906,87 @@@ msgstr "Arxiu sense registre de control msgid "Unable to get a cursor" msgstr "No es pot aconseguir un cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No es pot llegir el directori %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No es pot veure l'estat %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Els errors s'apliquen al fitxer " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "No s'ha pogut resoldre %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "L'arbre està fallant" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "No s'ha pogut obrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "No s'ha pogut llegir l'enllaç %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "No s'ha pogut alliberar %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No s'ha pogut enllaçar %s a %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink s'ha arribat al límit de %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arxiu sense el camp paquet" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s no té una entrada dominant\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el mantenidor de %s és %s, no %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s no té una entrada dominant de font\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s no té una entrada dominant de binari\n" @@@ -2333,30 -2328,30 +2334,30 @@@ msgstr " "està deshabilitat per l'usuari." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "No s'ha trobat la selecció %s" @@@ -2428,16 -2423,6 +2429,16 @@@ msgstr "%c%s… Error! msgid "%c%s... Done" msgstr "%c%s… Fet" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2554,17 -2539,17 +2555,17 @@@ msgstr "El sub-procés %s ha rebut una msgid "Sub-process %s received signal %u." msgstr "El sub-procés %s ha rebut un senyal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "El sub-procés %s ha retornat un codi d'error (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El sub-procés %s ha sortit inesperadament" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "No s'ha pogut obrir el fitxer %s" @@@ -2611,6 -2596,6 +2612,12 @@@ msgstr "Ha hagut un problema en desenll msgid "Problem syncing the file" msgstr "Ha hagut un problema en sincronitzar el fitxer" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "No s'ha instaŀlat cap clauer a %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Memòria cau de paquets és buida" @@@ -2839,7 -2824,7 +2846,7 @@@ msgid " msgstr "" "El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2847,13 -2832,13 +2854,13 @@@ msgstr " "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " "causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No es poden corregir els problemes, teniu paquets retinguts que estan " "trencats." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3032,8 -3017,8 +3039,8 @@@ msgstr "no s'ha pogut canviar el nom, % msgid "MD5Sum mismatch" msgstr "La suma MD5 no concorda" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "La suma resum no concorda" @@@ -3069,7 -3054,7 +3076,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3080,12 -3065,12 +3087,12 @@@ msgstr " "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "S'ha produït un error amb el GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3095,7 -3080,7 +3102,7 @@@ msgstr " "significar que haureu d'arreglar aquest paquet manualment (segons " "arquitectura)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3104,7 -3089,7 +3111,7 @@@ msgstr " "No s'ha trobat un fitxer pel paquet %s. Això podria significar que haureu " "d'arreglar aquest paquet manualment." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3112,31 -3097,31 +3119,31 @@@ msgstr " "L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " "per al paquet %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "La mida no concorda" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "No es pot analitzar el fitxer Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "No hi ha seccions al fitxer Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "No hi ha una entrada Hash al fitxer Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "El camp «Date» al fitxer Release %s és invàlid" @@@ -3236,22 -3221,22 +3243,22 @@@ msgstr "S'està escrivint una nova llis msgid "Source list entries for this disc are:\n" msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "S'han escrit %i registres.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "S'han escrit %i registres, on falten %i fitxers.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3268,17 -3253,17 +3275,6 @@@ msgstr "No s'ha pogut trobar el registr msgid "Hash mismatch for: %s" msgstr "El resum no coincideix per a: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "El fitxer %s no comença amb un missatge signat en clar" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "No s'ha instaŀlat cap clauer a %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3352,7 -3337,7 +3348,7 @@@ msgstr "Prepara per a rebre una solucià msgid "External solver failed without a proper error message" msgstr "El resoledor extern ha fallat sense un missatge d'error adient" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Executa un resoledor extern" @@@ -3519,6 -3504,6 +3515,9 @@@ msgstr " msgid "Not locked" msgstr "No blocat" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "El fitxer %s no comença amb un missatge signat en clar" ++ #~ msgid "decompressor" #~ msgstr "decompressor" diff --combined po/cs.po index df8f64b31,9e37a046e..5c17539b8 --- a/po/cs.po +++ b/po/cs.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@@ -626,7 -626,7 +626,7 @@@ msgstr "PřeruÅ¡eno. msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovat [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo stažení %s %s\n" @@@ -823,7 -823,7 +823,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Propočítávám aktualizaci… " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Selhalo" @@@ -1185,7 -1185,7 +1185,8 @@@ msgid "%s was already not hold.\n msgstr "%s již nebyl držen v aktuální verzi.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Čekal jsem na %s, ale nebyl tam" @@@ -1410,7 -1410,7 +1411,7 @@@ msgstr "Spojení datového socketu vypr msgid "Unable to accept connection" msgstr "Nelze přijmout spojení" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problém s kontrolním součtem souboru" @@@ -1437,90 -1437,85 +1438,90 @@@ msgstr "Dotaz msgid "Unable to invoke " msgstr "Nelze vyvolat " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Připojuji se k %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nelze navázat spojení na %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nelze se připojit k %s:%s (%s), čas spojení vyprÅ¡el" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nelze se připojit k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Připojuji se k %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nelze přeložit „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Dočasné selhání při zjišťování „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Něco hodně oÅ¡klivého se přihodilo při překladu „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Něco hodně oÅ¡klivého se přihodilo při překladu „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nelze se připojit k %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Byl zaznamenán nejméně jeden neplatný podpis. " --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Nelze spustit „gpgv“ pro ověření podpisu (je gpgv nainstalováno?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Neznámá chyba při spouÅ¡tění gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Následující podpisy jsou neplatné:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1560,43 -1555,43 +1561,43 @@@ msgstr "Tento HTTP server má porouchan msgid "Unknown date format" msgstr "Neznámý formát data" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Výběr selhal" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Čas spojení vyprÅ¡el" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupního souboru" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Chyba čtení ze serveru" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Å patné datové záhlaví" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Spojení selhalo" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vnitřní chyba" @@@ -1885,87 -1880,87 +1886,87 @@@ msgstr "Archiv nemá kontrolní záznam msgid "Unable to get a cursor" msgstr "Nelze získat kurzor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nelze číst adresář %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nelze vyhodnotit %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Chyby se týkají souboru " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Chyba při zjišťování %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Průchod stromem selhal" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Nelze otevřít %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "Odlinkování %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Nelze přečíst link %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Nelze odlinkovat %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nezdařilo se slinkovat %s s %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Odlinkovací limit %sB dosažen.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archiv nemá pole Package" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žádnou položku pro override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správce %s je %s, ne %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žádnou zdrojovou položku pro override\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá ani žádnou binární položku pro override\n" @@@ -2310,30 -2305,30 +2311,30 @@@ msgstr " "zakázáno." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Výběr %s nenalezen" @@@ -2406,16 -2401,6 +2407,16 @@@ msgstr "%c%s… Chyba! msgid "%c%s... Done" msgstr "%c%s… Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2527,17 -2512,17 +2528,17 @@@ msgstr "Podproces %s obdržel chybu seg msgid "Sub-process %s received signal %u." msgstr "Podproces %s obdržel signál %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Podproces %s vrátil chybový kód (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neočekávaně skončil" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nelze otevřít soubor %s" @@@ -2584,6 -2569,6 +2585,12 @@@ msgstr "Problém při odstraňování s msgid "Problem syncing the file" msgstr "Problém při synchronizování souboru" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "V %s není nainstalována žádná klíčenka." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache balíků je prázdná" @@@ -2807,7 -2792,7 +2814,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2815,11 -2800,11 +2822,11 @@@ msgstr " "Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " "podrženými balíky." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2990,8 -2975,8 +2997,8 @@@ msgstr "přejmenování selhalo, %s (% msgid "MD5Sum mismatch" msgstr "Neshoda MD5 součtů" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Neshoda kontrolních součtů" @@@ -3027,7 -3012,7 +3034,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3037,12 -3022,12 +3044,12 @@@ msgstr " "se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3051,7 -3036,7 +3058,7 @@@ msgstr " "Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento " "balík je třeba opravit ručně (kvůli chybějící architektuře)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3060,38 -3045,38 +3067,38 @@@ msgstr " "Nebylo možné nalézt soubor s balíkem %s. Asi budete muset tento balík " "opravit ručně." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Indexové soubory balíku jsou naruÅ¡eny. Chybí pole Filename: u balíku %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Velikosti nesouhlasí" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Nelze zpracovat Release soubor %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Release soubor %s neobsahuje žádné sekce" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release soubor %s neobsahuje Hash záznam" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Neplatná položka „Valid-Until“ v Release souboru %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Neplatná položka „Date“ v Release souboru %s" @@@ -3191,22 -3176,22 +3198,22 @@@ msgstr "Zapisuji nový seznam balíků\ msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Zapsáno %i záznamů.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapsáno %i záznamů s chybějícími soubory (%i).\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n" @@@ -3221,17 -3206,17 +3228,6 @@@ msgstr "Nelze najít autentizační zá msgid "Hash mismatch for: %s" msgstr "Neshoda kontrolních součtů pro: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Soubor %s nezačíná podpisem" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "V %s není nainstalována žádná klíčenka." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3297,7 -3282,7 +3293,7 @@@ msgstr "Příprava na obdržení řeÅ¡e msgid "External solver failed without a proper error message" msgstr "Externí řeÅ¡itel selhal, aniž by zanechal rozumnou chybovou hlášku" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "SpuÅ¡tění externího řeÅ¡itele" @@@ -3459,6 -3444,6 +3455,9 @@@ msgstr "dpkg byl přeruÅ¡en, pro nápra msgid "Not locked" msgstr "Není uzamčen" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Soubor %s nezačíná podpisem" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Přeskakuji neexistující soubor %s" diff --combined po/cy.po index 3e684a489,d519064f4..82abc9ae7 --- a/po/cy.po +++ b/po/cy.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n" "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n" @@@ -663,7 -663,7 +663,7 @@@ msgstr "Erthylu. msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" @@@ -852,7 -852,7 +852,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Methwyd" @@@ -1208,7 -1208,7 +1208,8 @@@ msgid "%s was already not hold.\n msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, fuzzy, c-format msgid "Waited for %s but it wasn't there" msgstr "Arhoswyd am %s ond nid oedd e yna" @@@ -1422,7 -1422,7 +1423,7 @@@ msgstr "Goramserodd cysylltiad y soced msgid "Unable to accept connection" msgstr "Methwyd derbyn cysylltiad" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem wrth stwnshio ffeil" @@@ -1450,91 -1450,86 +1451,91 @@@ msgstr "Ymholiad msgid "Unable to invoke " msgstr "Methwyd gweithredu " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Yn cysylltu i %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Methwyd cysylltu i %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Yn cysylltu i %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Methwyd datrys '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Methiant dros dro yn datrys '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Methwyd cysylltu i %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1576,45 -1571,45 +1577,45 @@@ msgstr "Mae cynaliaeth amrediad y gwein msgid "Unknown date format" msgstr "Fformat dyddiad anhysbys" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Methwyd dewis" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Goramserodd y cysylltiad" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Gwall wrth ysgrifennu at ffeil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Gwall wrth ysgrifennu at y ffeil" -#: methods/http.cc:919 +#: methods/http.cc:923 #, 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:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Gwall wrth ddarllen o'r gweinydd" -#: methods/http.cc:1194 +#: methods/http.cc:1198 #, fuzzy msgid "Bad header data" msgstr "Data pennawd gwael" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Methodd y cysylltiad" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Gwall mewnol" @@@ -1908,88 -1903,88 +1909,88 @@@ msgstr "Does dim cofnod rheoli gan yr a msgid "Unable to get a cursor" msgstr "Ni ellir cael cyrchydd" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "Rh: Ni ellir gwneud stat() o %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "G: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "Rh: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "G: Mae gwallau yn cymhwyso i'r ffeil " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Methwyd datrys %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Methwyd cerdded y goeden" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Methwyd agor %s" # FIXME --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DatGysylltu %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Methwyd darllen y cyswllt %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Methwyd datgysylltu %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Methwyd cysylltu %s at %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Tarwyd y terfyn cyswllt %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Doedd dim maes pecyn gan yr archif" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Cynaliwr %s yw %s nid %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" @@@ -2344,30 -2339,30 +2345,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Ni chanfuwyd y dewis %s" @@@ -2440,16 -2435,6 +2441,16 @@@ msgstr "%c%s... Gwall! msgid "%c%s... Done" msgstr "%c%s... Wedi Gorffen" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Wedi Gorffen" + # FIXME #: apt-pkg/contrib/cmndline.cc:80 #, c-format @@@ -2563,17 -2548,17 +2564,17 @@@ msgstr "Derbyniodd is-broses %s wall se msgid "Sub-process %s received signal %u." msgstr "Derbyniodd is-broses %s wall segmentu." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Dychwelodd is-broses %s gôd gwall (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Gorffenodd is-broses %s yn annisgwyl" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Methwyd agor ffeil %s" @@@ -2622,6 -2607,6 +2623,12 @@@ msgstr "Gwall wrth dadgysylltu'r ffeil msgid "Problem syncing the file" msgstr "Gwall wrth gyfamseru'r ffeil" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Yn Erthylu'r Sefydliad." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Storfa pecyn gwag" @@@ -2858,7 -2843,7 +2865,7 @@@ msgstr " "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " "ei gyfer." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2866,12 -2851,12 +2873,12 @@@ msgstr " "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " "ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3051,8 -3036,8 +3058,8 @@@ msgstr "methwyd ailenwi, %s (%s -> %s). msgid "MD5Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" @@@ -3086,7 -3071,7 +3093,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3094,13 -3079,13 +3101,13 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" # FIXME: case --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3109,7 -3094,7 +3116,7 @@@ msgstr " "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " "drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3118,40 -3103,40 +3125,40 @@@ msgstr " "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " "drwsio'r pecyn hyn a law." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Camgyfatebiaeth maint" # FIXME: number? --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" # FIXME: number? --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" @@@ -3247,22 -3232,22 +3254,22 @@@ msgstr "Llinell %u yn rhy hir yn y rhes msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3277,17 -3262,17 +3284,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Camgyfatebiaeth swm MD5" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Yn Erthylu'r Sefydliad." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3351,7 -3336,7 +3347,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/da.po index 4ca0c0711,fe982be16..9f98df6a7 --- a/po/da.po +++ b/po/da.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-07-03 23:51+0200\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n" @@@ -635,7 -635,7 +635,7 @@@ msgstr "Afbryder. msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsætte [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" @@@ -829,7 -829,7 +829,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislykkedes" @@@ -1191,7 -1191,7 +1191,8 @@@ msgid "%s was already not hold.\n msgstr "%s var allerede ikke i bero.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Ventede pÃ¥ %s, men den var der ikke" @@@ -1418,7 -1418,7 +1419,7 @@@ msgstr "Tidsudløb pÃ¥ datasokkel-forbi msgid "Unable to accept connection" msgstr "Kunne ikke acceptere forbindelse" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved \"hashing\" af fil" @@@ -1445,92 -1445,87 +1446,92 @@@ msgstr "Forespørgsel msgid "Unable to invoke " msgstr "Kunne ikke udføre " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Forbinder til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Forbinder til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kunne ikke omsætte navnet '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Midlertidig fejl ved omsætning af navnet '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Der skete noget underligt under opløsning af '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Der skete noget underligt under opløsning af '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kunne ikke forbinde til %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Stødte pÃ¥ mindst én ugyldig signatur." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Kunne ikke køre 'gpgv' for at verificere signaturen (er gpgv installeret?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Ukendt fejl ved kørsel af gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Følgende signaturer var ugyldige:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1571,43 -1566,43 +1572,43 @@@ msgstr " msgid "Unknown date format" msgstr "Ukendt datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Valg mislykkedes" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsudløb pÃ¥ forbindelsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fejl ved skrivning af uddatafil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fejl ved skrivning til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fejl ved skrivning til filen" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fejl ved læsning fra server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ugyldige hoved-data" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Forbindelsen mislykkedes" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern fejl" @@@ -1902,87 -1897,87 +1903,87 @@@ msgstr "Arkivet har ingen kontrolindgan msgid "Unable to get a cursor" msgstr "Kunne skaffe en markør" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Kunne ikke læse mappen %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Kunne ikke finde %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Fejlene vedrører filen " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Kunne ikke omsætte navnet %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Trævandring mislykkedes" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Kunne ikke Ã¥bne %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Kunne ikke »readlink« %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Kunne ikke frigøre %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Kunne ikke lænke %s til %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " NÃ¥ede DeLink-begrænsningen pÃ¥ %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arkivet havde intet package-felt" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen tvangs-post\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " pakkeansvarlig for %s er %s, ikke %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2333,30 -2328,30 +2334,30 @@@ msgstr " "bruger." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Det valgte %s blev ikke fundet" @@@ -2426,16 -2421,6 +2427,16 @@@ msgstr "%c%s... Fejl! msgid "%c%s... Done" msgstr "%c%s... Færdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Færdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2547,17 -2532,17 +2548,17 @@@ msgstr "Underprocessen %s modtog en seg msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s modtog en signal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s returnerede en fejlkode (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s afsluttedes uventet" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Kunne ikke Ã¥bne filen %s" @@@ -2604,6 -2589,6 +2605,12 @@@ msgstr "Fejl ved frigivelse af filen %s msgid "Problem syncing the file" msgstr "Problem under synkronisering af fil" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Ingen nøglering installeret i %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Tomt pakke-mellemlager" @@@ -2829,7 -2814,7 +2836,7 @@@ msgid " msgstr "" "Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2837,12 -2822,12 +2844,12 @@@ msgstr " "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " "tilbageholdte pakker." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3014,8 -2999,8 +3021,8 @@@ msgstr "omdøbning mislykkedes, %s (%s msgid "MD5Sum mismatch" msgstr "MD5Sum stemmer ikke" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hashsum stemmer ikke" @@@ -3052,7 -3037,7 +3059,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3062,12 -3047,12 +3069,12 @@@ msgstr " "og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fejl: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3076,7 -3061,7 +3083,7 @@@ msgstr " "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " "nødt til manuelt at reparere denne pakke. (grundet manglende arch)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3085,37 -3070,37 +3092,37 @@@ msgstr " "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " "nødt til manuelt at reparere denne pakke." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Pakkeindeksfilerne er i stykker. Intet 'Filename:'-felt for pakken %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Størrelsen stemmer ikke" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Kunne ikke fortolke udgivelsesfil %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Ingen afsnit i udgivelsesfil %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Intet hashpunkt i udgivelsesfil %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ugyldigt punkt 'Valid-Until' i udgivelsesfil %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ugyldigt punkt 'Date' i udgivelsesfil %s" @@@ -3215,22 -3200,22 +3222,22 @@@ msgstr "Skriver ny kildeliste\n msgid "Source list entries for this disc are:\n" msgstr "Denne disk har følgende kildeliste-indgange:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i ikke-trufne filer\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3245,17 -3230,17 +3252,6 @@@ msgstr "Kan ikke finde godkendelsesregi msgid "Hash mismatch for: %s" msgstr "Hashsum stemmer ikke: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Fil %s starter ikke med en »clearsigned« besked" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Ingen nøglering installeret i %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3323,7 -3308,7 +3319,7 @@@ msgstr "Forbered for modtagelse af løs msgid "External solver failed without a proper error message" msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Kør ekstern problemløser" @@@ -3483,6 -3468,6 +3479,9 @@@ msgstr "dpkg blev afbrudt, du skal manu msgid "Not locked" msgstr "Ikke lÃ¥st" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Fil %s starter ikke med en »clearsigned« besked" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Springer ikkeeksisterende fil over %s" diff --combined po/de.po index 604696146,b78679a6b..ac0ca11bb --- a/po/de.po +++ b/po/de.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@@ -648,7 -648,7 +648,7 @@@ msgstr "Abbruch. msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" @@@ -847,7 -847,7 +847,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Fehlgeschlagen" @@@ -1230,7 -1230,7 +1230,8 @@@ msgid "%s was already not hold.\n msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" @@@ -1462,7 -1462,7 +1463,7 @@@ msgstr "Zeitüberschreitung bei Datenve msgid "Unable to accept connection" msgstr "Verbindung konnte nicht angenommen werden." -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem bei Bestimmung des Hashwertes einer Datei" @@@ -1489,96 -1489,91 +1490,96 @@@ msgstr "Abfrage msgid "Unable to invoke " msgstr "Aufruf nicht möglich: " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Verbindung mit %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)." -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " "Zeitüberschreitung trat auf." -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Verbindung mit %s:%s nicht möglich (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Verbindung mit %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "»%s« konnte nicht aufgelöst werden." -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Verbindung mit %s:%s nicht möglich:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " "jedoch nicht ermittelt werden?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Mindestens eine ungültige Signatur wurde entdeckt." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " "installiert?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Unbekannter Fehler beim Ausführen von gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Die folgenden Signaturen waren ungültig:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1622,45 -1617,45 +1623,45 @@@ msgstr " msgid "Unknown date format" msgstr "Unbekanntes Datumsformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Auswahl fehlgeschlagen" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Zeitüberschreitung bei Verbindung" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fehler beim Schreiben der Ausgabedatei" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fehler beim Schreiben in Datei" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fehler beim Schreiben der Datei" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " "anderen Seite geschlossen." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fehler beim Lesen vom Server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Fehlerhafte Kopfzeilendaten" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Verbindung fehlgeschlagen" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Interner Fehler" @@@ -1964,87 -1959,87 +1965,87 @@@ msgstr "Archiv hat keinen Steuerungsdat msgid "Unable to get a cursor" msgstr "Unmöglich, einen Cursor zu bekommen" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Verzeichnis %s kann nicht gelesen werden.\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s mit »stat« abfragen nicht möglich.\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Fehler gehören zu Datei " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s konnte nicht aufgelöst werden." --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Durchlaufen des Verzeichnisbaums fehlgeschlagen" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Öffnen von %s fehlgeschlagen" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "readlink von %s fehlgeschlagen" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Entfernen (unlink) von %s fehlgeschlagen" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-Limit von %sB erreicht\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archiv hatte kein Feld »package«" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s hat keinen Eintrag in der Override-Liste.\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-Betreuer ist %s und nicht %s.\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n" @@@ -2394,30 -2389,30 +2395,30 @@@ msgstr " "MMap vom Benutzer deaktiviert ist." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li d %li h %li min %li s" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%li h %li min %li s" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%li min %li s" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%li s" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Auswahl %s nicht gefunden" @@@ -2489,16 -2484,6 +2490,16 @@@ msgstr "%c%s... Fehler! msgid "%c%s... Done" msgstr "%c%s... Fertig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fertig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2616,17 -2601,17 +2617,17 @@@ msgstr "Unterprozess %s hat einen Speic msgid "Sub-process %s received signal %u." msgstr "Unterprozess %s hat das Signal %u empfangen." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Unterprozess %s unerwartet beendet" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Datei %s konnte nicht geöffnet werden." @@@ -2677,6 -2662,6 +2678,12 @@@ msgstr "Problem beim Entfernen (unlink msgid "Problem syncing the file" msgstr "Problem beim Synchronisieren der Datei" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Kein Schlüsselring in %s installiert" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Leerer Paketzwischenspeicher" @@@ -2905,7 -2890,7 +2912,7 @@@ msgstr " "Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " "gefunden werden." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2913,13 -2898,13 +2920,13 @@@ msgstr " "Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " "dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " "Pakete." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3105,8 -3090,8 +3112,8 @@@ msgstr "Umbenennen fehlgeschlagen, %s ( msgid "MD5Sum mismatch" msgstr "MD5-Summe stimmt nicht überein" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash-Summe stimmt nicht überein" @@@ -3143,7 -3128,7 +3150,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3154,12 -3139,12 +3161,12 @@@ msgstr " "GPG-Fehler: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-Fehler: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3169,7 -3154,7 +3176,7 @@@ msgstr " "Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " "Architektur)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3178,38 -3163,38 +3185,38 @@@ msgstr " "Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " "Sie dieses Paket von Hand korrigieren müssen." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Größe stimmt nicht überein" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Release-Datei %s kann nicht verarbeitet werden." --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Keine Bereiche (Sections) in Release-Datei %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Kein Hash-Eintrag in Release-Datei %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" @@@ -3309,22 -3294,22 +3316,22 @@@ msgstr "Schreiben der neuen Quellliste\ msgid "Source list entries for this disc are:\n" msgstr "Quelllisteneinträge für dieses Medium sind:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Es wurden %i Datensätze geschrieben.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3341,17 -3326,17 +3348,6 @@@ msgstr "Authentifizierungs-Datensatz ko msgid "Hash mismatch for: %s" msgstr "Hash-Summe stimmt nicht überein für: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Datei %s beginnt nicht mit einer Klartext-signierten Nachricht." -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Kein Schlüsselring in %s installiert" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3426,7 -3411,7 +3422,7 @@@ msgid "External solver failed without msgstr "" "Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Externen Problemlöser ausführen" @@@ -3596,6 -3581,6 +3592,9 @@@ msgstr " msgid "Not locked" msgstr "Nicht gesperrt" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Datei %s beginnt nicht mit einer Klartext-signierten Nachricht." ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Nicht vorhandene Datei %s wird übersprungen." diff --combined po/dz.po index dd9947476,c6eea92bd..ac74061df --- a/po/dz.po +++ b/po/dz.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n" "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n" @@@ -645,7 -645,7 +645,7 @@@ msgstr "བར་བཤོལ་འབà msgid "Do you want to continue [Y/n]? " msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" @@@ -828,7 -828,7 +828,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" @@@ -1176,7 -1176,7 +1176,8 @@@ msgid "%s was already not hold.\n msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" @@@ -1384,7 -1384,7 +1385,7 @@@ msgstr "གནད་སྡུད་སà msgid "Unable to accept connection" msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" @@@ -1411,94 -1411,89 +1412,94 @@@ msgstr "འདྲི་དཔྱད། msgid "Unable to invoke " msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s་ལུ་མཐུད་དོ།" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" "མ་ཚུགས?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1537,43 -1532,43 +1538,43 @@@ msgstr "འ་ནི་ ཨེཆི་ msgid "Unknown date format" msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "ནང་འཁོད་འཛོལ་བ།" @@@ -1870,87 -1865,87 +1871,87 @@@ msgstr "ཡིག་མཛོད་འà msgid "Unable to get a cursor" msgstr "འོད་རྟགས་ལེན་མ་ཚུགས།" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "ཌབ་ལུ:%sསྣོད་ཐོ་འདི་ལྷག་མ་ཚུགས།\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "ཌབ་ལུ་ %s སིཊེཊི་འབད་མ་ཚུགས།\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "ཨི:" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "ཌབ་ལུ:" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "ཨི:འཛོལ་བ་ཚུ་ཡིག་སྣོད་ལུ་འཇུག་སྤྱོད་འབད།" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s་མོས་མཐུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "རྩ་འབྲེལ་ཕྱིར་བགྲོད་འབད་ནི་ལུ་འཐུ་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s་ལས་%sལུ་འབྲེལ་འཐུད་འབད་ནི་འཐུས་ཤོར་བྱུང་ཡོདཔ།" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམས།\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "ཡིག་མཛོད་ལུ་ཐུམ་སྒྲིལ་ཅི་ཡང་འཐུས་ཤོར་མ་བྱུང་།" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %sལུ་ཟུར་བཞག་ཐོ་བཀོད་མེད།\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ་རྒྱུན་སྐྱོང་པ་འདི་ %s ཨིན་ %s མེན།\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s ལུ་འབྱུང་ཁུངས་མེདཔ་གཏང་ནིའི་ཐོ་བཀོད་འདི་མེད།\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གཏང་ནིའི་་ཐོ་བཀོད་གང་རུང་ཡང་མིན་འདུག།\n" @@@ -2297,30 -2292,30 +2298,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" @@@ -2390,16 -2385,6 +2391,16 @@@ msgstr "%c%s... འཛོལ་བ་! msgid "%c%s... Done" msgstr "%c%s... འབད་ཚར་ཡོད།" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... འབད་ཚར་ཡོད།" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2512,17 -2497,17 +2513,17 @@@ msgstr "ཡན་ལག་ལས་སà msgid "Sub-process %s received signal %u." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" @@@ -2569,6 -2554,6 +2570,12 @@@ msgstr "ཡིག་སྣོད་འà msgid "Problem syncing the file" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" @@@ -2795,7 -2780,7 +2802,7 @@@ msgstr " "ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" "མ་ཐོབ།" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2803,11 -2788,11 +2810,11 @@@ msgstr " "འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" "སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2978,8 -2963,8 +2985,8 @@@ msgstr "%s (%s -> %s)བསྐྱར་ msgid "MD5Sum mismatch" msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" @@@ -3012,7 -2997,7 +3019,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3020,12 -3005,12 +3027,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3034,7 -3019,7 +3041,7 @@@ msgstr " " %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " "འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3043,38 -3028,38 +3050,38 @@@ msgstr " " %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " "འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག " --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "ཚད་མ་མཐུན།" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" @@@ -3171,22 -3156,22 +3178,22 @@@ msgstr "འབྱུང་ཁུངསà msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3203,17 -3188,17 +3210,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3277,7 -3262,7 +3273,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/el.po index f6252ed32,cadfdda02..8dea2d551 --- a/po/el.po +++ b/po/el.po @@@ -16,7 -16,7 +16,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης <natsisthanasis@gmail.com>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@@ -654,7 -654,7 +654,7 @@@ msgstr "Εγκατάλειψη. msgid "Do you want to continue [Y/n]? " msgstr "Θέλετε να συνεχίσετε [Ν/ο]; " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" @@@ -843,7 -843,7 +843,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Απέτυχε" @@@ -1197,7 -1197,7 +1197,8 @@@ msgid "%s was already not hold.\n msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" @@@ -1404,7 -1404,7 +1405,7 @@@ msgstr "Λήξη χρόνου σύνδΠmsgid "Unable to accept connection" msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Πρόβλημα κατά το hashing του αρχείου" @@@ -1431,95 -1431,90 +1432,95 @@@ msgstr "Επερώτηση msgid "Unable to invoke " msgstr "Αδύνατη η εκτέλεση" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Σύνδεση στο %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Σύνδεση στο %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Αδύνατη η εύρεση του '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Αδύνατη η σύνδεση στο %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του " "αποτυπώματος?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " "εγκατεστημένο το gpgv;)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1559,44 -1554,44 +1560,44 @@@ msgstr "Ο διακομιστής http msgid "Unknown date format" msgstr "Άγνωστη μορφή ημερομηνίας" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Η επιλογή απέτυχε" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Λήξη χρόνου σύνδεσης" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Η σύνδεση απέτυχε" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Εσωτερικό Σφάλμα" @@@ -1893,87 -1888,87 +1894,87 @@@ msgstr "Η αρχειοθήκη δεν msgid "Unable to get a cursor" msgstr "Αδύνατη η πρόσβαση σε δείκτη" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Αδύνατη η ανάγνωση του καταλόγου %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Αδύνατη η εύρεση της κατάστασης του %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Σφάλματα στο αρχείο" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Αδύνατη η εύρεση του %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Αποτυχία ανεύρεσης" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Αποτυχία ανοίγματος του %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "Αποσύνδεση %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Αποτυχία ανάγνωσης του %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Αποτυχία αποσύνδεσης του %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr " Αποτυχία σύνδεσης του %s με το %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Αποσύνδεση ορίου του %sB hit.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Η αρχειοθήκη δεν περιέχει πεδίο πακέτων" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s συντηρητής είναι ο %s όχι ο %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s δεν έχει εγγραφή πηγαίας παράκαμψης\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s δεν έχει ούτε εγγραφή δυαδικής παράκαμψης\n" @@@ -2320,30 -2315,30 +2321,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Η επιλογή %s δε βρέθηκε" @@@ -2415,16 -2410,6 +2416,16 @@@ msgstr "%c%s... Σφάλμα! msgid "%c%s... Done" msgstr "%c%s... Ολοκληρώθηκε" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Ολοκληρώθηκε" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2540,17 -2525,17 +2541,17 @@@ msgstr "Η υποδιεργασία %s msgid "Sub-process %s received signal %u." msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Αδύνατο το άνοιγμα του αρχείου %s" @@@ -2597,6 -2582,6 +2598,12 @@@ msgstr "Πρόβλημα κατά τηΠmsgid "Problem syncing the file" msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Εγκατάλειψη της εγκατάστασης." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Άδειο cache πακέτων" @@@ -2822,7 -2807,7 +2829,7 @@@ msgstr " "Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " "κάποιας κατάλληλης αρχείοθήκης." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2830,11 -2815,11 +2837,11 @@@ msgstr " "Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " "προκλήθηκε από κρατούμενα πακέτα." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3012,8 -2997,8 +3019,8 @@@ msgstr "απέτυχε η μετονοΠmsgid "MD5Sum mismatch" msgstr "Ανόμοιο MD5Sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Ανόμοιο MD5Sum" @@@ -3045,7 -3030,7 +3052,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3053,12 -3038,12 +3060,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3067,7 -3052,7 +3074,7 @@@ msgstr " "Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " "χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3076,7 -3061,7 +3083,7 @@@ msgstr " "Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " "χρειάζεται να διορθώσετε χειροκίνητα το πακέτο." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3084,31 -3069,31 +3091,31 @@@ msgstr " "Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " "πακέτο %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Ανόμοιο μέγεθος" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" @@@ -3206,22 -3191,22 +3213,22 @@@ msgstr "Eγγραφή νέας λίστ msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Εγιναν %i εγγραφές.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" @@@ -3236,17 -3221,17 +3243,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Ανόμοιο MD5Sum" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Εγκατάλειψη της εγκατάστασης." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3310,7 -3295,7 +3306,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/es.po index 56019b62d,63e582ec6..8209ac977 --- a/po/es.po +++ b/po/es.po @@@ -33,7 -33,7 +33,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña <jfs@debian.org>\n" "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" @@@ -697,7 -697,7 +697,7 @@@ msgstr "Abortado. msgid "Do you want to continue [Y/n]? " msgstr "¿Desea continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" @@@ -892,7 -892,7 +892,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calculando la actualización... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falló" @@@ -1262,7 -1262,7 +1262,8 @@@ msgid "%s was already not hold.\n msgstr "%s ya está en su versión más reciente.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero no estaba allí" @@@ -1469,7 -1469,7 +1470,7 @@@ msgstr "Expiró conexión a socket de d msgid "Unable to accept connection" msgstr "No pude aceptar la conexión" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Se produjo un problema al hacer un hash del archivo" @@@ -1496,93 -1496,88 +1497,93 @@@ msgstr "Consulta msgid "Unable to invoke " msgstr "No pude invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "No puedo iniciar la conexión a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "No pude conectarme a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "No se pudo resolver «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Fallo temporal al resolver «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "No se pudo conectar a %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " "digital?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Se encontró al menos una firma inválida." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Error desconocido ejecutando gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Las siguientes firms fueron inválidas:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1622,43 -1617,43 +1623,43 @@@ msgstr "Éste servidor de http tiene e msgid "Unknown date format" msgstr "Formato de fecha desconocido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Falló la selección" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Expiró la conexión" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Error escribiendo al archivo de salida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Error escribiendo a archivo" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Error escribiendo al archivo" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Error leyendo del servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Mala cabecera Data" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Fallo la conexión" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Error interno" @@@ -1960,87 -1955,87 +1961,87 @@@ msgstr "No hay registro de control del msgid "Unable to get a cursor" msgstr "No se pudo obtener un cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No se pudo leer directorio %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No se pudo leer %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al archivo " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "No se pudo resolver %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Falló el recorrido por el árbol." --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "No se pudo abrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "No se pudo leer el enlace %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "No se pudo desligar %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No pude enlazar %s con %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink se ha llegado al límite de %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archivo no tiene campo de paquetes" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s no tiene entrada de predominio\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el encargado de %s es %s y no %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s no tiene una entrada fuente predominante\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco tiene una entrada binaria predominante\n" @@@ -2391,30 -2386,30 +2392,30 @@@ msgstr " "deshabilitado el crecimiento automático." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin. %liseg." #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin. %liseg." #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin. %liseg." #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%liseg." --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Selección %s no encontrada" @@@ -2488,16 -2483,6 +2489,16 @@@ msgstr "%c%s... ¡Error! msgid "%c%s... Done" msgstr "%c%s... Hecho" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hecho" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2611,17 -2596,17 +2612,17 @@@ msgstr "El subproceso %s recibió un fa msgid "Sub-process %s received signal %u." msgstr "El subproceso %s recibió la señal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "El subproceso %s devolvió un código de error (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subproceso %s terminó de forma inesperada" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "No pude abrir el fichero %s" @@@ -2668,6 -2653,6 +2669,12 @@@ msgstr "Se produjo un problema al desli msgid "Problem syncing the file" msgstr "Se produjo un problema al sincronizar el fichero" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "No se instaló ningún anillo de claves %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Caché de paquetes vacía." @@@ -2902,7 -2887,7 +2909,7 @@@ msgstr " "El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " "éste." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2910,12 -2895,12 +2917,12 @@@ msgstr " "Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " "causado por paquetes retenidos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3092,8 -3077,8 +3099,8 @@@ msgstr "falló el cambio de nombre, %s msgid "MD5Sum mismatch" msgstr "La suma MD5 difiere" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "La suma hash difiere" @@@ -3127,7 -3112,7 +3134,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3138,12 -3123,12 +3145,12 @@@ msgstr " "GPG es: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Error de GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3153,7 -3138,7 +3160,7 @@@ msgstr " "que necesita arreglar manualmente este paquete (debido a que falta una " "arquitectura)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3162,7 -3147,7 +3169,7 @@@ msgstr " "No se pudo localizar un archivo para el paquete %s. Esto puede significar " "que necesita arreglar manualmente este paquete." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3170,31 -3155,31 +3177,31 @@@ msgstr " "Los archivos de índice de paquetes están dañados. No existe un campo " "«Filename:» para el paquete %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "El tamaño difiere" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "No se pudo leer el archivo «Release» %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "No se encontraron secciones en el archivo «Release» %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "No existe una entrada «Hash» en el archivo «Release» %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Entrada «Date» inválida en el archivo «Release» %s" @@@ -3294,22 -3279,22 +3301,22 @@@ msgstr "Escribiendo nueva lista de fuen msgid "Source list entries for this disc are:\n" msgstr "Las entradas de la lista de fuentes para este disco son:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i registros escritos.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i registros escritos con %i fichero de menos.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i registros escritos con %i fichero mal emparejado\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3325,17 -3310,17 +3332,6 @@@ msgstr "No se pudo encontrar un registr msgid "Hash mismatch for: %s" msgstr "La suma hash difiere para: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "No se instaló ningún anillo de claves %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3409,7 -3394,7 +3405,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/eu.po index 4809d7232,1bec8b578..993e427cd --- a/po/eu.po +++ b/po/eu.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n" @@@ -635,7 -635,7 +635,7 @@@ msgstr "Abortatu. msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" @@@ -829,7 -829,7 +829,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Huts egin du" @@@ -1180,7 -1180,7 +1180,8 @@@ msgid "%s was already not hold.\n msgstr "%s bertsiorik berriena da jada.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s espero zen baina ez zegoen han" @@@ -1391,7 -1391,7 +1392,7 @@@ msgstr "Datu-socket konexioak denbora m msgid "Unable to accept connection" msgstr "Ezin da konexioa onartu" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Arazoa fitxategiaren hash egitean" @@@ -1418,92 -1418,87 +1419,92 @@@ msgstr "Kontsulta msgid "Unable to invoke " msgstr "Ezin da deitu " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Konektatzen -> %s.(%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Ezin izan da konektatu -> %s:%s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Konektatzen -> %s..." -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ezin izan da '%s' ebatzi" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Aldi baterako akatsa '%s' ebaztean" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ezin da konektatu -> %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 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:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Beintza sinadura baliogabe bat aurkitu da." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Ezin da %s abiarazi sinadura egiaztatzeko (gpgv instalaturik al dago?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Errore ezezaguna gpgv exekutatzean" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Ondorengo sinadurak baliogabeak dira:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1543,43 -1538,43 +1544,43 @@@ msgstr "http zerbitzariak barruti onarp msgid "Unknown date format" msgstr "Datu formatu ezezaguna" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Hautapenak huts egin du" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Konexioaren denbora muga gainditu da" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Errorea irteerako fitxategian idaztean" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Errorea zerbitzaritik irakurtzean" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Goiburu data gaizki dago" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Konexioak huts egin du" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Barne errorea" @@@ -1869,87 -1864,87 +1870,87 @@@ msgstr "Artxiboak ez du kontrol erregis msgid "Unable to get a cursor" msgstr "Ezin da kurtsorerik eskuratu" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Ezin da %s direktorioa irakurri\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Ezin da %s atzitu\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Erroreak fitxategiari dagozkio " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Huts egin du %s ebaztean" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Huts egin dute zuhaitz-urratsek" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Huts egin du %s irekitzean" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Huts egin du %s esteka irakurtzean" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Huts egin du %s desestekatzean" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Ezin izan da %s %s(r)ekin estekatu" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-en mugara (%sB) heldu da.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Artxiboak ez du pakete eremurik" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s: ez du override sarrerarik\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s mantentzailea %s da, eta ez %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s: ez du jatorri gainidazketa sarrerarik\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s: ez du bitar gainidazketa sarrerarik\n" @@@ -2296,30 -2291,30 +2297,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "%s hautapena ez da aurkitu" @@@ -2389,16 -2384,6 +2390,16 @@@ msgstr "%c%s... Errorea! msgid "%c%s... Done" msgstr "%c%s... Eginda" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Eginda" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2514,17 -2499,17 +2515,17 @@@ msgstr "%s azpiprozesuak segmentaziuo h msgid "Sub-process %s received signal %u." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s azpiprozesua ustekabean amaitu da" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "%s fitxategia ezin izan da ireki" @@@ -2571,6 -2556,6 +2572,12 @@@ msgstr "Arazoa fitxategia desestekatzea msgid "Problem syncing the file" msgstr "Arazoa fitxategia sinkronizatzean" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Abortatu instalazioa." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Paketeen katxea hutsik" @@@ -2795,7 -2780,7 +2802,7 @@@ msgid " msgstr "" "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2803,11 -2788,11 +2810,11 @@@ msgstr " "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " "atxikitako paketeek eraginda." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2976,8 -2961,8 +2983,8 @@@ msgstr "huts egin du izen-aldaketak, % msgid "MD5Sum mismatch" msgstr "MD5Sum ez dator bat" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Egiaztapena ez dator bat" @@@ -3009,7 -2994,7 +3016,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3017,12 -3002,12 +3024,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3031,7 -3016,7 +3038,7 @@@ msgstr " "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea. (arkitektura falta delako)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3040,7 -3025,7 +3047,7 @@@ msgstr " "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3048,31 -3033,31 +3055,31 @@@ msgstr " "Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " "paketearentzat." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Tamaina ez dator bat" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Ezin da %s pakete fitxategia analizatu (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Oharra, %s hautatzen %s(r)en ordez\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Lerro baliogabea desbideratze fitxategian: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ezin da %s pakete fitxategia analizatu (1)" @@@ -3170,22 -3155,22 +3177,22 @@@ msgstr "Jatorri zerrenda berria idazten msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i erregistro grabaturik.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3201,17 -3186,17 +3208,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Egiaztapena ez dator bat" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Abortatu instalazioa." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3275,7 -3260,7 +3271,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/fi.po index 53d63dbd0,849bfc2f6..4c29cf2ca --- a/po/fi.po +++ b/po/fi.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen <tale@debian.org>\n" "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" @@@ -632,7 -632,7 +632,7 @@@ msgstr "Keskeytä. msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" @@@ -826,7 -826,7 +826,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Ei onnistunut" @@@ -1175,7 -1175,7 +1175,8 @@@ msgid "%s was already not hold.\n msgstr "%s on jo uusin versio.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Odotettiin %s, mutta sitä ei ollut" @@@ -1382,7 -1382,7 +1383,7 @@@ msgstr "Pistokkeen kytkeminen aikakatka msgid "Unable to accept connection" msgstr "Yhteyttä ei voitu hyväksyä" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Pulmia tiedoston hajautuksessa" @@@ -1409,93 -1409,88 +1410,93 @@@ msgstr "Kysely msgid "Unable to invoke " msgstr "Käynnistys ei onnistu" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Avataan yhteys %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Avataan yhteys %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nimeä \"%s\" ei voitu selvittää" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1535,43 -1530,43 +1536,43 @@@ msgstr "HTTP-palvelimen arvoaluetuki o msgid "Unknown date format" msgstr "Tuntematon päiväysmuoto" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Select ei toiminut" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Yhteys aikakatkaistiin" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Tapahtui virhe luettaessa palvelimelta" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Virheellinen otsikkotieto" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Yhteys ei toiminut" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Sisäinen virhe" @@@ -1866,87 -1861,87 +1867,87 @@@ msgstr "Arkistolla ei ole ohjaustietuet msgid "Unable to get a cursor" msgstr "Kohdistinta ei saada" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kansiota %s ei voi lukea\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Tdstolle %s ei toimi stat\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Tiedostossa virheitä " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Osoitteen %s selvitys ei onnistunut" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Puun läpikäynti ei onnistunut" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Tiedoston %s avaaminen ei onnistunut" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ei onnistunut" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ei onnistunut" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linkin %s -> %s luonti ei onnistunut" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLinkin yläraja %st saavutettu.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arkistossa ei ollut pakettikenttää" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ylläpitäjä on %s eikä %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n" @@@ -2292,30 -2287,30 +2293,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Valintaa %s ei löydy" @@@ -2385,16 -2380,6 +2386,16 @@@ msgstr "%c%s... Virhe! msgid "%c%s... Done" msgstr "%c%s... Valmis" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Valmis" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2506,17 -2491,17 +2507,17 @@@ msgstr "Aliprosessi %s aiheutti suojaus msgid "Sub-process %s received signal %u." msgstr "Aliprosessi %s aiheutti suojausvirheen." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Aliprosessi %s palautti virhekoodin (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Aliprosessi %s lopetti odottamatta" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Tiedostoa %s ei voitu avata" @@@ -2563,6 -2548,6 +2564,12 @@@ msgstr "Pulmia tehtäessä tiedostolle msgid "Problem syncing the file" msgstr "Pulmia tehtäessä tiedostolle sync" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Asennus keskeytetään." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Pakettivarasto on tyhjä" @@@ -2785,7 -2770,7 +2792,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2793,11 -2778,11 +2800,11 @@@ msgstr " "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " "paketit." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2968,8 -2953,8 +2975,8 @@@ msgstr "nimen vaihto ei onnistunut, %s msgid "MD5Sum mismatch" msgstr "MD5Sum ei täsmää" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Tarkistussumma ei täsmää" @@@ -3001,7 -2986,7 +3008,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3009,12 -2994,12 +3016,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3023,7 -3008,7 +3030,7 @@@ msgstr " "En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " "tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3032,7 -3017,7 +3039,7 @@@ msgstr " "Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan " "tämän paketin itse." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3040,31 -3025,31 +3047,31 @@@ msgstr " "Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" "kenttää." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Koko ei täsmää" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Huomautus, valitaan %s eikä %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Virheellinen rivi korvautustiedostossa: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" @@@ -3162,22 -3147,22 +3169,22 @@@ msgstr "Kirjoitetaan uusi lähdeluettel msgid "Source list entries for this disc are:\n" msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Kirjoitettiin %i tietuetta.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3194,17 -3179,17 +3201,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Kohteen %s tarkistussumma ei täsmää" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Asennus keskeytetään." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3268,7 -3253,7 +3264,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/fr.po index 129d70ba0,8407d3231..97ff54fc2 --- a/po/fr.po +++ b/po/fr.po @@@ -3,13 -3,13 +3,13 @@@ # French messages # # Pierre Machard <pmachard@tuxfamily.org>, 2002,2003,2004. -# Christian Perrier <bubulle@debian.org>, 2004-2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012. +# Christian Perrier <bubulle@debian.org>, 2004-2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" -"PO-Revision-Date: 2012-06-25 19:58+0200\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"PO-Revision-Date: 2013-03-24 08:57+0100\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: fr\n" @@@ -648,7 -648,7 +648,7 @@@ msgstr "Annulation. msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" @@@ -851,7 -851,7 +851,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Échec" @@@ -1229,7 -1229,7 +1229,8 @@@ msgid "%s was already not hold.\n msgstr "%s était déjà marqué comme non figé.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "A attendu %s mais il n'était pas présent" @@@ -1464,7 -1464,7 +1465,7 @@@ msgstr "Délai de connexion au port de msgid "Unable to accept connection" msgstr "Impossible d'accepter une connexion" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problème de hachage du fichier" @@@ -1491,96 -1491,91 +1492,96 @@@ msgstr "Requête msgid "Unable to invoke " msgstr "Impossible d'invoquer " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Connexion à %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP : %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Connexion à %s: %s (%s) impossible." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Connexion à %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ne parvient pas à résoudre « %s »" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Erreur temporaire de résolution de « %s »" -#: methods/connect.cc:200 +#: methods/connect.cc:209 - #, c-format - msgid "System error resolving '%s:%s' (%s)" ++#, fuzzy, c-format ++msgid "System error resolving '%s:%s'" +msgstr "Erreur système lors de la résolution de « %s:%s » (%s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" "Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" "%s » (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Impossible de se connecter à %s:%s :" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 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:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Au moins une signature non valable a été rencontrée." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " "vérifier si gpgv est installé)." --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Erreur inconnue à l'exécution de gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Les signatures suivantes ne sont pas valables :\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1620,43 -1615,43 +1621,43 @@@ msgstr "Ce serveur http possède un sup msgid "Unknown date format" msgstr "Format de date inconnu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Sélection défaillante" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Délai de connexion dépassé" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Erreur d'écriture du fichier de sortie" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Erreur d'écriture sur un fichier" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Erreur d'écriture sur le fichier" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Erreur de lecture du serveur" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Mauvais en-tête de donnée" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Échec de la connexion" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Erreur interne" @@@ -1956,87 -1951,87 +1957,87 @@@ msgstr "L'archive n'a pas d'enregistrem msgid "Unable to get a cursor" msgstr "Impossible d'obtenir un curseur" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A : Impossible de lire le contenu du répertoire %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A : Impossible de statuer %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E : " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A : " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E : des erreurs sont survenues sur le fichier " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Impossible de résoudre %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Échec du parcours de l'arbre" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Impossible d'ouvrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Délier %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Impossible de lire le lien %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Impossible de délier %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Impossible de lier %s à %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Seuil de delink de %so atteint.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "L'archive ne possède pas de champ de paquet" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "%s ne possède pas d'entrée « override »\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " le responsable de %s est %s et non %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s ne possède pas d'entrée « source override »\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ne possède pas également pas d'entrée « binary override »\n" @@@ -2390,30 -2385,30 +2391,30 @@@ msgstr " "automatique a été désactivée par une option utilisateur." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "La sélection %s n'a pu être trouvée" @@@ -2487,16 -2482,6 +2488,16 @@@ msgstr "%c%s... Erreur ! msgid "%c%s... Done" msgstr "%c%s... Fait" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2616,17 -2601,17 +2617,17 @@@ msgstr "Le sous-processus %s a commis u msgid "Sub-process %s received signal %u." msgstr "Le sous-processus %s a reçu le signal %u" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Le sous-processus %s s'est arrêté prématurément" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Impossible d'ouvrir le fichier %s" @@@ -2673,6 -2658,6 +2674,12 @@@ msgstr "Problème de suppression du lie msgid "Problem syncing the file" msgstr "Problème de synchronisation du fichier" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Pas de porte-clés installé dans %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache des paquets vide" @@@ -2911,7 -2896,7 +2918,7 @@@ msgstr " "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2919,13 -2904,13 +2926,13 @@@ msgstr " "Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé " "par les paquets devant être gardés en l'état." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossible de corriger les problèmes, des paquets défectueux sont en mode " "« garder en l'état »." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3113,8 -3098,8 +3120,8 @@@ msgstr "impossible de changer le nom, % msgid "MD5Sum mismatch" msgstr "Somme de contrôle MD5 incohérente" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Somme de contrôle de hachage incohérente" @@@ -3152,7 -3137,7 +3159,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3163,12 -3148,12 +3170,12 @@@ msgstr " "GPG : %s : %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Erreur de GPG : %s : %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3177,7 -3162,7 +3184,7 @@@ msgstr " "Impossible de localiser un fichier du paquet %s. Cela signifie que vous " "devrez corriger ce paquet vous-même (absence d'architecture)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3186,7 -3171,7 +3193,7 @@@ msgstr " "Impossible de localiser un fichier du paquet %s. Cela signifie que vous " "devrez corriger ce paquet vous-même." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3194,31 -3179,31 +3201,31 @@@ msgstr " "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " "pour le paquet %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Taille incohérente" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Impossible d'analyser le fichier Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Pas de sections dans le fichier Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Pas d'entrée de hachage dans le fichier Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Entrée « Date » non valable dans le fichier Release %s" @@@ -3318,22 -3303,22 +3325,22 @@@ msgstr "Écriture de la nouvelle liste msgid "Source list entries for this disc are:\n" msgstr "Les entrées de listes de sources pour ce disque sont :\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3350,17 -3335,17 +3357,6 @@@ msgstr "Impossible de trouver l'enregis msgid "Hash mismatch for: %s" msgstr "Somme de contrôle de hachage incohérente pour %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Le fichier %s ne commence pas par un message signé en clair." -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Pas de porte-clés installé dans %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3435,7 -3420,7 +3431,7 @@@ msgstr "Préparation à la réception d msgid "External solver failed without a proper error message" msgstr "Échec du solveur externe sans message d'erreur adapté" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Exécu tion du solveur externe" @@@ -3603,6 -3588,6 +3599,9 @@@ msgstr " msgid "Not locked" msgstr "Non verrouillé" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Le fichier %s ne commence pas par un message signé en clair." ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Fichier %s inexistant ignoré" diff --combined po/gl.po index 9bf5a9db1,15d867bc7..821227308 --- a/po/gl.po +++ b/po/gl.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: galician <proxecto@trasno.net>\n" @@@ -639,7 -639,7 +639,7 @@@ msgstr "Interromper. msgid "Do you want to continue [Y/n]? " msgstr "Quere continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non foi posíbel obter %s %s\n" @@@ -836,7 -836,7 +836,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calculando a anovación... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Fallou" @@@ -1207,7 -1207,7 +1207,8 @@@ msgid "%s was already not hold.\n msgstr "%s xa é a versión máis recente.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Agardouse por %s pero non estaba alí" @@@ -1415,7 -1415,7 +1416,7 @@@ msgstr "A conexión do socket de datos msgid "Unable to accept connection" msgstr "Non é posíbel aceptar a conexión" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Xurdiu un problema ao calcular o hash do ficheiro" @@@ -1442,94 -1442,89 +1443,94 @@@ msgstr "Petición msgid "Unable to invoke " msgstr "Non é posíbel chamar a " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Non foi posíbel conectar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Non foi posíbel atopar «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Produciuse un fallo temporal ao buscar «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Non é posíbel conectar %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " "dixital da chave" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Atopouse polo menos unha sinatura incorrecta." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " "gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Produciuse un erro descoñecido ao executar gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "As seguintes sinaturas non eran correctas:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1570,44 -1565,44 +1571,44 @@@ msgstr "Este servidor HTTP ten a compat msgid "Unknown date format" msgstr "Formato de datos descoñecido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Fallou a chamada a select" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "A conexión esgotou o tempo" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Produciuse un erro ao escribir no ficheiro de saída" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Produciuse un erro ao escribir nun ficheiro" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Produciuse un erro ao escribir no ficheiro" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Produciuse un erro ao ler do servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Datos da cabeceira incorrectos" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Produciuse un fallo na conexión" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Produciuse un erro interno" @@@ -1904,87 -1899,87 +1905,87 @@@ msgstr "O arquivo non ten un rexistro d msgid "Unable to get a cursor" msgstr "Non é posíbel obter un cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: non é posíbel ler o directorio %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: non é posíbel atopar %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: os erros aplícanse ao ficheiro " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Non foi posíbel solucionar %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Fallou o percorrido da árbore" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Non foi posíbel abrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DesLig %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Non foi posíbel ler a ligazón %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Non foi posíbel desligar %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Non foi posíbel ligar %s con %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Acadouse o límite de desligado de %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "O arquivo non tiña un campo Package" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s non ten unha entrada de «override»\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " O mantedor de %s é %s, non %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ten unha entrada de «override» de código fonte\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampouco ten unha entrada de «override» de binarios\n" @@@ -2335,30 -2330,30 +2336,30 @@@ msgstr " "desactivado polo usuario." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Non se atopou a selección %s" @@@ -2432,16 -2427,6 +2433,16 @@@ msgstr "%c%s... Erro! msgid "%c%s... Done" msgstr "%c%s... Feito" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Feito" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2557,17 -2542,17 +2558,17 @@@ msgstr "O subproceso %s recibiu un fall msgid "Sub-process %s received signal %u." msgstr "O subproceso %s recibiu o sinal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "O subproceso %s devolveu un código de erro (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O subproceso %s saíu de xeito inesperado" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Non foi posíbel abrir o ficheiro %s" @@@ -2614,6 -2599,6 +2615,12 @@@ msgstr "Produciuse un problema ao desli msgid "Problem syncing the file" msgstr "Produciuse un problema ao sincronizar o ficheiro" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Non ha ningún chaveiro instalado en %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Caché de paquetes baleira" @@@ -2844,7 -2829,7 +2851,7 @@@ msgstr " "O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " "arquivo." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2852,11 -2837,11 +2859,11 @@@ msgstr " "Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " "causado por paquetes retidos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3032,8 -3017,8 +3039,8 @@@ msgstr "non foi posíbel cambiar o nome msgid "MD5Sum mismatch" msgstr "A MD5Sum non coincide" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "A sumas «hash» non coinciden" @@@ -3068,7 -3053,7 +3075,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3079,12 -3064,12 +3086,12 @@@ msgstr " "%s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Produciuse un erro de GPG: %s %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3093,7 -3078,7 +3100,7 @@@ msgstr " "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " "ten que arranxar este paquete a man. (Falta a arquitectura)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3102,7 -3087,7 +3109,7 @@@ msgstr " "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " "ten que arranxar este paquete a man." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3110,31 -3095,31 +3117,31 @@@ msgstr " "Os ficheiros de índices de paquetes están danados. Non hai un campo " "Filename: para o paquete %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Os tamaños non coinciden" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Non se puido analizar o ficheiro de publicación %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Non hai seccións no ficheiro de publicación %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Non hai entrada de Hash no ficheiro de publicación %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" @@@ -3234,22 -3219,22 +3241,22 @@@ msgstr "Escribindo a nova lista de orix msgid "Source list entries for this disc are:\n" msgstr "As entradas da lista de orixes deste disco son:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Escribíronse %i rexistros.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3266,17 -3251,17 +3273,6 @@@ msgstr "Non é posíbel atopar un rexis msgid "Hash mismatch for: %s" msgstr "Valor de hash non coincidente para: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Non ha ningún chaveiro instalado en %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3350,7 -3335,7 +3346,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/hu.po index 325d396cd,d526ceb40..34ddd7609 --- a/po/hu.po +++ b/po/hu.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n" "Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n" @@@ -628,7 -628,7 +628,7 @@@ msgstr "Megszakítva. msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarja [I/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" @@@ -826,7 -826,7 +826,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Sikertelen" @@@ -1195,7 -1195,7 +1195,8 @@@ msgid "%s was already not hold.\n msgstr "%s eddig sem volt visszafogva.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Nem található a(z) %s, a várakozás után sem" @@@ -1426,7 -1426,7 +1427,7 @@@ msgstr "Az adatfoglalathoz kapcsolódá msgid "Unable to accept connection" msgstr "Nem lehet elfogadni a kapcsolatot" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Probléma a fájl hash értékének meghatározásakor" @@@ -1453,91 -1453,86 +1454,91 @@@ msgstr "Lekérdezés msgid "Unable to invoke " msgstr "Nem lehet meghívni " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Csatlakozás: %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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)" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kapcsolódás: %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nem lehet feloldani a következőt: „%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Átmeneti hiba „%s” feloldása közben" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nem lehet csatlakozni ehhez: %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata." --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Legalább egy aláírás érvénytelen." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Nem indítható el a „gpgv” az aláírás ellenőrzéséhez (telepítve van a gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Ismeretlen gpgv futtatási hiba" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Az alábbi aláírások érvénytelenek voltak:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1577,43 -1572,43 +1578,43 @@@ msgstr "A HTTP-kiszolgáló tartományt msgid "Unknown date format" msgstr "Ismeretlen dátumformátum" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "A kiválasztás sikertelen" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Időtúllépés a kapcsolatban" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Hiba a kimeneti fájl írásakor" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Hiba a fájl írásakor" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Hiba a fájl írásakor" -#: methods/http.cc:919 +#: methods/http.cc:923 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:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Hiba a kiszolgálóról olvasáskor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Rossz fejlécadatok" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Sikertelen kapcsolódás" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Belső hiba" @@@ -1908,87 -1903,87 +1909,87 @@@ msgstr "Az archívumnak nincs vezérlÅ msgid "Unable to get a cursor" msgstr "Nem sikerült egy mutatóhoz jutni" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "F: nem lehet a(z) %s könyvtárat olvasni\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "F: %s nem érhető el\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "H: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "F: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "H: Hibás a fájl " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Nem sikerült feloldani ezt: %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Fabejárás nem sikerült" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s megnyitása sikertelen" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "readlink nem hajtható végre erre: %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "%s törlése sikertelen" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s linkelése sikertelen ehhez: %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " a DeLink korlátja (%sB) elérve.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Az archívumnak nem volt csomag mezője" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s karbantartója %s, nem %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nem rendelkezik forrás-felülbíráló bejegyzéssel\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, 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" @@@ -2337,30 -2332,30 +2338,30 @@@ msgstr " "automatikus emelést." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lin %lió %lip %limp" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lió %lip %limp" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%lip %limp" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%limp" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "%s kiválasztás nem található" @@@ -2432,16 -2427,6 +2433,16 @@@ msgstr "%c%s... Hiba! msgid "%c%s... Done" msgstr "%c%s... Kész" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Kész" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2559,17 -2544,17 +2560,17 @@@ msgstr "%s alfolyamat szegmentálási h msgid "Sub-process %s received signal %u." msgstr "A(z) %s alfolyamat %u számú szignált kapott." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s alfolyamat hibakóddal tért vissza (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s alfolyamat váratlanul kilépett" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nem lehet megnyitni a(z) %s fájlt" @@@ -2616,6 -2601,6 +2617,12 @@@ msgstr "Hiba a(z) %s fájl törlésekor msgid "Problem syncing the file" msgstr "Hiba a fájl szinkronizálásakor" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Nincs kulcstartó telepítve ide: %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Üres csomaggyorsítótár" @@@ -2850,7 -2835,7 +2857,7 @@@ msgid " msgstr "" "A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2858,11 -2843,11 +2865,11 @@@ msgstr " "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " "csomagok okozhatják." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3039,8 -3024,8 +3046,8 @@@ msgstr "sikertelen átnevezés, %s (%s msgid "MD5Sum mismatch" msgstr "Az MD5Sum nem megfelelő" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "A Hash Sum nem megfelelő" @@@ -3076,7 -3061,7 +3083,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3086,12 -3071,12 +3093,12 @@@ msgstr " "előző indexfájl lesz használva. GPG hiba: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG hiba: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3100,7 -3085,7 +3107,7 @@@ msgstr " "Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " "kell kijavítani a csomagot. (hiányzó arch. miatt)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3109,38 -3094,38 +3116,38 @@@ msgstr " "Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " "kell kijavítani a csomagot." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "A méret nem megfelelő" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "A(z) %s Release fájl nem dolgozható fel" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" @@@ -3240,22 -3225,22 +3247,22 @@@ msgstr "Új forráslista írása\n msgid "Source list entries for this disc are:\n" msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i rekord kiírva.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rekord kiírva %i eltérő fájllal\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n" @@@ -3270,17 -3255,17 +3277,6 @@@ msgstr "%s hitelesítési rekordja nem msgid "Hash mismatch for: %s" msgstr "%s ellenőrzőösszege nem megfelelő" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "A(z) %s fájl nem digitálisan aláírt üzenettel kezdődik" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Nincs kulcstartó telepítve ide: %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3349,7 -3334,7 +3345,7 @@@ msgstr "Felkészülés megoldás fogadà msgid "External solver failed without a proper error message" msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Külső solver végrehajtása" @@@ -3515,6 -3500,6 +3511,9 @@@ msgstr " msgid "Not locked" msgstr "Nincs zárolva" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "A(z) %s fájl nem digitálisan aláírt üzenettel kezdődik" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "A nem létező %s fájl kihagyása" diff --combined po/it.po index 8258eaa4c,98269398e..c8a1b87c6 --- a/po/it.po +++ b/po/it.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-25 21:54+0200\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@@ -643,7 -643,7 +643,7 @@@ msgstr "Interrotto. msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" @@@ -842,7 -842,7 +842,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Non riuscito" @@@ -1215,7 -1215,7 +1215,8 @@@ msgid "%s was already not hold.\n msgstr "%s era già non bloccato.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "In attesa di %s ma non era presente" @@@ -1445,7 -1445,7 +1446,7 @@@ msgstr "Connessione al socket dati term msgid "Unable to accept connection" msgstr "Impossibile accettare connessioni" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Si è verificato un problema nel creare l'hash del file" @@@ -1472,96 -1472,90 +1473,96 @@@ msgstr "Interrogazione msgid "Unable to invoke " msgstr "Impossibile invocare " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Connessione a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Impossibile iniziare la connessione a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Impossibile connettersi a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Connessione a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Impossibile risolvere \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "" +"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Impossibile connettersi a %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Errore interno: firma corretta, ma non è possibile determinare l'impronta " "della chiave." --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "È stata trovata almeno una firma non valida." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " "installato)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Errore sconosciuto durante l'esecuzione di gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Le seguenti firme non erano valide:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1601,43 -1595,43 +1602,43 @@@ msgstr "Questo server HTTP ha un suppor msgid "Unknown date format" msgstr "Formato della data sconosciuto" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Select non riuscita" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Connessione terminata" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Errore nello scrivere sul file di output" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Errore nello scrivere su file" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Errore nello scrivere sul file" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Errore nel leggere dal server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Header dati non corretto" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Connessione non riuscita" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Errore interno" @@@ -1938,87 -1932,87 +1939,87 @@@ msgstr "Impossibile ottenere un cursore # (ndt) messo A per Avviso # Inizio con la maiuscola dopo i : perché mi sa che in molti # casi molte stringhe sono così --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Impossibile leggere la directory %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Impossibile eseguire stat su %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Gli errori si applicano al file " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Risoluzione di %s non riuscita" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Visita dell'albero non riuscita" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Apertura di %s non riuscita" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Delink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Esecuzione di readlink su %s non riuscita" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Esecuzione di unlink su %s non riuscita" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Collegamento di %s a %s non riuscito" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Raggiunto il limite di DeLink di %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "L'archivio non ha un campo \"package\"" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s non ha un campo override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " il responsabile di %s è %s non %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ha un campo source override\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s non ha neppure un campo binario override\n" @@@ -2368,30 -2362,30 +2369,30 @@@ msgstr " "ridimensionamento automatico è stato disabilitato dall'utente." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lig %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Selezione %s non trovata" @@@ -2466,16 -2460,6 +2467,16 @@@ msgstr "%c%s... Errore msgid "%c%s... Done" msgstr "%c%s... Fatto" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fatto" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2595,17 -2579,17 +2596,17 @@@ msgstr "Il sottoprocesso %s ha ricevut msgid "Sub-process %s received signal %u." msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Il sottoprocesso %s è uscito inaspettatamente" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Impossibile aprire il file %s" @@@ -2652,6 -2636,6 +2653,12 @@@ msgstr "Si è verificato un problema ne msgid "Problem syncing the file" msgstr "Si è verificato un problema nel sincronizzare il file" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Nessun portachiavi installato in %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache dei pacchetti vuota" @@@ -2890,7 -2874,7 +2897,7 @@@ msgstr " "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " "archivio." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2898,12 -2882,12 +2905,12 @@@ msgstr " "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " "potrebbe essere causato da pacchetti bloccati." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3084,8 -3068,8 +3091,8 @@@ msgstr "rename() non riuscita: %s (%s - msgid "MD5Sum mismatch" msgstr "MD5sum non corrispondente" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Somma hash non corrispondente" @@@ -3122,7 -3106,7 +3129,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3132,12 -3116,12 +3139,12 @@@ msgstr " "aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Errore GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3146,7 -3130,7 +3153,7 @@@ msgstr " "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " "sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3156,7 -3140,7 +3163,7 @@@ msgstr " "correggere manualmente questo pacchetto." # (ndt) sarebbe da controllare se veramente possono esistere più file indice --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3164,31 -3148,31 +3171,31 @@@ msgstr " "I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " "per il pacchetto %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Le dimensioni non corrispondono" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Impossibile analizzare il file Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Nessuna sezione nel file Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Nessuna voce Hash nel file Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Voce \"Valid-Until\" nel file Release %s non valida" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Voce \"Date\" nel file Release %s non valida" @@@ -3288,22 -3272,22 +3295,22 @@@ msgstr "Scrittura nuovo elenco sorgenti msgid "Source list entries for this disc are:\n" msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Scritti %i record.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Scritti %i record con %i file mancanti.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Scritti %i record con %i file senza corrispondenze\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3319,17 -3303,17 +3326,6 @@@ msgstr "Impossibile trovare il record d msgid "Hash mismatch for: %s" msgstr "Hash non corrispondente per %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Il file %s non inizia con un messaggio di firma in chiaro" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Nessun portachiavi installato in %s." -- # (ndt) dovrebbe essere inteso il file Release #: apt-pkg/cacheset.cc:403 #, c-format @@@ -3405,7 -3389,7 +3401,7 @@@ msgstr "Preparazione alla ricezione del msgid "External solver failed without a proper error message" msgstr "Il solver esterno è terminato senza un errore di messaggio" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Esecuzione solver esterno" @@@ -3576,6 -3560,6 +3572,9 @@@ msgstr " msgid "Not locked" msgstr "Non bloccato" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Il file %s non inizia con un messaggio di firma in chiaro" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Saltato il file inesistente %s" diff --combined po/ja.po index 708611629,48ee00f58..a88723134 --- a/po/ja.po +++ b/po/ja.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-07-01 00:14+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@@ -635,7 -635,7 +635,7 @@@ msgstr "中断しました。 msgid "Do you want to continue [Y/n]? " msgstr "続行しますか [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s の取得に失敗しました %s\n" @@@ -825,7 -825,7 +825,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出しています ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "失敗" @@@ -1198,7 -1198,7 +1198,8 @@@ msgid "%s was already not hold.\n msgstr "%s はすでに保留されていません。\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s を待ちましたが、そこにはありませんでした" @@@ -1424,7 -1424,7 +1425,7 @@@ msgstr "データソケット接続タã msgid "Unable to accept connection" msgstr "接続を accept できません" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "ファイルのハッシュでの問題" @@@ -1451,92 -1451,87 +1452,92 @@@ msgstr "問い合わせ msgid "Unable to invoke " msgstr "呼び出せません" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) へ接続しています" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s) への接続を開始できません。" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s へ接続しています" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s' を解決できませんでした" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' が一時的に解決できません" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "%s:%s へ接続できません:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "少なくとも 1 つの不正な署名が発見されました。" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "署名を検証するための 'gpgv' の実行ができませんでした (gpgv はインストールされ" "ていますか?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "gpgv の実行中に未知のエラーが発生" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "以下の署名が無効です:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1574,43 -1569,43 +1575,43 @@@ msgstr "HTTP サーバのレンジサムmsgid "Unknown date format" msgstr "不明な日付フォーマットです" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select に失敗しました" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "接続タイムアウト" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "出力ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "サーバからの読み込みに失敗しました" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "不正なヘッダです" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "接続失敗" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "内部エラー" @@@ -1902,87 -1897,87 +1903,87 @@@ msgstr "アーカイブにコントロã msgid "Unable to get a cursor" msgstr "カーソルを取得できません" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告: ディレクトリ %s が読めません\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告: %s の状態を取得できません\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "エラー: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "警告: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "エラー: エラーが適用されるファイルは " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s の解決に失敗しました" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "ツリー内での移動に失敗しました" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s のオープンに失敗しました" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " リンク %s [%s] を外します\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "%s のリンク読み取りに失敗しました" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "%s のリンク解除に失敗しました" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s を %s にリンクするのに失敗しました" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " リンクを外す制限の %sB に到達しました。\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "アーカイブにパッケージフィールドがありませんでした" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s に override エントリがありません\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %1$s メンテナは %3$s ではなく %2$s です\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s にソース override エントリがありません\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s にバイナリ override エントリがありません\n" @@@ -2329,30 -2324,30 +2330,30 @@@ msgstr " "自動増加がユーザによって無効にされているため、MMap のサイズを増やせません。" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li日 %li時間 %li分 %li秒" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%li時間 %li分 %li秒" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%li分 %li秒" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%li秒" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "選択された %s が見つかりません" @@@ -2424,16 -2419,6 +2425,16 @@@ msgstr "%c%s... エラー! msgid "%c%s... Done" msgstr "%c%s... 完了" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完了" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2548,17 -2533,17 +2549,17 @@@ msgstr "子プロセス %s がセグメ msgid "Sub-process %s received signal %u." msgstr "子プロセス %s がシグナル %u を受け取りました。" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子プロセス %s がエラーコード (%u) を返しました" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子プロセス %s が予期せず終了しました" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "ファイル %s をオープンできませんでした" @@@ -2605,6 -2590,6 +2606,12 @@@ msgstr "ファイル %s の削除中に msgid "Problem syncing the file" msgstr "ファイルの同期中に問題が発生しました" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "%s にキーリングがインストールされていません。" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "空のパッケージキャッシュ" @@@ -2834,7 -2819,7 +2841,7 @@@ msgstr " "パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" "つけることができませんでした。" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2842,11 -2827,11 +2849,11 @@@ msgstr " "エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" "ジが原因です。" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3024,8 -3009,8 +3031,8 @@@ msgstr "名前の変更に失敗しまã msgid "MD5Sum mismatch" msgstr "MD5Sum が適合しません" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "ハッシュサムが適合しません" @@@ -3063,7 -3048,7 +3070,7 @@@ msgstr " "ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" "ました)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3073,12 -3058,12 +3080,12 @@@ msgstr " "ファイルが使われます。GPG エラー: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG エラー: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3087,7 -3072,7 +3094,7 @@@ msgstr " "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" "で修正する必要があります (存在しないアーキテクチャのため)。" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3096,7 -3081,7 +3103,7 @@@ msgstr " "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" "で修正する必要があります。" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3104,31 -3089,31 +3111,31 @@@ msgstr " "パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " "フィールドがありません。" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "サイズが適合しません" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Release ファイル %s を解釈することができません" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Release ファイル %s にセクションがありません" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release ファイル %s に Hash エントリがありません" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Release ファイル %s に無効な 'Date' エントリがあります" @@@ -3228,22 -3213,22 +3235,22 @@@ msgstr "新しいソースリストをæ msgid "Source list entries for this disc are:\n" msgstr "このディスクのソースリストのエントリ:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i レコードを書き込みました。\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3260,17 -3245,17 +3267,6 @@@ msgstr "認証レコードが見つかã msgid "Hash mismatch for: %s" msgstr "ハッシュサムが適合しません: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "ファイル %s はクリア署名されたメッセージで始まっていません" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "%s にキーリングがインストールされていません。" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3339,7 -3324,7 +3335,7 @@@ msgstr "解決を受け取る準備 msgid "External solver failed without a proper error message" msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "外部ソルバを実行" @@@ -3507,5 -3492,5 +3503,8 @@@ msgstr " msgid "Not locked" msgstr "ロックされていません" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "ファイル %s はクリア署名されたメッセージで始まっていません" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "存在しないファイル %s をスキップしています" diff --combined po/km.po index aea6d34cb,578e246a7..6e938ff07 --- a/po/km.po +++ b/po/km.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" @@@ -635,7 -635,7 +635,7 @@@ msgstr "បោះបង់ ។ msgid "Do you want to continue [Y/n]? " msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" @@@ -818,7 -818,7 +818,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "បាន​បរាជ័យ" @@@ -1160,7 -1160,7 +1160,8 @@@ msgid "%s was already not hold.\n msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" @@@ -1366,7 -1366,7 +1367,7 @@@ msgstr "ការតភ្ជាប់â msgid "Unable to accept connection" msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" @@@ -1393,91 -1393,86 +1394,91 @@@ msgstr "សំណួរ​ msgid "Unable to invoke " msgstr "មិន​អាច​ហៅ​ " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP ៖ %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "កំហុស​ខាងក្នុង​ ៖ ហត្ថលេខា​​ល្អ ប៉ុន្តែ ​មិន​អាច​កំណត់​កូនសោ​ស្នាម​ម្រាមដៃ ?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "​បានជួប​ប្រទះ​​​​ហត្ថលេខា​យ៉ាងហោចណាស់មួយ ដែ​លត្រឹមត្រូវ​ ។" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "មិន​អាច​ប្រតិបត្តិ '%s' ដើម្បី​ផ្ទៀងផ្ទាត់​ហត្ថលេខា (តើ gpgv ត្រូវ​បាន​ដំឡើង​ឬនៅ ?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "ហត្ថលេខា​ខាង​ក្រោម​មិន​ត្រឹមត្រូវ ៖\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1515,43 -1510,43 +1516,43 @@@ msgstr "ម៉ាស៊ីន​បមá msgid "Unknown date format" msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "ជ្រើស​បាន​បរាជ័យ​" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "កំហុស​ខាង​ក្នុង​" @@@ -1841,87 -1836,87 +1842,87 @@@ msgstr "ប័ណ្ណសារ​គá msgid "Unable to get a cursor" msgstr "មិន​អាច​យក​ទស្សន៍ទ្រនិច​" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: មិន​អាច​អាន​ថត %s បាន​ឡើយ\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W ៖ មិន​អាច​ថ្លែង %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: កំហុស​អនុវត្ត​លើ​ឯកសារ​" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "បរាជ័យ​ក្នុង​ការ​ដោះស្រាយ %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "មែក​ធាង បាន​បរាជ័យ" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អាន​តំណ​ %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ដាច់ %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** បាន​បរាជ័យ​ក្នុង​ការ​ត​ %s ទៅ %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink កំណត់​នៃ​ការ​វាយ %sB ។\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "ប័ណ្ណសារ​គ្មាន​វាល​កញ្ចប់​" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s គ្មាន​ធាតុធាតុបញ្ចូល​​បដិសេធឡើយ\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នក​ថែទាំ %s គឺ %s មិនមែន​ %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s គ្មាន​ធាតុ​បដិសេធ​ប្រភព\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s គ្មាន​ធាតុប​ដិសេធគោល​ពីរ​ដែរ\n" @@@ -2266,30 -2261,30 +2267,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" @@@ -2359,16 -2354,6 +2360,16 @@@ msgstr "%c%s... កំហុស ​! msgid "%c%s... Done" msgstr "%c%s... ធ្វើរួច​" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... ធ្វើរួច​" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2480,17 -2465,17 +2481,17 @@@ msgstr "ដំណើរការ​រá msgid "Sub-process %s received signal %u." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" @@@ -2537,6 -2522,6 +2538,12 @@@ msgstr "មានបញ្ហា​កá msgid "Problem syncing the file" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "ឃ្លាំង​កញ្ចប់​ទទេ​" @@@ -2760,7 -2745,7 +2767,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2768,11 -2753,11 +2775,11 @@@ msgstr " "កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" "ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2941,8 -2926,8 +2948,8 @@@ msgstr "ប្តូរ​ឈ្មោá msgid "MD5Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" @@@ -2975,7 -2960,7 +2982,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2983,12 -2968,12 +2990,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -2997,7 -2982,7 +3004,7 @@@ msgstr " "ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " "(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3005,37 -2990,37 +3012,37 @@@ msgstr "" "ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បានទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" @@@ -3132,22 -3117,22 +3139,22 @@@ msgstr "កំពុងសរសេរâ msgid "Source list entries for this disc are:\n" msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" @@@ -3162,17 -3147,17 +3169,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "MD5Sum មិន​ផ្គួផ្គង​" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3236,7 -3221,7 +3232,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ko.po index ba7f6bef7,0c0b978d6..9d84ac236 --- a/po/ko.po +++ b/po/ko.po @@@ -5,7 -5,7 +5,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@@ -632,7 -632,7 +632,7 @@@ msgstr "중단. msgid "Do you want to continue [Y/n]? " msgstr "계속 하시겠습니까 [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파일을 받는데 실패했습니다 %s\n" @@@ -815,7 -815,7 +815,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "실패" @@@ -1177,7 -1177,7 +1177,8 @@@ msgid "%s was already not hold.\n msgstr "%s 패키지는 이미 최신 버전입니다.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" @@@ -1384,7 -1384,7 +1385,7 @@@ msgstr "데이터 소켓 연결 시간 msgid "Unable to accept connection" msgstr "연결을 받을 수 없습니다" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "파일 해싱에 문제가 있습니다" @@@ -1411,91 -1411,86 +1412,91 @@@ msgstr "질의 msgid "Unable to invoke " msgstr "다음을 실행할 수 없습니다: " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s(%s)에 연결하는 중입니다" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s에 연결하는 중입니다" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s'의 주소를 알아낼 수 없습니다" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "%s:%s에 연결할 수 없습니다:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "최소한 하나 이상의 서명이 잘못되었습니다." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "gpgv 실행 도중 알 수 없는 오류 발생" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "다음 서명이 올바르지 않습니다:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1533,43 -1528,43 +1534,43 @@@ msgstr "HTTP 서버에 범위 지원 ê¸ msgid "Unknown date format" msgstr "데이터 형식을 알 수 없습니다" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select가 실패했습니다" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "연결 시간이 초과했습니다" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "출력 파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "해당 파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "서버에서 읽는데 오류가 발생했습니다" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "헤더 데이터가 잘못되었습니다" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "연결이 실패했습니다" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "내부 오류" @@@ -1862,88 -1857,88 +1863,88 @@@ msgstr "아카이브에 컨트롤 ê¸°ë¡ msgid "Unable to get a cursor" msgstr "커서를 가져올 수 없습니다" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "경고: %s 디렉터리를 읽을 수 없습니다\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "경고: %s의 정보를 읽을 수 없습니다\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "오류: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "경고: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "오류: 다음 파일에 적용하는데 오류가 발생했습니다: " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s의 경로를 알아내는데 실패했습니다" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "트리에서 이동이 실패했습니다" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s 파일을 여는데 실패했습니다" # FIXME: ?? --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " 링크 %s [%s] 없애기\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "%s 파일에 readlink하는데 실패했습니다" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "%s 파일을 지우는데 실패했습니다" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s 파일을 %s에 링크하는데 실패했습니다" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink 한계값 %s바이트에 도달했습니다.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "아카이브에 패키지 필드가 없습니다" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s에는 override 항목이 없습니다\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 관리자가 %s입니다 (%s 아님)\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s에는 source override 항목이 없습니다\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s에는 binary override 항목이 없습니다\n" @@@ -2289,30 -2284,30 +2290,30 @@@ msgstr " "mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li일 %li시간 %li분 %li초" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%li시간 %li분 %li초" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%li분 %li초" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%li초" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "선택한 %s이(가) 없습니다" @@@ -2382,16 -2377,6 +2383,16 @@@ msgstr "%c%s... 오류! msgid "%c%s... Done" msgstr "%c%s... 완료" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 완료" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2503,17 -2488,17 +2504,17 @@@ msgstr "하위 프로세스 %s í”„ë¡œì„ msgid "Sub-process %s received signal %u." msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "%s 파일을 열 수 없습니다" @@@ -2560,6 -2545,6 +2561,12 @@@ msgstr "%s 파일을 삭제하는데 ë¬ msgid "Problem syncing the file" msgstr "파일을 동기화하는데 문제가 있습니다" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "%s에 키 모음을 설치하지 않았습니다." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "패키지 캐시가 비어 있습니다" @@@ -2786,7 -2771,7 +2793,7 @@@ msgid " msgstr "" "%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2794,11 -2779,11 +2801,11 @@@ msgstr " "오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" "도 있습니다." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2968,8 -2953,8 +2975,8 @@@ msgstr "이름 바꾸기가 ì‹¤íŒ¨í–ˆìŠ msgid "MD5Sum mismatch" msgstr "MD5Sum이 맞지 않습니다" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "해시 합이 맞지 않습니다" @@@ -3001,7 -2986,7 +3008,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3011,12 -2996,12 +3018,12 @@@ msgstr " "예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 오류: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3025,7 -3010,7 +3032,7 @@@ msgstr " "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" "니다. (아키텍쳐가 빠졌기 때문입니다)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3034,38 -3019,38 +3041,38 @@@ msgstr " "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" "니다." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "크기가 맞지 않습니다" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Release 파일 %s에 섹션이 없습니다" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Release 파일 %s에 Hash 항목이 없습니다" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" @@@ -3163,22 -3148,22 +3170,22 @@@ msgstr "새 소스 리스트를 쓰는 msgid "Source list entries for this disc are:\n" msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "레코드 %i개를 썼습니다.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" @@@ -3193,17 -3178,17 +3200,6 @@@ msgstr "다음의 인증 기록을 ì°¾ì msgid "Hash mismatch for: %s" msgstr "다음의 해시가 다릅니다: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "%s에 키 모음을 설치하지 않았습니다." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3269,7 -3254,7 +3265,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ku.po index e584866a6,befc58323..6f1e31484 --- a/po/ku.po +++ b/po/ku.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n" "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n" @@@ -590,7 -590,7 +590,7 @@@ msgstr "Betal. msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" @@@ -765,7 -765,7 +765,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Serneket" @@@ -1063,7 -1063,7 +1063,8 @@@ msgid "%s was already not hold.\n msgstr "%s jixwe guhertoya nûtirîn e.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" @@@ -1267,7 -1267,7 +1268,7 @@@ msgstr " msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@@ -1295,91 -1295,86 +1296,91 @@@ msgstr "Lêpirsîn msgid "Unable to invoke " msgstr "%s venebû" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Girêdan bi %s (%s) re pêk tê" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Bi %s re tê girêdan" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nikarî '%s' çareser bike" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nikare bi %s re girêdan pêk bîne %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Di xebitandina gpgv de çewtiya nenas" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Ev pakêtên NÛ dê werine sazkirin:" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1417,44 -1412,44 +1418,44 @@@ msgstr " msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Hilbijartin neserketî" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 #, fuzzy msgid "Error writing to output file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Girêdan pêk nehatiye" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Çewtiya hundirîn" @@@ -1690,87 -1685,87 +1691,87 @@@ msgstr "Tomara kontrola arşîvê tuney msgid "Unable to get a cursor" msgstr "" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: pelrêça %s nayê xwendin\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s ji hev nehate veçirandin" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s venebû" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Di arşîvê de qada pakêtê tuneye" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2110,30 -2105,30 +2111,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Hilbijartina %s nehatiye dîtin" @@@ -2203,16 -2198,6 +2204,16 @@@ msgstr "%c%s... Çewtî! msgid "%c%s... Done" msgstr "%c%s... Çêbû" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Çêbû" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2324,17 -2309,17 +2325,17 @@@ msgstr " msgid "Sub-process %s received signal %u." msgstr "" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nikarî pelê %s veke" @@@ -2381,6 -2366,6 +2382,12 @@@ msgstr "Di girtina pelî de pirsgirêke msgid "Problem syncing the file" msgstr "" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Sazkirin tê betalkirin." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "" @@@ -2599,17 -2584,17 +2606,17 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2775,8 -2760,8 +2782,8 @@@ msgstr "nav guherandin biserneket, %s ( msgid "MD5Sum mismatch" msgstr "MD5Sum li hev nayên" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash Sum li hev nayên" @@@ -2808,7 -2793,7 +2815,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2816,56 -2801,56 +2823,56 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Mezinahî li hev nayên" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Pakêt nehate dîtin %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Pakêt nehate dîtin %s" @@@ -2959,22 -2944,22 +2966,22 @@@ msgstr " msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i tomar hatin nivîsîn.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -2989,17 -2974,17 +2996,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Hash Sum li hev nayên" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Sazkirin tê betalkirin." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3063,7 -3048,7 +3059,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/lt.po index a7209df6a,e159afa43..d8e989382 --- a/po/lt.po +++ b/po/lt.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@@ -598,7 -598,7 +598,7 @@@ msgstr "Nutraukti. msgid "Do you want to continue [Y/n]? " msgstr "Ar norite tęsti [T/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" @@@ -782,7 -782,7 +782,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Skaičiuojami atnaujinimai... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Nepavyko" @@@ -1090,7 -1090,7 +1090,8 @@@ msgid "%s was already not hold.\n msgstr "%s ir taip jau yra naujausias.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "" @@@ -1293,7 -1293,7 +1294,7 @@@ msgstr " msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@@ -1320,90 -1320,85 +1321,90 @@@ msgstr "Užklausti msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Jungiamasi prie %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nepavyko prisijungti prie %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Jungiamasi prie %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nepavyko surasti vardo „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 - #, c-format - msgid "System error resolving '%s:%s' (%s)" - msgstr "" ++#, fuzzy, c-format ++msgid "System error resolving '%s:%s'" ++msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nepavyko prisijungti prie %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Nežinoma klaida kviečiant gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Å ie paraÅ¡ai buvo nevalidÅ«s:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1441,43 -1436,43 +1442,43 @@@ msgstr " msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Prisijungimo laiko limitas baigėsi" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Klaida bandant raÅ¡yti į failą" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Prisijungti nepavyko" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vidinė klaida" @@@ -1777,87 -1772,87 +1778,87 @@@ msgstr " msgid "Unable to get a cursor" msgstr "" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Ä®: Nepavyko perskaityti aplanko %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "Ä®: Nepavyko patikrinti %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "K: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "Ä®: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "K: Klaidos failui " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Nepavyko iÅ¡spręsti %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Judesys medyje nepavyko" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Nepavyko atverti %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Nepavyko nuskaityti nuorodos %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Nepavyko atsieti nuorodos %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepavyko susieti %s su %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archyvas neturėjo paketo lauko" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s neturi perraÅ¡ymo įraÅ¡o\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s prižiÅ«rėtojas yra %s, o ne %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@@ -2204,30 -2199,30 +2205,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "" @@@ -2297,16 -2292,6 +2298,16 @@@ msgstr "%c%s... Klaida! msgid "%c%s... Done" msgstr "%c%s... Baigta" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Baigta" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2418,17 -2403,17 +2419,17 @@@ msgstr "Procesas %s gavo segmentavimo k msgid "Sub-process %s received signal %u." msgstr "Procesas %s gavo segmentavimo klaidą" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Procesas %s grąžino klaidos kodą (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Procesas %s netikėtai išėjo" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nepavyko atverti failo %s" @@@ -2475,6 -2460,6 +2476,12 @@@ msgstr "Klaida užveriant failą msgid "Problem syncing the file" msgstr "Klaida sinchronizuojant failą" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Diegimas nutraukiamas." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "" @@@ -2693,17 -2678,17 +2700,17 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2874,8 -2859,8 +2881,8 @@@ msgstr " msgid "MD5Sum mismatch" msgstr "MD5 sumos neatitikimas" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "MaiÅ¡os sumos nesutapimas" @@@ -2907,7 -2892,7 +2914,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2915,56 -2900,56 +2922,56 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG klaida: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Neatitinka dydžiai" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Nepavyko atverti DB failo %s: %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Pastaba: pažymimas %s vietoje %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Pastaba: pažymimas %s vietoje %s\n" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Nepavyko atverti DB failo %s: %s" @@@ -3058,22 -3043,22 +3065,22 @@@ msgstr "RaÅ¡omas naujas Å¡altinių sąr msgid "Source list entries for this disc are:\n" msgstr "" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3088,17 -3073,17 +3095,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "MaiÅ¡os sumos nesutapimas" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Diegimas nutraukiamas." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3162,7 -3147,7 +3158,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/mr.po index 3b2b8a45e,1bedf2b34..300573bd1 --- a/po/mr.po +++ b/po/mr.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada <sampadanakhare@gmail.com>\n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@@ -629,7 -629,7 +629,7 @@@ msgstr "व्यत्यय/बंठmsgid "Do you want to continue [Y/n]? " msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" @@@ -818,7 -818,7 +818,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "असमर्थ" @@@ -1162,7 -1162,7 +1162,8 @@@ msgid "%s was already not hold.\n msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "%s साठी थांबलो पण ते तेथे नव्हते" @@@ -1369,7 -1369,7 +1370,7 @@@ msgstr "डेटा सॉकेट ठmsgid "Unable to accept connection" msgstr "जोडणी स्विकारण्यास असमर्थ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "फाईल हॅश करण्यात त्रुटी" @@@ -1396,92 -1396,87 +1397,92 @@@ msgstr "प्रश्न msgid "Unable to invoke " msgstr "जारी करण्यास करण्यास असमर्थ" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) ला जोडत आहे" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[आयपी:%s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s ला जोडत आहे" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "%s रिझॉल्व्ह होऊ शकत नाही " -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s ला जोडण्यास असमर्थ:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "किमान एक अवैध सही सापडली." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gpgv संस्थापित केले आहे का?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "खालील सह्या अवैध आहेत:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1519,43 -1514,43 +1520,43 @@@ msgstr "HTTP सर्व्हरनॠmsgid "Unknown date format" msgstr "अपरिचित दिनांक प्रकार/स्वरूप " -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "चुकले/असमर्थ निवड करा" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "जोडणी वेळेअभावी तुटली" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "सर्व्हर मधून वाचण्यात चूक" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "चुकीचा शीर्षक डाटा" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "जोडणी अयशस्वी" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "अंतर्गत त्रुटी" @@@ -1846,87 -1841,87 +1847,87 @@@ msgstr "अर्काईव्ह म msgid "Unable to get a cursor" msgstr "संकेतक घेण्यास असमर्थ" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "धोक्याची सूचना:%s संचयिका वाचण्यास असमर्थ \n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "धो.सू.:%s स्टेट करण्यास असमर्थ\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E:" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "धो.सू.:" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "ई: संचिकेला लागू होणाऱ्या चुका" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s सोडवण्यास असमर्थ" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "ट्री चालणे असमर्थ" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s उघडण्यास असमर्थ" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "%s [%s] डी दुवा\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "%s वाचणारा दुवा असमर्थ" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "%s दुवा काढण्यास असमर्थ" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "%s चा %s दुवा साधण्यास असमर्थ" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "%sB हीट ची डिलींक मर्यादा\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "अर्काईव्ह ला पॅकेज जागा नाही" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr "%s ला ओव्हरराईड/दुर्लक्षित जागा नाही\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "%s देखभालकर्ता हा %s आणि %s नाही \n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr "%s ला उगम ओव्हरराईड/दुर्लक्षित जागा नाही\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr "%s ला द्वयंक ओव्हरराईड जागा नाही\n" @@@ -2271,30 -2266,30 +2272,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "%s निवडक भाग सापडत नाही" @@@ -2364,16 -2359,6 +2365,16 @@@ msgstr "%c%s... चूक/त्रुà msgid "%c%s... Done" msgstr "%c%s... झाले" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... झाले" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2485,17 -2470,17 +2486,17 @@@ msgstr "%s उपक्रियेलà msgid "Sub-process %s received signal %u." msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "%s फाईल उघडता येत नाही" @@@ -2542,6 -2527,6 +2543,12 @@@ msgstr "फाईल अनलिंक msgid "Problem syncing the file" msgstr "संचिकेची syncing समस्या" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "संस्थापन खंडित करत आहे." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "पॅकेज अस्थाई स्मृतिकोष" @@@ -2765,7 -2750,7 +2772,7 @@@ msgid " msgstr "" "%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2773,11 -2758,11 +2780,11 @@@ msgstr " "दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " "पॅकेजेस असू शकते." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2951,8 -2936,8 +2958,8 @@@ msgstr "पुनर्नामांà msgid "MD5Sum mismatch" msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "हॅश बेरीज जुळत नाही" @@@ -2984,7 -2969,7 +2991,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2992,12 -2977,12 +2999,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3006,7 -2991,7 +3013,7 @@@ msgstr " "मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " "स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3015,7 -3000,7 +3022,7 @@@ msgstr " "मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हालाहे पॅकेज स्वहस्ते " "स्थिर/निश्चित करण्याची गरज आहे." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3023,31 -3008,31 +3030,31 @@@ msgstr " "पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" "ठिकाण %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "आकार जुळतनाही" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "%s डायव्हर्जन फाईलमध्ये अवैध ओळ आहे:" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" @@@ -3145,22 -3130,22 +3152,22 @@@ msgstr "नविन स्त्रो msgid "Source list entries for this disc are:\n" msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i माहितीसंच लिहिले.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" @@@ -3175,17 -3160,17 +3182,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "हॅश बेरीज जुळत नाही" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "संस्थापन खंडित करत आहे." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3249,7 -3234,7 +3245,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/nb.po index b51e2be57,397e74536..99544811d --- a/po/nb.po +++ b/po/nb.po @@@ -11,7 -11,7 +11,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian BokmÃ¥l <i18n-nb@lister.ping.uio.no>\n" @@@ -640,7 -640,7 +640,7 @@@ msgstr "Avbryter. msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke Ã¥ skaffe %s %s\n" @@@ -831,7 -831,7 +831,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislyktes" @@@ -1188,7 -1188,7 +1188,8 @@@ msgid "%s was already not hold.\n msgstr "%s er allerede nyeste versjon.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" @@@ -1397,7 -1397,7 +1398,7 @@@ msgstr "Tidsavbrudd pÃ¥ tilkoblingen ti msgid "Unable to accept connection" msgstr "Klarte ikke Ã¥ godta tilkoblingen" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved oppretting av nøkkel for fil" @@@ -1424,91 -1424,86 +1425,91 @@@ msgstr "Spørring msgid "Unable to invoke " msgstr "Klarte ikke Ã¥ starte" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Kobler til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Klarte ikke Ã¥ starte forbindelsen til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Klarte ikke Ã¥ koble til %s:%s (%s), tidsavbrudd pÃ¥ forbindelsen" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kobler til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Klarte ikke Ã¥ slÃ¥ opp «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Midlertidig feil ved oppslag av «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Klarte ikke koble til %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Minst en ugyldig signatur ble funnet." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Klarte ikke kjøre «gpgv» for Ã¥ verifisere signaturen (er gpgv installert?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Ukjent feil ved kjøring av gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "De følgende signaturene var ugyldige:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1548,43 -1543,43 +1549,43 @@@ msgstr "Denne HTTP-tjeneren har ødelag msgid "Unknown date format" msgstr "Ukjent datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Utvalget mislykkes" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Feil ved lesing fra tjeneren" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ødelagte hodedata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Forbindelsen mislykkes" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern feil" @@@ -1880,87 -1875,87 +1881,87 @@@ msgstr "Arkivet har ingen kontrollpost msgid "Unable to get a cursor" msgstr "Klarte ikke Ã¥ finne en peker" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Klarte ikke Ã¥ lese katalogen %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F:" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A:" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikke Ã¥ slÃ¥ opp %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Klarte ikke Ã¥ finne fram i treet" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Klarte ikke Ã¥ Ã¥pne %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikke Ã¥ lese lenken %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikke Ã¥ oppheve lenken %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikke Ã¥ lenke %s til %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa pÃ¥ %s B er nÃ¥dd.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arkivet har ikke noe pakkefelt" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen overstyringsoppføring\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikeholderen er %s, ikke %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen kildeoverstyringsoppføring\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har ingen binæroverstyringsoppføring heller\n" @@@ -2311,30 -2306,30 +2312,30 @@@ msgstr " "av brukeren." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lit %lim %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lit %lim %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%lim %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Fant ikke utvalget %s" @@@ -2404,16 -2399,6 +2405,16 @@@ msgstr "%c%s ... Feil msgid "%c%s... Done" msgstr "%c%s ... Ferdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2525,17 -2510,17 +2526,17 @@@ msgstr "Underprosessen %s mottok et min msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok signalet %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s ga en feilkode (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avsluttet uventet" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Klarte ikke Ã¥pne fila %s" @@@ -2582,6 -2567,6 +2583,12 @@@ msgstr "Problem ved oppheving av lenke msgid "Problem syncing the file" msgstr "Problem ved oppdatering av fila" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Ingen nøkkelring installert i %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Tomt pakkelager" @@@ -2807,7 -2792,7 +2814,7 @@@ msgid " msgstr "" "Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2815,11 -2800,11 +2822,11 @@@ msgstr " "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " "som holdes tilbake." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Klarer ikke Ã¥ rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2990,8 -2975,8 +2997,8 @@@ msgstr "klarte ikke Ã¥ endre navnet, % msgid "MD5Sum mismatch" msgstr "Feil MD5sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hashsummen stemmer ikke" @@@ -3024,7 -3009,7 +3031,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3034,12 -3019,12 +3041,12 @@@ msgstr " "forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-feil: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3048,7 -3033,7 +3055,7 @@@ msgstr " "Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " "selv (fordi arkitekturen mangler)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3057,37 -3042,37 +3064,37 @@@ msgstr " "Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne denne " "pakken selv." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Feil størrelse" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Ingen avsnitt i Release-fila %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ingen sjekksumoppføring i Release-fila %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ugyldig «Date»-oppføring i Release-fila %s" @@@ -3187,22 -3172,22 +3194,22 @@@ msgstr "Skriver ny kildeliste\n msgid "Source list entries for this disc are:\n" msgstr "Kildelisteoppføringer for denne CD-en er:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i feile filer.\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3217,17 -3202,17 +3224,6 @@@ msgstr "Klarte ikke finne autentisering msgid "Hash mismatch for: %s" msgstr "Hashsummen stemmer ikke for: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Ingen nøkkelring installert i %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3298,7 -3283,7 +3294,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ne.po index 02c55d0d8,672ecbdc2..d24645449 --- a/po/ne.po +++ b/po/ne.po @@@ -6,7 -6,7 +6,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\n" @@@ -633,7 -633,7 +633,7 @@@ msgstr "परित्याग गर msgid "Do you want to continue [Y/n]? " msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तान्न असफल भयो\n" @@@ -818,7 -818,7 +818,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "असफल भयो" @@@ -1160,7 -1160,7 +1160,8 @@@ msgid "%s was already not hold.\n msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" @@@ -1367,7 -1367,7 +1368,7 @@@ msgstr "डेटा सकेटकॠmsgid "Unable to accept connection" msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "समस्या द्रुतान्वेषण फाइल" @@@ -1394,91 -1394,86 +1395,91 @@@ msgstr "क्वेरी msgid "Unable to invoke " msgstr "आह्वान गर्न असक्षम भयो" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) मा जडान गरिदैछ" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s मा जडान गरिदैछ" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s' हल गर्न सकिएन" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' हल गर्दा अस्थायी असफल" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s मा जडान गर्न असफल भयो:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gpgv स्थापना भयो?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1516,43 -1511,43 +1517,43 @@@ msgstr "HTTP सर्भर संग msgid "Unknown date format" msgstr "अज्ञात मिति ढाँचा" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "असफल चयन गर्नुहोस्" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "जडान समय सकियो" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "सर्भरबाट त्रुटि पढिदैछ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "खराब हेडर डेटा" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "जडान असफल भयो" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "आन्तरिक त्रुटि" @@@ -1843,87 -1838,87 +1844,87 @@@ msgstr "संग्रह संग ठmsgid "Unable to get a cursor" msgstr "कर्सर प्राप्त गर्न असक्षम भयो" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: डाइरेक्ट्री %s पढ्न असक्षम\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s स्थिर गर्न असक्षम\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: फाइलमा त्रुटिहरू लागू गर्नुहोस्" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "%s हल गर्न असफल भयो" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "ट्री हिडाईँ असफल भयो" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s खोल्न असफल" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "लिङ्क पढ्न असफल %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "अनलिङ्क गर्न असफल %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s मा %s लिङ्क असफल भयो" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "यस %sB हिटको डि लिङ्क सिमा।\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "संग्रह संग कुनै प्याकेज फाँट छैन" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s संभारकर्ता %s हो %s होइन\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" @@@ -2268,30 -2263,30 +2269,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "चयन %s फेला पार्न सकिएन" @@@ -2361,16 -2356,6 +2362,16 @@@ msgstr "%c%s... त्रुटि! msgid "%c%s... Done" msgstr "%c%s... गरियो" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... गरियो" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2482,17 -2467,17 +2483,17 @@@ msgstr "सहायक प्रक् msgid "Sub-process %s received signal %u." msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "फाइल %s खोल्न सकिएन" @@@ -2539,6 -2524,6 +2540,12 @@@ msgstr "फाइल अनलिङ् msgid "Problem syncing the file" msgstr "फाइल गुप्तिकरण गर्दा समस्या" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "स्थापना परित्याग गरिदैछ ।" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "खाली प्याकेज क्यास" @@@ -2762,7 -2747,7 +2769,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2770,11 -2755,11 +2777,11 @@@ msgstr " "त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " "कारणले गर्दा हो ।" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2944,8 -2929,8 +2951,8 @@@ msgstr "पुन:नामकरण ठmsgid "MD5Sum mismatch" msgstr "MD5Sum मेल भएन" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum मेल भएन" @@@ -2978,7 -2963,7 +2985,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2986,12 -2971,12 +2993,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3000,7 -2985,7 +3007,7 @@@ msgstr " "%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " "निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3009,37 -2994,37 +3016,37 @@@ msgstr " "%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " "निश्चित गर्नुहोस् ।" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "साइज मेल खाएन" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "घुमाउरो फाइलमा अवैध लाइन:%s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" @@@ -3136,22 -3121,22 +3143,22 @@@ msgstr "नयाँ स्रोत ठmsgid "Source list entries for this disc are:\n" msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i रेकर्डहरू लेखियो ।\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" @@@ -3166,17 -3151,17 +3173,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "MD5Sum मेल भएन" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "स्थापना परित्याग गरिदैछ ।" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3240,7 -3225,7 +3236,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/nl.po index fc47d1e3f,67840c55b..4e4384919 --- a/po/nl.po +++ b/po/nl.po @@@ -11,7 -11,7 +11,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n" "Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n" @@@ -642,7 -642,7 +642,7 @@@ msgstr "Afbreken. msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s is mislukt %s\n" @@@ -836,7 -836,7 +836,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislukt" @@@ -1205,7 -1205,7 +1205,8 @@@ msgid "%s was already not hold.\n msgstr "%s is reeds de nieuwste versie.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Er is gewacht op %s, maar die kwam niet" @@@ -1413,7 -1413,7 +1414,7 @@@ msgstr "Datasocket verbinding is verlop msgid "Unable to accept connection" msgstr "Kan de verbinding niet aanvaarden" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Probleem bij het hashen van het bestand" @@@ -1440,94 -1440,89 +1441,94 @@@ msgstr "Zoekopdracht msgid "Unable to invoke " msgstr "Aanroepen mislukt van " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Kon niet verbinden met %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Er wordt verbinding gemaakt met %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kon '%s' niet vinden" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tijdelijke fout bij het opzoeken van '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kan geen verbinding maken met %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" "niet bepalen?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Er is tenminste één ongeldige ondertekening gevonden." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " "geïnstalleerd?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Onbekende fout bij het uitvoeren van gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "De volgende ondertekeningen waren ongeldig:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1569,44 -1564,44 +1570,44 @@@ msgstr "De bereik-ondersteuning van dez msgid "Unknown date format" msgstr "Onbekend datumformaat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Selectie is mislukt" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Verbinding verliep" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fout bij het schrijven naar bestand" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fout bij het schrijven naar het bestand" -#: methods/http.cc:919 +#: methods/http.cc:923 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:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fout bij het lezen van de server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Foute koptekstdata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Verbinding mislukt" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Interne fout" @@@ -1908,87 -1903,87 +1909,87 @@@ msgstr "Archief heeft geen 'control'-re msgid "Unable to get a cursor" msgstr "Kan geen cursor verkrijgen" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kon map %s niet lezen\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Kon de status van %s niet opvragen\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Er zijn fouten van toepassing op het bestand " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Oplossen van %s is mislukt" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Doorlopen boomstructuur is mislukt" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Openen van %s is mislukt" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " OntlLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "readlink op %s is mislukt" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Ontlinken van %s is mislukt" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linken van %s aan %s is mislukt" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Ontlinklimiet van %sB bereikt.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archief heeft geen 'package'-veld" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s heeft geen voorrangsingang\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s beheerder is %s, niet %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s heeft geen voorrangsingang voor bronpakketten\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n" @@@ -2338,30 -2333,30 +2339,30 @@@ msgstr " "door de gebruiker is uitgeschakeld." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %liu %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%liu %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Selectie %s niet gevonden" @@@ -2434,16 -2429,6 +2435,16 @@@ msgstr "%c%s... Fout! msgid "%c%s... Done" msgstr "%c%s... Klaar" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Klaar" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2560,17 -2545,17 +2561,17 @@@ msgstr "Subproces %s ontving een segmen msgid "Sub-process %s received signal %u." msgstr "Subproces %s ontving signaal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Subproces %s gaf de foutcode %u terug" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subproces %s sloot onverwacht af" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Kon het bestand %s niet openen" @@@ -2617,6 -2602,6 +2618,12 @@@ msgstr "Probleem bij het ontlinken van msgid "Problem syncing the file" msgstr "Probleem bij het synchroniseren van het bestand" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Geen sleutelring geïnstalleerd in %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Lege pakketcache" @@@ -2845,7 -2830,7 +2852,7 @@@ msgstr " "Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " "gevonden worden." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2853,11 -2838,11 +2860,11 @@@ msgstr " "Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " "veroorzaakt worden door vastgehouden pakketten." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3038,8 -3023,8 +3045,8 @@@ msgstr "herbenoeming is mislukt, %s (% msgid "MD5Sum mismatch" msgstr "MD5-som komt niet overeen" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash-som komt niet overeen" @@@ -3072,7 -3057,7 +3079,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3083,12 -3068,12 +3090,12 @@@ msgstr " "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fout: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3097,7 -3082,7 +3104,7 @@@ msgstr " "Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " "dit pakket handmatig moet repareren (wegens missende architectuur)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, fuzzy, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3106,7 -3091,7 +3113,7 @@@ msgstr " "Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " "dit pakket handmatig moet repareren." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3114,31 -3099,31 +3121,31 @@@ msgstr " "De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " "pakket %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Grootte komt niet overeen" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Kon Release-bestand %s niet ontleden" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Geen secties in Release-bestand %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Geen Hash-vermelding in Release-bestand %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Geen 'Date'-vermelding in Release-bestand %s" @@@ -3238,22 -3223,22 +3245,22 @@@ msgstr "Nieuwe bronlijst wordt weggesch msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-ingangen voor de schijf zijn:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "%i records weggeschreven.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i records weggeschreven met %i missende bestanden.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3270,17 -3255,17 +3277,6 @@@ msgstr "Kan geen authenticatierecord vi msgid "Hash mismatch for: %s" msgstr "Hash-som komt niet overeen voor: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Geen sleutelring geïnstalleerd in %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3353,7 -3338,7 +3349,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/nn.po index 9c4e9970e,95b70357e..1b1eb7fd3 --- a/po/nn.po +++ b/po/nn.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n" "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n" @@@ -645,7 -645,7 +645,7 @@@ msgstr "Avbryt. msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" @@@ -830,7 -830,7 +830,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislukkast" @@@ -1175,7 -1175,7 +1175,8 @@@ msgid "%s was already not hold.\n msgstr "Den nyaste versjonen av %s er installert frå før.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Venta på %s, men den fanst ikkje" @@@ -1384,7 -1384,7 +1385,7 @@@ msgstr "Tidsavbrot på tilkopling til da msgid "Unable to accept connection" msgstr "Klarte ikkje godta tilkoplinga" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved oppretting av nøkkel for fil" @@@ -1411,91 -1411,86 +1412,91 @@@ msgstr "Spørjing msgid "Unable to invoke " msgstr "Klarte ikkje starta " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Koplar til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Klarte ikkje kopla til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Koplar til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Klarte ikkje slå opp «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Mellombels feil ved oppslag av «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Klarte ikkje kopla til %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 #, fuzzy msgid "The following signatures were invalid:\n" msgstr "Dei følgjande tilleggspakkane vil verta installerte:" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1533,43 -1528,43 +1534,43 @@@ msgstr "Denne HTTP-tenaren har øydelag msgid "Unknown date format" msgstr "Ukjend datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Utvalet mislukkast" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsavbrot på sambandet" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Feil ved lesing frå tenaren" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Øydelagde hovuddata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Sambandet mislukkast" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern feil" @@@ -1855,87 -1850,87 +1856,87 @@@ msgstr "Arkivet har ingen kontrollpost msgid "Unable to get a cursor" msgstr "Klarte ikkje få peikar" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Å: Klarte ikkje lesa katalogen %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "Å: Klarte ikkje få status til %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "Å: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikkje slå opp %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Treklatring mislukkast" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Klarte ikkje opna %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikkje lesa lenkja %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikkje oppheva lenkja %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikkje lenkja %s til %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa på %sB er nådd.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arkivet har ikkje noko pakkefelt" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s har inga overstyringsoppføring\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikehaldaren er %s, ikkje %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s har inga overstyringsoppføring\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s har inga overstyringsoppføring\n" @@@ -2281,30 -2276,30 +2282,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Fann ikkje utvalet %s" @@@ -2374,16 -2369,6 +2375,16 @@@ msgstr "%c%s ... Feil msgid "%c%s... Done" msgstr "%c%s ... Ferdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2495,17 -2480,17 +2496,17 @@@ msgstr "Underprosessen %s mottok ein se msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok ein segmenteringsfeil." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s returnerte ein feilkode (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avslutta uventa" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Klarte ikkje opna fila %s" @@@ -2552,6 -2537,6 +2553,12 @@@ msgstr "Problem ved oppheving av lenkj msgid "Problem syncing the file" msgstr "Problem ved synkronisering av fila" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Avbryt installasjon." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Tomt pakkelager" @@@ -2776,7 -2761,7 +2783,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2784,12 -2769,12 +2791,12 @@@ msgstr " "Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " "som er haldne tilbake." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Klarte ikkje retta opp problema. Nokre øydelagde pakkar er haldne tilbake." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2963,8 -2948,8 +2970,8 @@@ msgstr "endring av namn mislukkast, %s msgid "MD5Sum mismatch" msgstr "Feil MD5-sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "Feil MD5-sum" @@@ -2997,7 -2982,7 +3004,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3005,12 -2990,12 +3012,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3019,7 -3004,7 +3026,7 @@@ msgstr " "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv " "(fordi arkitekturen manglar)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3027,38 -3012,38 +3034,38 @@@ msgstr "" "Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, 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:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Feil storleik" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Klarte ikkje tolka pakkefila %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Merk, vel %s i staden for %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ugyldig linje i avleiingsfila: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Klarte ikkje tolka pakkefila %s (1)" @@@ -3155,22 -3140,22 +3162,22 @@@ msgstr "Skriv ny kjeldeliste\n msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppføringar for denne disken er:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Skreiv %i postar.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skreiv %i postar med %i manglande filer.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skreiv %i postar med %i filer som ikkje passa\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3185,17 -3170,17 +3192,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Feil MD5-sum" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Avbryt installasjon." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3259,7 -3244,7 +3255,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/pl.po index d8e9d2490,04eba799f..218b37693 --- a/po/pl.po +++ b/po/pl.po @@@ -11,7 -11,7 +11,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@@ -640,7 -640,7 +640,7 @@@ msgstr "Przerwane. msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udało się pobrać %s %s\n" @@@ -849,7 -849,7 +849,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Nie udało się" @@@ -1222,7 -1222,7 +1222,8 @@@ msgid "%s was already not hold.\n msgstr "%s został już odznaczony jako zatrzymany.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Oczekiwano na proces %s, ale nie było go" @@@ -1454,7 -1454,7 +1455,7 @@@ msgstr "Przekroczony czas połączenia msgid "Unable to accept connection" msgstr "Nie udało się przyjąć połączenia" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Nie udało się obliczyć skrótu pliku" @@@ -1481,93 -1481,88 +1482,93 @@@ msgstr "Info msgid "Unable to invoke " msgstr "Nie można wywołać " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Łączenie z %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, 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:107 +#: methods/connect.cc:108 #, 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:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Łączenie z %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nie udało się połączyć z %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " "zainstalowane?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Nieznany błąd podczas uruchamiania gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Następujące podpisy były błędne:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1607,43 -1602,43 +1608,43 @@@ msgstr "Ten serwer HTTP nieprawidłowo msgid "Unknown date format" msgstr "Nieznany format daty" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Operacja select nie powiodła się" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Przekroczenie czasu połączenia" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Błąd czytania z serwera" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Błędne dane nagłówka" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Połączenie nie powiodło się" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Błąd wewnętrzny" @@@ -1941,87 -1936,87 +1942,87 @@@ msgstr "Archiwum nie posiada rekordu ko msgid "Unable to get a cursor" msgstr "Nie udało się pobrać kursora" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nie udało się odczytać katalogu %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nie można wykonać operacji stat na %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Błędy odnoszą się do pliku " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Nie udało się przetłumaczyć nazwy %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Przejście po drzewie nie powiodło się" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Nie udało się otworzyć %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odłączenie %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Nie udało się odczytać dowiązania %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Nie udało się usunąć %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nie udało się dowiązać %s do %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Osiągnięto ograniczenie odłączania %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archiwum nie posiadało pola pakietu" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nie posiada wpisu w pliku override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " opiekunem %s jest %s, a nie %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nie posiada wpisu w pliku override źródeł\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nie posiada również wpisu w pliku override binariów\n" @@@ -2371,30 -2366,30 +2372,30 @@@ msgstr " "zostało wyłączone przez użytkownika." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lidni %lig %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lig %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Nie odnaleziono wyboru %s" @@@ -2466,16 -2461,6 +2467,16 @@@ msgstr "%c%s... Błąd! msgid "%c%s... Done" msgstr "%c%s... Gotowe" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Gotowe" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2592,17 -2577,17 +2593,17 @@@ msgstr "Podproces %s spowodował narusz msgid "Sub-process %s received signal %u." msgstr "Podproces %s otrzymał sygnał %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Podproces %s zwrócił kod błędu (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s zakończył się niespodziewanie" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nie udało się otworzyć pliku %s" @@@ -2649,6 -2634,6 +2650,12 @@@ msgstr "Problem przy odlinkowywaniu pli msgid "Problem syncing the file" msgstr "Problem przy zapisywaniu pliku na dysk" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Brak zainstalowanej bazy kluczy w %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Pusty magazyn podręczny pakietów" @@@ -2878,7 -2863,7 +2885,7 @@@ msgstr " "Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " "archiwum." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2886,11 -2871,11 +2893,11 @@@ msgstr " "Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " "zatrzymanymi pakietami." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3061,8 -3046,8 +3068,8 @@@ msgstr "nie udało się zmienić nazwy msgid "MD5Sum mismatch" msgstr "Błędna suma MD5" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Błędna suma kontrolna" @@@ -3098,7 -3083,7 +3105,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3108,12 -3093,12 +3115,12 @@@ msgstr " "w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Błąd GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3122,7 -3107,7 +3129,7 @@@ msgstr " "Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " "będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3131,38 -3116,38 +3138,38 @@@ msgstr " "Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " "będzie ręcznie naprawić ten pakiet." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Błędny rozmiar" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Nie udało się przeanalizować pliku Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Brak sekcji w pliku Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Brak wpisu Hash w pliku Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Nieprawidłowy wpis Date w pliku Release %s" @@@ -3262,22 -3247,22 +3269,22 @@@ msgstr "Zapisywanie nowej listy źróde msgid "Source list entries for this disc are:\n" msgstr "Źródła dla tej płyty to:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisano %i rekordów.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3292,17 -3277,17 +3299,6 @@@ msgstr "Nie udało się znaleźć wpis msgid "Hash mismatch for: %s" msgstr "Błędna suma kontrolna dla: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Plik %s nie zaczyna się wiadomością podpisaną w trybie clearsign" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Brak zainstalowanej bazy kluczy w %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3379,7 -3364,7 +3375,7 @@@ msgstr " "Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " "prawidłowego komunikatu o błędzie" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" @@@ -3548,6 -3533,6 +3544,9 @@@ msgstr " msgid "Not locked" msgstr "Niezablokowany" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Plik %s nie zaczyna się wiadomością podpisaną w trybie clearsign" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Pomijanie nieistniejącego pliku %s" diff --combined po/pt.po index b6b5d8b0b,05fcc2142..073a34c0b --- a/po/pt.po +++ b/po/pt.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@@ -636,7 -636,7 +636,7 @@@ msgstr "Abortado. msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" @@@ -830,7 -830,7 +830,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falhou" @@@ -1201,7 -1201,7 +1201,8 @@@ msgid "%s was already not hold.\n msgstr "%s já estava para não manter.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperou por %s mas não estava lá" @@@ -1428,7 -1428,7 +1429,7 @@@ msgstr "Ligação de socket de dados ex msgid "Unable to accept connection" msgstr "Impossível aceitar ligação" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" @@@ -1455,94 -1455,89 +1456,94 @@@ msgstr "Pesquisa msgid "Unable to invoke " msgstr "Não foi possível invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "A Ligar a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Não posso iniciar a ligação para %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "A ligar a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Não foi possível resolver '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Falha temporária a resolver '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Não foi possível ligar a %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Assinatura válida, mas não foi possível determinar a impressão " "digital da chave?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Pelo menos uma assinatura inválida foi encontrada." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " "instalado?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Erro desconhecido ao executar gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "As seguintes assinaturas eram inválidas:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1582,43 -1577,43 +1583,43 @@@ msgstr "Este servidor HTTP possui supor msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "A selecção falhou" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "O tempo da ligação expirou" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Erro ao escrever para o ficheiro de saída" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Erro ao escrever para ficheiro" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Erro ao escrever para o ficheiro" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Dados de cabeçalho errados" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "A ligação falhou" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Erro interno" @@@ -1916,87 -1911,87 +1917,87 @@@ msgstr "O arquivo não tem registo de c msgid "Unable to get a cursor" msgstr "Não foi possível obter um cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Não foi possível ler o directório %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Não foi possível fazer stat %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Os erros aplicam-se ao ficheiro " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Falhou resolver %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Falhou abrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Falhou o readlink %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Falhou o unlink %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ligar %s a %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arquivo não possuía campo package" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " o maintainer de %s é %s, não %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui fonte de entrada de 'override'\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada binária de 'override'\n" @@@ -2344,30 -2339,30 +2345,30 @@@ msgstr " "está desabilitado pelo utilizador." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "A selecção %s não foi encontrada" @@@ -2440,16 -2435,6 +2441,16 @@@ msgstr "%c%s... Erro ! msgid "%c%s... Done" msgstr "%c%s... Pronto" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2569,17 -2554,17 +2570,17 @@@ msgstr "O sub-processo %s recebeu uma f msgid "Sub-process %s received signal %u." msgstr "O sub-processo %s recebeu o sinal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "O sub-processo %s retornou um código de erro (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O sub-processo %s terminou inesperadamente" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Não foi possível abrir ficheiro o %s" @@@ -2626,6 -2611,6 +2627,12 @@@ msgstr "Problema ao remover o link do f msgid "Problem syncing the file" msgstr "Problema sincronizando o ficheiro" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Nenhum keyring instalado em %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache de pacotes vazia" @@@ -2855,7 -2840,7 +2862,7 @@@ msgstr " "O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " "repositório para o mesmo." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2863,13 -2848,13 +2870,13 @@@ msgstr " "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " "estragados." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3049,8 -3034,8 +3056,8 @@@ msgstr "falhou renomear, %s (%s -> %s). msgid "MD5Sum mismatch" msgstr "MD5Sum não coincide" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Código de verificação hash não coincide" @@@ -3088,7 -3073,7 +3095,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3099,12 -3084,12 +3106,12 @@@ msgstr " "GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Erro GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3114,7 -3099,7 +3121,7 @@@ msgstr " "significar que você precisa corrigir manualmente este pacote. (devido a " "arquitectura em falta)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3123,7 -3108,7 +3130,7 @@@ msgstr " "Não foi possível localizar arquivo para o pacote %s. Isto pode significar " "que você precisa consertar manualmente este pacote." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3131,31 -3116,31 +3138,31 @@@ msgstr " "Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " "para o pacote %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Tamanho incorrecto" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Não foi possível fazer parse ao ficheiro Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Nenhuma secção, no ficheiro Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Nenhuma entrada hash no ficheiro Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Entrada, 'Date', inválida no ficheiro Release %s" @@@ -3255,22 -3240,22 +3262,22 @@@ msgstr "A escrever lista de novas sourc msgid "Source list entries for this disc are:\n" msgstr "As entradas de listas de Source para este Disco são:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Escreveu %i registos.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Escreveu %i registos com %i ficheiros em falta.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3287,17 -3272,17 +3294,6 @@@ msgstr "Não foi possível encontrar re msgid "Hash mismatch for: %s" msgstr "Hash não coincide para: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "O ficheiro %s não começa com uma mensagem assinada" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Nenhum keyring instalado em %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3370,7 -3355,7 +3366,7 @@@ msgstr "Preparar para receber solução msgid "External solver failed without a proper error message" msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Executar resolvedor externo" @@@ -3539,6 -3524,6 +3535,9 @@@ msgstr " msgid "Not locked" msgstr "Sem acesso exclusivo" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "O ficheiro %s não começa com uma mensagem assinada" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "A saltar ficheiro %s inexistente" diff --combined po/pt_BR.po index bc73f09d6,593a509e3..b4ecf3ed0 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n" "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." @@@ -641,7 -641,7 +641,7 @@@ msgstr "Abortar. msgid "Do you want to continue [Y/n]? " msgstr "Você quer continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou ao buscar %s %s\n" @@@ -835,7 -835,7 +835,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calculando atualização... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falhou" @@@ -1190,7 -1190,7 +1190,8 @@@ msgid "%s was already not hold.\n msgstr "%s já é a versão mais nova.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Esperado %s mas este não estava lá" @@@ -1397,7 -1397,7 +1398,7 @@@ msgstr "Conexão do socket de dados exp msgid "Unable to accept connection" msgstr "Impossível aceitar conexão" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema criando o hash do arquivo" @@@ -1424,95 -1424,90 +1425,95 @@@ msgstr "Pesquisa msgid "Unable to invoke " msgstr "Impossível invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando em %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Não foi possível iniciar a conexão para %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Não foi possível resolver '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Falha temporária resolvendo '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Impossível conectar em %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Erro interno: Assinatura boa, mas não foi possível determinar a impressão " "digital da chave?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Ao menos uma assinatura inválida foi encontrada." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Não foi possível executar '%s' para verificar a assinatura (o gpgv está " "instalado?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Erro desconhecido executando gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "As seguintes assinaturas eram inválidas:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1552,43 -1547,43 +1553,43 @@@ msgstr "Este servidor HTTP possui supor msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Seleção falhou" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Conexão expirou" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Erro escrevendo para arquivo de saída" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Erro escrevendo para arquivo" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Erro escrevendo para o arquivo" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Erro lendo do servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Dados de cabeçalho ruins" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Conexão falhou" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Erro interno" @@@ -1886,87 -1881,87 +1887,87 @@@ msgstr "Repositório não possui regist msgid "Unable to get a cursor" msgstr "Impossível obter um cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Impossível ler o diretório %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Impossível executar \"stat\" em %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Erros que se aplicam ao arquivo " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Falhou ao resolver %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Falhou ao abrir %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Falhou ao executar \"readlink\" %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Falhou ao executar \"unlink\" %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ao ligar %s a %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Repositório não possuía campo pacote" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " mantenedor de %s é %s, não %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui entrada override fonte\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada override binária\n" @@@ -2313,30 -2308,30 +2314,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Seleção %s não encontrada" @@@ -2408,16 -2403,6 +2409,16 @@@ msgstr "%c%s... Erro! msgid "%c%s... Done" msgstr "%c%s... Pronto" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2530,17 -2515,17 +2531,17 @@@ msgstr "Sub-processo %s recebeu uma fal msgid "Sub-process %s received signal %u." msgstr "Sub-processo %s recebeu uma falha de segmentação." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Sub-processo %s retornou um código de erro (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Sub-processo %s finalizou inesperadamente" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Não foi possível abrir arquivo %s" @@@ -2587,6 -2572,6 +2588,12 @@@ msgstr "Problema removendo o arquivo msgid "Problem syncing the file" msgstr "Problema sincronizando o arquivo" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Abortando instalação." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache de pacotes vazio" @@@ -2817,7 -2802,7 +2824,7 @@@ msgstr " "O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " "arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2825,11 -2810,11 +2832,11 @@@ msgstr " "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3007,8 -2992,8 +3014,8 @@@ msgstr "renomeação falhou, %s (%s -> msgid "MD5Sum mismatch" msgstr "MD5Sum incorreto" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash Sum incorreto" @@@ -3040,7 -3025,7 +3047,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3048,12 -3033,12 +3055,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3063,7 -3048,7 +3070,7 @@@ msgstr " "que você precisa consertar manualmente este pacote. (devido a arquitetura " "não especificada)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3072,7 -3057,7 +3079,7 @@@ msgstr " "Não foi possível localizar arquivo para o pacote %s. Isto pode significar " "que você precisa consertar manualmente este pacote." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3080,31 -3065,31 +3087,31 @@@ msgstr " "Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" "\" para o pacote %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Tamanho incorreto" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Impossível analisar arquivo de pacote %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Nota, selecionando %s ao invés de %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Linha inválida no arquivo de desvios: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Impossível analisar arquivo de pacote %s (1)" @@@ -3202,22 -3187,22 +3209,22 @@@ msgstr "Gravando nova lista de fontes\n msgid "Source list entries for this disc are:\n" msgstr "Entradas na lista de fontes para este disco são:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Gravados %i registros.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Gravados %i registros com %i arquivos faltando.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Gravados %i registros com %i arquivos que não combinam\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3234,17 -3219,17 +3241,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Hash Sum incorreto" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Abortando instalação." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3308,7 -3293,7 +3304,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ro.po index f21f604ad,e4296323a..662d0c729 --- a/po/ro.po +++ b/po/ro.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n" "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" @@@ -636,7 -636,7 +636,7 @@@ msgstr "Renunțare. msgid "Do you want to continue [Y/n]? " msgstr "Vreți să continuați [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Eșec la aducerea lui %s %s\n" @@@ -835,7 -835,7 +835,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Eșec" @@@ -1192,7 -1192,7 +1192,8 @@@ msgid "%s was already not hold.\n msgstr "%s este deja la cea mai nouă versiune.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Așteptat %s, dar n-a fost acolo" @@@ -1401,7 -1401,7 +1402,7 @@@ msgstr "Timpul de conectare la socket-u msgid "Unable to accept connection" msgstr "Nu s-a putut accepta conexiune" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problemă la calcularea dispersiei pentru fișierul" @@@ -1428,95 -1428,90 +1429,95 @@@ msgstr "Interogare msgid "Unable to invoke " msgstr "Nu s-a putut invoca" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectare la %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nu s-a putut crea un socket pentru %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Nu s-a putut realiza conexiunea cu %s:%s (%s), timpul de conectare expirat" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectare la %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nu s-a putut rezolva „%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Eșec temporar la rezolvarea lui „%s”" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nu s-a putut realiza conexiunea cu %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina " "amprenta digitale a cheii?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Cel puțin o semnătură nevalidă a fost întâlnită." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Eroare necunoscută în timp ce se execută gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Următoarele semnături nu au fost valide:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1556,44 -1551,44 +1557,44 @@@ msgstr "Acest server HTTP are un supor msgid "Unknown date format" msgstr "Format dată necunoscut" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Selecția a eșuat" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Timp de conectare expirat" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Eroare la scrierea fișierului de rezultat" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Eroare la scrierea în fișier" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Eroare la scrierea în fișierul" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Eroare la citirea de la server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Antet de date necorespunzător" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Conectare eșuată" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Eroare internă" @@@ -1893,87 -1888,87 +1894,87 @@@ msgstr "Arhiva nu are înregistrare de msgid "Unable to get a cursor" msgstr "Nu s-a putut obține un cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nu s-a putut citi directorul %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nu s-a putut efectua „stat” pentru %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "A: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Erori la fișierul " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Eșec la „resolve” pentru %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Parcurgerea arborelui a eșuat" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Eșec la „open” pentru %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Dezlegare %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Eșec la „readlink” pentru %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Eșec la „unlink” pentru %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Eșec la „link” între %s și %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limita de %sB a dezlegării a fost atinsă.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arhiva nu are câmp de pachet" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nu are intrare de înlocuire\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s responsabil este %s nu %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nu are nici o intrare sursă de înlocuire\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nu are nici intrare binară de înlocuire\n" @@@ -2323,30 -2318,30 +2324,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Selecția %s nu a fost găsită" @@@ -2418,16 -2413,6 +2419,16 @@@ msgstr "%c%s... Eroare! msgid "%c%s... Done" msgstr "%c%s... Terminat" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Terminat" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2540,17 -2525,17 +2541,17 @@@ msgstr "Subprocesul %s a primit o eroar msgid "Sub-process %s received signal %u." msgstr "Subprocesul %s a primit o eroare de segmentare." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Subprocesul %s a întors un cod de eroare (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subprocesul %s s-a terminat brusc" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nu s-a putut deschide fișierul %s" @@@ -2597,6 -2582,6 +2598,12 @@@ msgstr "Problemă la dezlegarea fișier msgid "Problem syncing the file" msgstr "Problemă în timpul sincronizării fișierului" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Abandonez instalarea." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Cache gol de pachet" @@@ -2821,7 -2806,7 +2828,7 @@@ msgid " msgstr "" "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2829,11 -2814,11 +2836,11 @@@ msgstr " "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " "cauzată de pachete ținute." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3012,8 -2997,8 +3019,8 @@@ msgstr "redenumire eșuată, %s (%s -> msgid "MD5Sum mismatch" msgstr "Nepotrivire MD5Sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Nepotrivire la suma de căutare" @@@ -3047,7 -3032,7 +3054,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3055,12 -3040,12 +3062,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3069,7 -3054,7 +3076,7 @@@ msgstr " "N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " "că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3078,7 -3063,7 +3085,7 @@@ msgstr " "N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " "că aveți nevoie să depanați manual acest pachet." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3086,31 -3071,31 +3093,31 @@@ msgstr " "Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " "pachetul %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Nepotrivire dimensiune" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Nu s-a putut analiza fișierul pachet %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Notă, se selectează %s în locul lui %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Nu s-a putut analiza fișierul pachet %s (1)" @@@ -3209,22 -3194,22 +3216,22 @@@ msgstr "Scriere noua listă sursă\n msgid "Source list entries for this disc are:\n" msgstr "Intrările listei surselor pentru acest disc sunt:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "S-au scris %i înregistrări.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3240,17 -3225,17 +3247,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Nepotrivire la suma de căutare" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Abandonez instalarea." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3314,7 -3299,7 +3310,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/ru.po index 488881aa5,5cf651fff..73fed5e39 --- a/po/ru.po +++ b/po/ru.po @@@ -13,7 -13,7 +13,7 @@@ msgid " msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@@ -647,7 -647,7 +647,7 @@@ msgstr "Аварийное заверш msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не удалось получить %s %s\n" @@@ -846,7 -846,7 +846,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Расчёт обновлений…" -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Неудачно" @@@ -1217,7 -1217,7 +1217,8 @@@ msgid "%s was already not hold.\n msgstr "%s уже помечен как не зафиксированный.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Ожидалось завершение процесса %s, но он не был запущен" @@@ -1450,7 -1450,7 +1451,7 @@@ msgstr "Время установлен msgid "Unable to accept connection" msgstr "Невозможно принять соединение" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблема при хешировании файла" @@@ -1477,92 -1477,87 +1478,92 @@@ msgstr "Запрос msgid "Unable to invoke " msgstr "Невозможно вызвать " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Соединение с %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Невозможно инициализировать соединение с %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Соединение с %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Не удалось найти IP-адрес для «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Временная ошибка при попытке получить IP-адрес «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Невозможно соединиться с %s: %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " "ключа?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Найдена как минимум одна неправильная подпись." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Неизвестная ошибка при выполнении gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Следующие подписи неверные:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1602,43 -1597,43 +1603,43 @@@ msgstr "Этот HTTP-сервер нРmsgid "Unknown date format" msgstr "Неизвестный формат данных" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Ошибка в select" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Время ожидания для соединения истекло" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Ошибка записи в выходной файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Ошибка записи в файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Ошибка записи в файл" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Ошибка чтения, удалённый сервер прервал соединение" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Ошибка чтения с сервера" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Неверный заголовок данных" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Соединение разорвано" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Внутренняя ошибка" @@@ -1938,87 -1933,87 +1939,87 @@@ msgstr "В архиве нет Ð¿Ð¾Ð»Ñ msgid "Unable to get a cursor" msgstr "Невозможно получить курсор" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Не удалось прочитать каталог %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Не удалось прочитать атрибуты %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Ошибки относятся к файлу " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Не удалось проследовать по ссылке %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Не удалось совершить обход дерева" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Не удалось открыть %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Не удалось прочесть ссылку %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Не удалось удалить %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Не удалось создать ссылку %s на %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Превышен лимит в %sB в DeLink.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "В архиве нет поля package" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " Нет записи о переназначении (override) для %s\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакет %s сопровождает %s, а не %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " Нет записи source override для %s\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " Нет записи binary override для %s\n" @@@ -2367,30 -2362,30 +2368,30 @@@ msgstr " "отключено пользователем." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liч %liмин %liс" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%liч %liмин %liс" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%liмин %liс" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%liс" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Не найдено: %s" @@@ -2464,16 -2459,6 +2465,16 @@@ msgstr "%c%s… Ошибка! msgid "%c%s... Done" msgstr "%c%s… Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2592,17 -2577,17 +2593,17 @@@ msgstr " msgid "Sub-process %s received signal %u." msgstr "Порождённый процесс %s получил сигнал %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Порождённый процесс %s вернул код ошибки (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Порождённый процесс %s неожиданно завершился" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Не удалось открыть файл %s" @@@ -2650,6 -2635,6 +2651,12 @@@ msgstr "Проблема при удаРmsgid "Problem syncing the file" msgstr "Проблема при синхронизации файла" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Связка ключей в %s не установлена." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Кэш пакетов пуст" @@@ -2880,7 -2865,7 +2887,7 @@@ msgid " msgstr "" "Пакет %s нуждается в переустановке, но найти архив для него не удалось." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2888,11 -2873,11 +2895,11 @@@ msgstr " "Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " "может быть вызвано отложенными (held) пакетами." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3068,8 -3053,8 +3075,8 @@@ msgstr "переименовать нРmsgid "MD5Sum mismatch" msgstr "MD5Sum не совпадает" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Хеш сумма не совпадает" @@@ -3105,7 -3090,7 +3112,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3115,12 -3100,12 +3122,12 @@@ msgstr " "использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Ошибка GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3129,7 -3114,7 +3136,7 @@@ msgstr " "Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " "вручную исправить этот пакет (возможно, пропущен arch)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3138,37 -3123,37 +3145,37 @@@ msgstr " "Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " "вручную исправить этот пакет." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Не совпадает размер" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Невозможно разобрать содержимое файла Release (%s)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Отсутствуют разделы в файле Release (%s)" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Отсутствуют элементы Hash в файле Release (%s)" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Неправильный элемент «Valid-Until» в файле Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Неправильный элемент «Date» в файле Release %s" @@@ -3268,22 -3253,22 +3275,22 @@@ msgstr "Запись нового спРmsgid "Source list entries for this disc are:\n" msgstr "Записи в списке источников для этого диска:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Сохранено %i записей.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Сохранено %i записей с %i несовпадающими файлами\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3300,17 -3285,17 +3307,6 @@@ msgstr "Не удалось найти msgid "Hash mismatch for: %s" msgstr "Не совпадает хеш сумма для: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Файл %s не начинается с прозрачно подписанного сообщения" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Связка ключей в %s не установлена." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3383,7 -3368,7 +3379,7 @@@ msgstr "Подготовка к Ð¿Ñ€Ð¸Ñ msgid "External solver failed without a proper error message" msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Запустить внешний решатель" @@@ -3552,6 -3537,6 +3548,9 @@@ msgstr " msgid "Not locked" msgstr "Не заблокирован" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Файл %s не начинается с прозрачно подписанного сообщения" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Пропускается несуществующий файл %s" diff --combined po/sk.po index 8fb8e84e4,ece547d5c..d90f50995 --- a/po/sk.po +++ b/po/sk.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@@ -633,7 -633,7 +633,7 @@@ msgstr "PreruÅ¡ené. msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovaÅ¥ [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" @@@ -835,7 -835,7 +835,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Chyba" @@@ -1199,7 -1199,7 +1199,8 @@@ msgid "%s was already not hold.\n msgstr "%s bol už nastavený na nepodržanie.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Čakalo sa na %s, ale nebolo to tam" @@@ -1425,7 -1425,7 +1426,7 @@@ msgstr "Uplynulo spojenie dátového so msgid "Unable to accept connection" msgstr "Spojenie sa nedá prijaÅ¥" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problém s haÅ¡ovaním súboru" @@@ -1452,90 -1452,85 +1453,90 @@@ msgstr "Dotaz msgid "Unable to invoke " msgstr "Nedá sa vyvolaÅ¥ " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Pripája sa k %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nedá sa nadviazaÅ¥ spojenie na %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nedá sa pripojiÅ¥ k %s:%s (%s), uplynul čas spojenia" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nedá sa pripojiÅ¥ k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Pripája sa k %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nie je možné preložiÅ¥ „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Dočasné zlyhanie pri preklade „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nedá sa pripojiÅ¥ k %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiÅ¥ odtlačok kľúča?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Bola zistená aspoň jedna nesprávna signatúra." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Nedá sa spustiÅ¥ „gpgv“ kvôli overeniu podpisu (je nainÅ¡talované gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Neznáma chyba pri spustení gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Nasledovné signatúry sú neplatné:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1575,43 -1570,43 +1576,43 @@@ msgstr "Tento HTTP server má poÅ¡koden msgid "Unknown date format" msgstr "Neznámy formát dátumu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Výber zlyhal" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Uplynul čas spojenia" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupného súboru" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Chyba zápisu do súboru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Chyba zápisu do tohto súboru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Chyba pri čítaní zo servera" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Zlé dátové záhlavie" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Spojenie zlyhalo" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vnútorná chyba" @@@ -1903,87 -1898,87 +1904,87 @@@ msgstr "Archív nemá riadiaci záznam msgid "Unable to get a cursor" msgstr "Nedá sa získaÅ¥ kurzor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Adresár %s sa nedá čítaÅ¥\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s sa nedá vyhodnotiÅ¥\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Chyby sa týkajú súboru " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Chyba pri preklade %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Prechod stromom zlyhal" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "%s sa nedá otvoriÅ¥" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odlinkovanie %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Nie je možné vykonaÅ¥ readlink %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Nie je možné vykonaÅ¥ unlink %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepodarilo sa zlinkovaÅ¥ %s s %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Bol dosiahnutý odlinkovací limit %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Archív neobsahuje pole „package“" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žiadnu položku override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správcom %s je %s, nie %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žiadnu položku „source override“\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá žiadnu položku „binary override“\n" @@@ -2329,30 -2324,30 +2330,30 @@@ msgstr " "používateľ." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li d %li h %li min %li s" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%li h %li min %li s" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%li min %li s" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%li s" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Voľba %s nenájdená" @@@ -2424,16 -2419,6 +2425,16 @@@ msgstr "%c%s... Chyba! msgid "%c%s... Done" msgstr "%c%s... Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hotovo" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2546,17 -2531,17 +2547,17 @@@ msgstr "Podproces %s obdržal chybu seg msgid "Sub-process %s received signal %u." msgstr "Podproces %s dostal signál %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Podproces %s vrátil chybový kód (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neočakávane skončil" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Nedá sa otvoriÅ¥ súbor %s" @@@ -2603,6 -2588,6 +2604,12 @@@ msgstr "Problém pri odstraňovaní sú msgid "Problem syncing the file" msgstr "Problém pri synchronizovaní súboru" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "V %s nie je nainÅ¡talovaný žiaden zväzok kľúčov." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Vyrovnávacia pamäť balíkov je prázdna" @@@ -2827,7 -2812,7 +2834,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Je nutné preinÅ¡talovaÅ¥ balík %s, ale nedá sa nájsÅ¥ jeho archív." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2835,11 -2820,11 +2842,11 @@@ msgstr " "Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " "pridržanými balíkmi." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Problémy sa nedajú opraviÅ¥, niektoré balíky držíte v poÅ¡kodenom stave." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3011,8 -2996,8 +3018,8 @@@ msgstr "premenovanie zlyhalo, %s (%s - msgid "MD5Sum mismatch" msgstr "Nezhoda kontrolných MD5 súčtov" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Nezhoda kontrolných haÅ¡ súčtov" @@@ -3048,7 -3033,7 +3055,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3058,12 -3043,12 +3065,12 @@@ msgstr " "použijú sa predoÅ¡lé indexové súbory. Chyba GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3072,7 -3057,7 +3079,7 @@@ msgstr " "Nedá sa nájsÅ¥ súbor s balíkom %s. To by mohlo znamenaÅ¥, že tento balík je " "potrebné opraviÅ¥ manuálne (kvôli chýbajúcej architektúre)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3081,37 -3066,37 +3088,37 @@@ msgstr " "Nedá sa nájsÅ¥ súbor s balíkom %s. Asi budete musieÅ¥ opraviÅ¥ tento balík " "manuálne." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, 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:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Veľkosti sa nezhodujú" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Nedá spracovaÅ¥ súbor Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Žiadne sekcie v Release súbore %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Chýba položka „Hash“ v súbore Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Chýba položka „Valid-Until“ v súbore Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Chýba položka „Date“ v súbore Release %s" @@@ -3211,22 -3196,22 +3218,22 @@@ msgstr "Zapisuje sa nový zoznam zdrojo msgid "Source list entries for this disc are:\n" msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Zapísaných %i záznamov.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3241,17 -3226,17 +3248,6 @@@ msgstr "Nebolo možné nájsÅ¥ autentif msgid "Hash mismatch for: %s" msgstr "Nezhoda kontrolných haÅ¡ súčtov: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Súbor %s nezačína podpísanou správou v čistom texte (clearsigned)" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "V %s nie je nainÅ¡talovaný žiaden zväzok kľúčov." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3322,7 -3307,7 +3318,7 @@@ msgstr "PripraviÅ¥ sa na prijatie rieÅ¡ msgid "External solver failed without a proper error message" msgstr "Externý rieÅ¡iteľ zlyhal bez uvedenia chybovej správy" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "SpustiÅ¥ externého rieÅ¡iteľa" @@@ -3484,6 -3469,6 +3480,9 @@@ msgstr "dpkg bol preruÅ¡ený, musíte r msgid "Not locked" msgstr "Nie je zamknuté" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Súbor %s nezačína podpísanou správou v čistom texte (clearsigned)" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Preskakuje sa neexistujúci súbor %s" diff --combined po/sl.po index ead4d1090,a2ff51eb6..ff4a0f09b --- a/po/sl.po +++ b/po/sl.po @@@ -4,7 -4,7 +4,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n" "Language-Team: Slovenian <sl@li.org>\n" @@@ -630,7 -630,7 +630,7 @@@ msgstr "Prekini. msgid "Do you want to continue [Y/n]? " msgstr "Ali želite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoče dobiti %s %s\n" @@@ -836,7 -836,7 +836,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Preračunavanje nadgradnje ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Spodletelo" @@@ -1198,7 -1198,7 +1198,8 @@@ msgid "%s was already not hold.\n msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Program je čakal na %s a ga ni bilo tam" @@@ -1423,7 -1423,7 +1424,7 @@@ msgstr "Povezava podatkovne vtičnice j msgid "Unable to accept connection" msgstr "Ni mogoče sprejeti povezave" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Težava med razprÅ¡evanjem datoteke" @@@ -1450,91 -1450,86 +1451,91 @@@ msgstr "Poizvedba msgid "Unable to invoke " msgstr "Ni mogoče klicati " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Povezovanje z %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, 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:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela." -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Povezovanje z %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ni mogoče razreÅ¡iti '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Začasna napaka med razreÅ¡evanjem '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Nekaj čudnega se je zgodilo med razreÅ¡evanjem '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Nekaj čudnega se je zgodilo med razreÅ¡evanjem '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Ni se mogoče povezati z %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Najden je bil vsaj en neveljaven podpis." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameščen?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Neznana napaka med izvajanjem gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Naslednji podpisi so bili neveljavni:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1573,43 -1568,43 +1574,43 @@@ msgstr "Ta strežnik HTTP ima pokvarje msgid "Unknown date format" msgstr "Neznana oblika datuma" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Izbira ni uspela" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Povezava je zakasnela" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Napaka med pisanjem v izhodno datoteko" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Napaka med branjem s strežnika" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Napačni podatki glave" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Povezava ni uspela" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Notranja napaka" @@@ -1902,87 -1897,87 +1903,87 @@@ msgstr "Arhiv nima nadzornega zapisa msgid "Unable to get a cursor" msgstr "Ni mogoče najti kazalke" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "O: ni mogoče brati mape %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "O: Ni mogoče določiti %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "O: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "N: Napake se sklicujejo na datoteko " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Ni mogoče razreÅ¡iti %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Hoja drevesa je spodletela" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Ni mogoče odprti %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " RazVeži %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Napaka med branjem povezave %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Napaka med odvezovanjem %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Napaka med povezovanjem %s in %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Dosežena meja RazVezovanja %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arhiv ni imel polja s paketom" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s nima prepisanega vnosa\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Vzdrževalec %s je %s in ne %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s nima izvornega vnosa prepisa\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nima tudi binarnega vnosa prepisa\n" @@@ -2329,30 -2324,30 +2330,30 @@@ msgstr " "Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Izbire %s ni mogoče najti" @@@ -2424,16 -2419,6 +2425,16 @@@ msgstr "%c%s ... Napaka! msgid "%c%s... Done" msgstr "%c%s ... Narejeno" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Narejeno" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2546,17 -2531,17 +2547,17 @@@ msgstr "Pod-opravilo %s je prejelo segm msgid "Sub-process %s received signal %u." msgstr "Pod-opravilo %s je prejelo signal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Pod-opravilo %s se je nepričakovano zaključilo" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Ni mogoče odpreti datoteke %s" @@@ -2603,6 -2588,6 +2604,12 @@@ msgstr "Težava med razvezovanjem datot msgid "Problem syncing the file" msgstr "Težava med usklajevanjem datoteke" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "V %s ni nameščenih zbirk ključev." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Prazen predpomnilnik paketov" @@@ -2832,7 -2817,7 +2839,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Paket %s mora biti znova nameščen, vendar ni mogoče najti arhiva zanj." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2840,11 -2825,11 +2847,11 @@@ msgstr " "Napaka. pkgProblemResolver::Resolve pri razreÅ¡itvi, ki so jih morda " "povzročili zadržani paketi." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3014,8 -2999,8 +3021,8 @@@ msgstr "preimenovanje je spodletelo, % msgid "MD5Sum mismatch" msgstr "Neujemanje vsote MD5" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Neujemanje vsote razprÅ¡il" @@@ -3051,7 -3036,7 +3058,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3061,12 -3046,12 +3068,12 @@@ msgstr " "zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Napaka GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3075,7 -3060,7 +3082,7 @@@ msgstr " "Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " "popraviti ta paket (zaradi manjkajočega arhiva)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3084,7 -3069,7 +3091,7 @@@ msgstr " "Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " "popraviti ta paket." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3092,31 -3077,31 +3099,31 @@@ msgstr " "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " "%s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Neujemanje velikosti" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Ni mogoče razčleniti Release datoteke %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Ni izbir v Release datoteki %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ni vnosa razprÅ¡ila v Release datoteki %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" @@@ -3216,22 -3201,22 +3223,22 @@@ msgstr "Pisanje novega seznama virov\n msgid "Source list entries for this disc are:\n" msgstr "Izvorni vnosi za ta disk so:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisanih je bilo %i zapisov.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3248,17 -3233,17 +3255,6 @@@ msgstr "Ni mogoče najti zapisa overitv msgid "Hash mismatch for: %s" msgstr "Neujemanje razprÅ¡ila za: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Datoteka %s se ne začne s čisto podpisanim sporočilom" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "V %s ni nameščenih zbirk ključev." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3326,7 -3311,7 +3322,7 @@@ msgstr "Priprava za reÅ¡itev prejemanja msgid "External solver failed without a proper error message" msgstr "Zunanji reÅ¡evalnik je spodletel brez pravega sporočila o napakah" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Izvedi zunanji reÅ¡evalnik" @@@ -3491,6 -3476,6 +3487,9 @@@ msgstr "dpkg je bil prekinjen. Za popra msgid "Not locked" msgstr "Ni zaklenjeno" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Datoteka %s se ne začne s čisto podpisanim sporočilom" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Preskok neobstoječe datoteke %s" diff --combined po/sv.po index 7ba779a6f,02bcf0c49..04a75e602 --- a/po/sv.po +++ b/po/sv.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@@ -637,7 -637,7 +637,7 @@@ msgstr "Avbryter. msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" @@@ -831,7 -831,7 +831,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Misslyckades" @@@ -1200,7 -1200,7 +1200,8 @@@ msgid "%s was already not hold.\n msgstr "%s är redan den senaste versionen.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Väntade pÃ¥ %s men den fanns inte där" @@@ -1407,7 -1407,7 +1408,7 @@@ msgstr "Anslutet datauttag (socket) fic msgid "Unable to accept connection" msgstr "Kunde inte ta emot anslutningen" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem med att lägga filen till hashtabellen" @@@ -1436,96 -1436,90 +1437,96 @@@ msgid "Unable to invoke msgstr "Kunde inte starta " # Felmeddelande för misslyckad chdir -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Ansluter till %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" # [f]amilj, [t]yp, [p]rotokoll -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Kunde inte ansluta till %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Ansluter till %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kunde inte slÃ¥ upp \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Temporärt fel vid uppslagning av \"%s\"" # Okänd felkod; %i = koden -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "NÃ¥got konstigt hände när \"%s:%s\" slogs upp (%i - %s)" + +# Okänd felkod; %i = koden +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "NÃ¥got konstigt hände när \"%s:%s\" slogs upp (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kunde inte ansluta till %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " "fingeravtryck?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Minst en ogiltig signatur träffades pÃ¥." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Okänt fel vid körning av gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Följande signaturer är ogiltiga:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1565,43 -1559,43 +1566,43 @@@ msgstr "Den här http-serverns stöd fà msgid "Unknown date format" msgstr "Okänt datumformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "\"Select\" misslyckades" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Anslutningen överskred tidsgränsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fel vid skrivning till utdatafil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fel vid skrivning till fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fel vid skrivning till filen" -#: methods/http.cc:919 +#: methods/http.cc:923 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:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fel vid läsning frÃ¥n server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Felaktiga data i huvud" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Anslutningen misslyckades" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Internt fel" @@@ -1897,90 -1891,90 +1898,90 @@@ msgstr "Arkivet har ingen styrpost msgid "Unable to get a cursor" msgstr "Kunde inte fÃ¥ tag i nÃ¥gon markör" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "V: Kunde inte läsa katalogen %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "V: Kunde inte ta status pÃ¥ %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "F: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "V: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "F: Felen gäller filen " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Misslyckades med att slÃ¥ upp %s" # ??? --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Trädvandring misslyckades" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Misslyckades med att öppna %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Avlänka %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Misslyckades med att läsa länken %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Misslyckades med att länka ut %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Misslyckades med att länka %s till %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Avlänkningsgränsen pÃ¥ %sB nÃ¥ddes.\n" # Fält vid namn "Package" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Arkivet har inget package-fält" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen post i override-filen\n" # parametrar: paket, ny, gammal --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ansvarig för paketet %s är %s ej %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen källÃ¥sidosättningspost\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har heller ingen binär Ã¥sidosättningspost\n" @@@ -2330,30 -2324,30 +2331,30 @@@ msgstr " "av användaren." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%lis" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Valet %s hittades inte" @@@ -2423,16 -2417,6 +2424,16 @@@ msgstr "%c%s... Fel! msgid "%c%s... Done" msgstr "%c%s... Färdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Färdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2545,17 -2529,17 +2546,17 @@@ msgstr "Underprocessen %s rÃ¥kade ut fà msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s tog emot signal %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s svarade med en felkod (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s avslutades oväntat" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Kunde inte öppna filen %s" @@@ -2602,6 -2586,6 +2603,12 @@@ msgstr "Problem med att avlänka filen msgid "Problem syncing the file" msgstr "Problem med att synkronisera filen" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Ingen nyckelring installerad i %s." ++ # Felmeddelande #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" @@@ -2831,7 -2815,7 +2838,7 @@@ msgid " msgstr "" "Paketet %s mÃ¥ste installeras om, men jag kan inte hitta nÃ¥got arkiv för det." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2839,11 -2823,11 +2846,11 @@@ msgstr " "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero pÃ¥ " "tillbakahÃ¥llna paket." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hÃ¥llit tillbaka trasiga paket." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -3017,8 -3001,8 +3024,8 @@@ msgstr "namnbyte misslyckades, %s (%s - msgid "MD5Sum mismatch" msgstr "MD5-kontrollsumman stämmer inte" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash-kontrollsumman stämmer inte" @@@ -3050,7 -3034,7 +3057,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3061,12 -3045,12 +3068,12 @@@ msgstr " "%s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG-fel: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3075,7 -3059,7 +3082,7 @@@ msgstr " "Jag kunde inte hitta nÃ¥gon fil för paketet %s. Detta kan betyda att du " "manuellt mÃ¥ste reparera detta paket (pÃ¥ grund av saknad arkitektur)." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3084,37 -3068,37 +3091,37 @@@ msgstr " "Jag kunde inte hitta nÃ¥gon fil för paketet %s. Detta kan betyda att du " "manuellt mÃ¥ste reparera detta paket." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Storleken stämmer inte" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Kunde inte tolka \"Release\"-filen %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Inga sektioner i Release-filen %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Ingen Hash-post i Release-filen %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Ogiltig \"Date\"-post i Release-filen %s" @@@ -3214,22 -3198,22 +3221,22 @@@ msgstr "Skriver ny källista\n msgid "Source list entries for this disc are:\n" msgstr "Poster i källistan för denna skiva:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i saknade filer.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i filer som inte stämmer\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, 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" @@@ -3244,17 -3228,17 +3251,6 @@@ msgstr "Kan inte hitta autentiseringspo msgid "Hash mismatch for: %s" msgstr "Hash-kontrollsumman stämmer inte för: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Ingen nyckelring installerad i %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3327,7 -3311,7 +3323,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/th.po index ef2b6a45d,9da100061..cfa65481b --- a/po/th.po +++ b/po/th.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@@ -623,7 -623,7 +623,7 @@@ msgstr "เลิกทำ msgid "Do you want to continue [Y/n]? " msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" @@@ -804,7 -804,7 +804,7 @@@ msgstr "คำสั่งนี้ไà msgid "Calculating upgrade... " msgstr "กำลังคำนวณการปรับรุ่น... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "ล้มเหลว" @@@ -1159,7 -1159,7 +1159,8 @@@ msgid "%s was already not hold.\n msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" @@@ -1380,7 -1380,7 +1381,7 @@@ msgstr "หมดเวลารอเà msgid "Unable to accept connection" msgstr "ไม่สามารถรับการเชื่อมต่อ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" @@@ -1407,90 -1407,85 +1408,90 @@@ msgstr "สอบถาม msgid "Unable to invoke " msgstr "ไม่สามารถเรียก " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "เชื่อมต่อไปยัง %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "เชื่อมต่อไปยัง %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "เกิดข้อผิดพลาดชั่วคราวขณะเปิดหาที่อยู่ '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1528,43 -1523,43 +1529,43 @@@ msgstr "การสนับสนุà msgid "Unknown date format" msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select ไม่สำเร็จ" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "หมดเวลารอเชื่อมต่อ" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "เชื่อมต่อไม่สำเร็จ" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "ข้อผิดพลาดภายใน" @@@ -1846,87 -1841,87 +1847,87 @@@ msgstr "แพกเกจไม่มà msgid "Unable to get a cursor" msgstr "ไม่สามารถนำตัวชี้ตำแหน่งมาใช้ได้" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: อ่านไดเรกทอรี %s ไม่สำเร็จ\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: stat %s ไม่สำเร็จ\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: ข้อผิดพลาดเกิดกับแฟ้ม " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "หาพาธเต็มของ %s ไม่สำเร็จ" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "เดินท่องต้นไม้ไม่สำเร็จ" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "เปิด %s ไม่สำเร็จ" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ไม่สำเร็จ" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ไม่สำเร็จ" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** ลิงก์ %s ไปยัง %s ไม่สำเร็จ" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB แล้ว\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s ไม่มีข้อมูล override\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n" @@@ -2270,30 -2265,30 +2271,30 @@@ msgid " msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากผู้ใช้ปิดการขยายขนาดอัตโนมัติ" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liวัน %liชม. %liนาที %liวิ" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%liชม. %liนาที %liวิ" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%liนาที %liวิ" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%liวิ" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "ไม่พบรายการเลือก %s" @@@ -2363,16 -2358,6 +2364,16 @@@ msgstr "%c%s... ผิดพลาด! msgid "%c%s... Done" msgstr "%c%s... เสร็จแล้ว" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... เสร็จแล้ว" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2484,17 -2469,17 +2485,17 @@@ msgstr "โพรเซสย่อย msgid "Sub-process %s received signal %u." msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "ไม่สามารถเปิดแฟ้ม %s" @@@ -2541,6 -2526,6 +2542,12 @@@ msgstr "เกิดปัญหาขà msgid "Problem syncing the file" msgstr "เกิดปัญหาขณะ sync แฟ้ม" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "แคชของแพกเกจว่างเปล่า" @@@ -2765,7 -2750,7 +2772,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2773,11 -2758,11 +2780,11 @@@ msgstr " "ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " "อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -2943,8 -2928,8 +2950,8 @@@ msgstr "เปลี่ยนชื่à msgid "MD5Sum mismatch" msgstr "MD5Sum ไม่ตรงกัน" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "ผลรวมแฮชไม่ตรงกัน" @@@ -2980,7 -2965,7 +2987,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2990,56 -2975,56 +2997,56 @@@ msgstr " "ข้อผิดพลาดจาก GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "ข้อผิดพลาดจาก GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package. (due to missing arch)" msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "ขนาดไม่ตรงกัน" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "ไม่สามารถแจงแฟ้ม Release %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" @@@ -3137,22 -3122,22 +3144,22 @@@ msgstr "กำลังเขียนà msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "เขียนแล้ว %i ระเบียน\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" @@@ -3167,17 -3152,17 +3174,6 @@@ msgstr "ไม่พบระเบีà msgid "Hash mismatch for: %s" msgstr "แฮชไม่ตรงกันสำหรับ: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "แฟ้ม %s ไม่ได้ขึ้นต้นด้วยการระบุการเซ็นกำกับครอบในตัวข้อความ" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3242,7 -3227,7 +3238,7 @@@ msgstr "เตรียมรับคà msgid "External solver failed without a proper error message" msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "เรียกกลไกการแก้ปัญหาภายนอก" @@@ -3399,6 -3384,6 +3395,9 @@@ msgstr "dpkg ถูกขัดจัภmsgid "Not locked" msgstr "ไม่ได้ล็อคอยู่" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "แฟ้ม %s ไม่ได้ขึ้นต้นด้วยการระบุการเซ็นกำกับครอบในตัวข้อความ" ++ #~ msgid "Failed to remove %s" #~ msgstr "ไม่สามารถลบ %s" diff --combined po/tl.po index 85f159546,a92a8114e..19ef31f20 --- a/po/tl.po +++ b/po/tl.po @@@ -10,7 -10,7 +10,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" @@@ -647,7 -647,7 +647,7 @@@ msgstr "Abort. msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" @@@ -832,7 -832,7 +832,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Bigo" @@@ -1182,7 -1182,7 +1182,8 @@@ msgid "%s was already not hold.\n msgstr "%s ay pinakabagong bersyon na.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Naghintay, para sa %s ngunit wala nito doon" @@@ -1389,7 -1389,7 +1390,7 @@@ msgstr "Nag-timeout ang socket ng datos msgid "Unable to accept connection" msgstr "Hindi makatanggap ng koneksyon" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema sa pag-hash ng talaksan" @@@ -1416,94 -1416,89 +1417,94 @@@ msgstr "Tanong msgid "Unable to invoke " msgstr "Hindi ma-invoke " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Kumokonekta sa %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kumokonekta sa %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Hindi maresolba ang '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Hindi maka-konekta sa %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " "fingerprint?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Hindi kilalang error sa pag-execute ng gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Ang sumusunod na mga lagda ay imbalido:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1543,43 -1538,43 +1544,43 @@@ msgstr "Sira ang range support ng HTTP msgid "Unknown date format" msgstr "Di kilalang anyo ng petsa" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Bigo ang pagpili" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Nag-timeout ang koneksyon" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Error sa pagsulat ng talaksang output" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Error sa pagsulat sa talaksan" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Error sa pagsusulat sa talaksan" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Error sa pagbasa mula sa server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Maling datos sa panimula" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Bigo ang koneksyon" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Internal na error" @@@ -1876,87 -1871,87 +1877,87 @@@ msgstr "Walang kontrol rekord ang arkib msgid "Unable to get a cursor" msgstr "Hindi makakuha ng cursor" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Hindi mabasa ang directory %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Hindi ma-stat %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "E: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "W: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "E: Mga error ay tumutukoy sa talaksang " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Bigo sa pag-resolba ng %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Bigo ang paglakad sa puno" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Bigo ang pagbukas ng %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Bigo ang pagbasa ng link %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Bigo ang pag-unlink ng %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Bigo ang pag-link ng %s sa %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink limit na %sB tinamaan.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Walang field ng pakete ang arkibo" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s ay walang override entry\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Tagapangalaga ng %s ay %s hindi %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s ay walang override entry para sa pinagmulan\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ay wala ring override entry na binary\n" @@@ -2303,30 -2298,30 +2304,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Piniling %s ay hindi nahanap" @@@ -2398,16 -2393,6 +2399,16 @@@ msgstr "%c%s... Error! msgid "%c%s... Done" msgstr "%c%s... Tapos" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Tapos" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2524,17 -2509,17 +2525,17 @@@ msgstr "Nakatanggap ang sub-process %s msgid "Sub-process %s received signal %u." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Naghudyat ang sub-process %s ng error code (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Ang sub-process %s ay lumabas ng di inaasahan" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Hindi mabuksan ang talaksang %s" @@@ -2581,6 -2566,6 +2582,12 @@@ msgstr "Problema sa pag-unlink ng talak msgid "Problem syncing the file" msgstr "Problema sa pag-sync ng talaksan" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "Ina-abort ang pag-instol." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Walang laman ang cache ng pakete" @@@ -2807,7 -2792,7 +2814,7 @@@ msgstr " "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " "para dito." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2815,12 -2800,12 +2822,12 @@@ msgstr " "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " "ito ng mga paketeng naka-hold." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2996,8 -2981,8 +3003,8 @@@ msgstr "pagpalit ng pangalan ay bigo, % msgid "MD5Sum mismatch" msgstr "Di tugmang MD5Sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 #, fuzzy msgid "Hash Sum mismatch" msgstr "Di tugmang MD5Sum" @@@ -3030,7 -3015,7 +3037,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3038,12 -3023,12 +3045,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3052,7 -3037,7 +3059,7 @@@ msgstr " "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " "niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3061,7 -3046,7 +3068,7 @@@ msgstr " "Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " "niyong ayusin ng de kamay ang paketeng ito." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3069,31 -3054,31 +3076,31 @@@ msgstr " "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " "paketeng %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Di tugmang laki" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, fuzzy, c-format msgid "Unable to parse Release file %s" msgstr "Hindi ma-parse ang talaksang pakete %s (1)" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, fuzzy, c-format msgid "No sections in Release file %s" msgstr "Paunawa, pinili ang %s imbes na %s\n" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Di tanggap na linya sa talaksang diversion: %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Hindi ma-parse ang talaksang pakete %s (1)" @@@ -3192,22 -3177,22 +3199,22 @@@ msgstr "Sinusulat ang bagong listahan n msgid "Source list entries for this disc are:\n" msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Nagsulat ng %i na record.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3224,17 -3209,17 +3231,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Di tugmang MD5Sum" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "Ina-abort ang pag-instol." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3298,7 -3283,7 +3294,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/uk.po index cfad1393a,4a1706204..6fa9320c9 --- a/po/uk.po +++ b/po/uk.po @@@ -12,7 -12,7 +12,7 @@@ msgid " msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n" "Language-Team: Українська <uk@li.org>\n" @@@ -644,7 -644,7 +644,7 @@@ msgstr "Перервано. msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не вдалося завантажити %s %s\n" @@@ -844,7 -844,7 +844,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Невдача" @@@ -1216,7 -1216,7 +1216,8 @@@ msgid "%s was already not hold.\n msgstr "%s вже був незафіксований.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Очікував на %s, але його там не було" @@@ -1444,7 -1444,7 +1445,7 @@@ msgstr "Час з'єднання з сРmsgid "Unable to accept connection" msgstr "Неможливо прийняти з'єднання" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблема хешування файла" @@@ -1471,92 -1471,87 +1472,92 @@@ msgstr "Черга msgid "Unable to invoke " msgstr "Неможливо викликати " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "З'єднання з %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Неможливо почати з'єднання з %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "З'єднання з %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Не можу знайти IP адрес для %s" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Тимчасова помилка при отриманні IP адреси '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Неможливо під'єднатися до %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" "Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " "відбиток?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "Знайдено як мінімум один невірний підпис." --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "Неможливо виконати 'gpgv' для перевірки підпису (чи встановлено gpgv?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Невідома помилка виконання gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Наступні підписи були невірними:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1596,43 -1591,43 +1597,43 @@@ msgstr "Цей HTTP сервер Ð¼Ð°Ñ msgid "Unknown date format" msgstr "Невідомий формат дати" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Вибір провалився" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Час очікування з'єднання вийшов" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Помилка запису у вихідний файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Помилка запису у файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Помилка запису у файл" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Помилка зчитування з сервера" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Погана заголовкова інформація" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "З'єднання не вдалося" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Внутрішня помилка" @@@ -1937,87 -1932,87 +1938,87 @@@ msgstr "В архіві немає за msgid "Unable to get a cursor" msgstr "Неможливо одержати курсор" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "У: Не вдалося прочитати директорію %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "У: Неможливо прочитати атрибути %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "П: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "У: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "П: Помилки відносяться до файлу " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Не вдалося визначити %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Не вдалося зробити обхід дерева" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Не вдалося відкрити %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Не вдалося прочитати посилання (readlink) %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Не вдалося видалити посилання (unlink) %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Не вдалося створити посилання %s на %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Перевищено ліміт в %sB в DeLink.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Архів не мав поля 'package'" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, fuzzy, c-format msgid " %s has no override entry\n" msgstr " Відсутній запис про перепризначення (override) для %s\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакунок %s супроводжується %s, а не %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Відсутній запис про перепризначення вихідних текстів для %s\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Крім того, відсутній запис про бінарне перепризначення для %s\n" @@@ -2370,30 -2365,30 +2371,30 @@@ msgstr " "користувачем." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liг %liхв %liс" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%liг %liхв %liс" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%liхв %liс" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%liс" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Вибір %s не знайдено" @@@ -2467,16 -2462,6 +2468,16 @@@ msgstr "%c%s... Помилка! msgid "%c%s... Done" msgstr "%c%s... Виконано" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Виконано" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2594,17 -2579,17 +2595,17 @@@ msgstr "Підпроцес %s отриРmsgid "Sub-process %s received signal %u." msgstr "Підпроцес %s отримав сигнал %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Підпроцес %s повернув код помилки (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Підпроцес %s раптово завершився" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Неможливо відкрити файл %s" @@@ -2651,6 -2636,6 +2652,12 @@@ msgstr "Проблема з роз'єд msgid "Problem syncing the file" msgstr "Проблема з синхронізацією файла" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Не встановлено 'keyring' у %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Кеш пакунків пустий" @@@ -2878,7 -2863,7 +2885,7 @@@ msgid " msgstr "" "Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2886,11 -2871,11 +2893,11 @@@ msgstr " "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " "пов'язано з зафіксованими пакунками." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3062,8 -3047,8 +3069,8 @@@ msgstr "не вдалося перейРmsgid "MD5Sum mismatch" msgstr "Невідповідність MD5Sum" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Невідповідність хешу MD5Sum" @@@ -3099,7 -3084,7 +3106,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3109,12 -3094,12 +3116,12 @@@ msgstr " "попередні індексні файли будуть використані. Помилка GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Помилка GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3123,7 -3108,7 +3130,7 @@@ msgstr " "Я не зміг знайти файл для пакунку %s. Можливо, це значить, що вам потрібно " "власноруч виправити цей пакунок. (через відсутність 'arch')" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3132,38 -3117,38 +3139,38 @@@ msgstr " "Я не зміг знайти файл для пакунку %s. Можливо, це значить, що вам потрібно " "власноруч виправити цей пакунок." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Невідповідність розміру" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Неможливо проаналізувати 'Release' файл %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Немає секцій у 'Release' файлі %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Немає запису 'Hash' у 'Release' файлі %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "Невірний запис 'Date' у 'Release' файлі %s" @@@ -3263,22 -3248,22 +3270,22 @@@ msgstr "Записується нови msgid "Source list entries for this disc are:\n" msgstr "Перелік вихідних текстів для цього диска:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Записано %i записів.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записано %i записів з %i відсутніми файлами.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записано %i записів з %i невідповідними файлам\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" @@@ -3293,17 -3278,17 +3300,6 @@@ msgstr "Неможливо знайтРmsgid "Hash mismatch for: %s" msgstr "Невідповідність хешу для: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Файл %s починається з не 'clearsigned' повідомленням" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Не встановлено 'keyring' у %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3378,7 -3363,7 +3374,7 @@@ msgstr " "Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " "помилку" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 #, fuzzy msgid "Execute external solver" msgstr "Виконати зовнішній розв'язувач" @@@ -3547,6 -3532,6 +3543,9 @@@ msgstr " msgid "Not locked" msgstr "Не заблоковано" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Файл %s починається з не 'clearsigned' повідомленням" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Пропускається неіснуючий файл %s" diff --combined po/vi.po index ac756e31d,fc79aa87a..b81b8453a --- a/po/vi.po +++ b/po/vi.po @@@ -7,7 -7,7 +7,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2012-11-20 14:12+0700\n" "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" @@@ -640,7 -640,7 +640,7 @@@ msgstr "Há»§y bỏ. msgid "Do you want to continue [Y/n]? " msgstr "Bạn có muốn tiếp tục không? [C/k] " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Việc lấy %s bị lỗi %s\n" @@@ -827,7 -827,7 +827,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "Đang tính bước nâng cấp... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Gặp lỗi" @@@ -1194,7 -1194,7 +1194,8 @@@ msgid "%s was already not hold.\n msgstr "%s đã sẵn được đặt là chưa nắm giữ.\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Đã đợi %s nhưng mà chưa gặp nó" @@@ -1421,7 -1421,7 +1422,7 @@@ msgstr "Quá giờ kết nối ổ cắ msgid "Unable to accept connection" msgstr "Không thể chấp nhận kết nối" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Gặp khó khăn khi tạo chuỗi duy nhất cho tập tin" @@@ -1448,92 -1448,87 +1449,92 @@@ msgstr "Truy vấn msgid "Unable to invoke " msgstr "Không thể gọi " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Đang kết nối đến %s (%s)..." -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[Địa chỉ IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, 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)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, 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ờ" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Đang kết nối đến %s..." -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Không thể tháo gỡ “%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Việc tháo gỡ “%s” bị lỗi tạm thời" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ “%s:%s” (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ “%s:%s” (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Không thể kết nối đến %s: %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 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 cá»§a khóa ?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 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:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" "Không thể thá»±c hiện “gpgv” để thẩm tra chữ ký (gpgv đã được cài đặt chưa?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "Gặp lỗi không rõ khi thá»±c hiện gpgv" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "Những chữ ký theo đây vẫn không hợp lệ:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1576,43 -1571,43 +1577,43 @@@ msgstr "Máy phục vụ HTTP đã ngẠmsgid "Unknown date format" msgstr "Không rõ dạng ngày" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Việc chọn bị lỗi" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Kết nối đã quá giờ" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Gặp lỗi khi ghi vào tập tin xuất" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Gặp lỗi khi ghi vào tập tin" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Gặp lỗi khi ghi vào tập tin đó" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Gặp lỗi khi đọc từ máy phục vụ: cuối ở xa đã đóng kết nối" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Gặp lỗi khi đọc từ máy phục vụ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Dữ liệu dòng đầu sai" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Kết nối bị ngắt" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Gặp lỗi nội bộ" @@@ -1924,87 -1919,87 +1925,87 @@@ msgstr "Kho không có mục ghi điề msgid "Unable to get a cursor" msgstr "Không thể lấy con chạy" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "CB: Không thể đọc thư mục %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "CB: Không thể lấy thông tin toàn bộ cho %s\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "LỖI: " --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "CB: " --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "LỖI: có lỗi áp dụng vào tập tin " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "Việc quyết định %s bị lỗi" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "Việc di chuyển qua cây bị lỗi" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "Việc mở %s bị lỗi" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " Bỏ liên kết %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "Việc tạo liên kết lại %s bị lỗi" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "Việc bỏ liên kết %s bị lỗi" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Việc liên kết %s đến %s bị lỗi" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Hết hạn bỏ liên kết cá»§a %sB.\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "Kho không có trường gói" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s không có mục ghi đè\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " người bảo trì %s là %s không phải %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s không có mục ghi đè nguồn\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, 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" @@@ -2355,30 -2350,30 +2356,30 @@@ msgstr " "dùng tắt." #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lingày %ligiờ %liphút %ligiây" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%ligiờ %liphút %ligiây" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%liphút %ligiây" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%ligiây" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "Không tìm thấy vùng chọn %s" @@@ -2449,16 -2444,6 +2450,16 @@@ msgstr "%c%s... Lỗi! msgid "%c%s... Done" msgstr "%c%s... Hoàn tất" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hoàn tất" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2574,17 -2559,17 +2575,17 @@@ msgstr "Tiến trình phụ %s đã nhá msgid "Sub-process %s received signal %u." msgstr "Tiến trình phụ %s đã nhận tín hiệu %u." --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Tiến trình phụ %s đã trả lời mã lỗi (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Tiến trình phụ %s đã thoát bất thường" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "Không thể mở tập tin %s" @@@ -2631,6 -2616,6 +2632,12 @@@ msgstr "Gặp vấn đề khi bỏ liê msgid "Problem syncing the file" msgstr "Gặp vấn đề khi đồng bộ hóa tập tin" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "Không có vòng khoá nào được cài đặt vào %s." ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "Bộ nhớ tạm gói trống" @@@ -2864,7 -2849,7 +2871,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2872,11 -2857,11 +2879,11 @@@ msgstr " "Lỗi: “pkgProblemResolver::Resolve” (bộ tháo gỡ vấn đề gọi::tháo gỡ) đã tạo " "ra nhiều chỗ ngắt, có lẽ một số gói đã giữ lại đã gây ra trường hợp này." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Không thể sá»­a vấn đề, bạn đã giữ lại một số gói bị ngắt." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@@ -3049,8 -3034,8 +3056,8 @@@ msgstr "việc thay đổi tên bị lá msgid "MD5Sum mismatch" msgstr "Sai khớp MD5Sum (tổng kiểm)" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Sai khớp tổng chuỗi duy nhất (hash sum)" @@@ -3086,7 -3071,7 +3093,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Bản phát hành xung đột: %s (mong đợi %s còn nhận %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -3097,12 -3082,12 +3104,12 @@@ msgstr " "Lỗi GPG: %s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "Lỗi GPG: %s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3111,7 -3096,7 +3118,7 @@@ msgstr " "Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tá»± sá»­a gói " "này, do thiếu kiến trúc." --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3120,7 -3105,7 +3127,7 @@@ msgstr " "Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tá»± sá»­a gói " "này." --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@@ -3128,33 -3113,33 +3135,33 @@@ 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:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "Sai khớp kích cỡ" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "Không thể phân tích cú pháp cá»§a tập tin Phát hành %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "Không có phần nào trong tập tin Phát hành %s" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "Không có mục Hash (chuỗi duy nhất) nào trong tập tin Phát hành %s" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" "Gặp mục nhập “Valid-Until” (hợp lệ đến khi) không hợp lệ trong tập tin Phát " "hành %s" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "" @@@ -3254,22 -3239,22 +3261,22 @@@ msgstr "Đang ghi danh sách nguồn má msgid "Source list entries for this disc are:\n" msgstr "Các mục nhập danh sách nguồn cho đĩa này:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "Mới ghi %i mục ghi.\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Mới ghi %i mục ghi với %i tập tin còn thiếu.\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Mới ghi %i mục ghi với %i tập tin không khớp với nhau\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@@ -3286,17 -3271,17 +3293,6 @@@ msgstr "Không tìm thấy mục ghi xà msgid "Hash mismatch for: %s" msgstr "Sai khớp chuỗi duy nhất cho: %s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "Tập tin %s không bắt đầu bằng một đoạn chữ ký (gpg)" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "Không có vòng khoá nào được cài đặt vào %s." -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3364,7 -3349,7 +3360,7 @@@ msgstr "Chuẩn bị để lấy cách msgid "External solver failed without a proper error message" msgstr "Bộ phân giải bên ngoài gặp lỗi mà không trả về thông tin lỗi thích hợp" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Thi hành bộ phân giải từ bên ngoài" @@@ -3523,6 -3508,6 +3519,9 @@@ msgstr "dpkg bị gián đoạn, bạn msgid "Not locked" msgstr "Chưa được khoá" ++#~ msgid "File %s doesn't start with a clearsigned message" ++#~ msgstr "Tập tin %s không bắt đầu bằng một đoạn chữ ký (gpg)" ++ #~ msgid "Skipping nonexistent file %s" #~ msgstr "Đang bỏ qua tập tin không tồn tại %s" diff --combined po/zh_CN.po index d4ec54b3d,8c3120001..841087b48 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" @@@ -629,7 -629,7 +629,7 @@@ msgstr "中止执行。 msgid "Do you want to continue [Y/n]? " msgstr "您希望继续执行吗?[Y/n]" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "无法下载 %s %s\n" @@@ -807,7 -807,7 +807,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "正在对升级进行计算... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "失败" @@@ -1160,7 -1160,7 +1160,8 @@@ msgid "%s was already not hold.\n msgstr "%s 已经是最新的版本了。\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "等待子进程 %s 的退出,但是它并不存在" @@@ -1366,7 -1366,7 +1367,7 @@@ msgstr "数据套接字连接超时 msgid "Unable to accept connection" msgstr "无法接受连接" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "把文件加入哈希表时出错" @@@ -1393,90 -1393,85 +1394,90 @@@ msgstr "查询 msgid "Unable to invoke " msgstr "无法调用 " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "正在连接 %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, 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:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "无法发起与 %s:%s (%s) 的连接" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "无法连接上 %s:%s (%s),连接超时" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "正在连接 %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "无法解析域名“%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "暂时不能解析域名“%s”" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "不能连接到 %s:%s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "至少发现一个无效的签名。" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "运行 gpgv 时发生未知错误" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "下列签名无效:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1514,43 -1509,43 +1515,43 @@@ msgstr "该 HTTP 服务器的 range 支 msgid "Unknown date format" msgstr "无法识别的日期格式" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select 调用出错" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "连接超时" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "写输出文件时出错" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "写入文件出错" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "写入文件出错" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "从服务器读取数据时出错,对方关闭了连接" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "从服务器读取数据出错" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "错误的报头数据" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "连接失败" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "内部错误" @@@ -1835,87 -1830,87 +1836,87 @@@ msgstr "归档文件没有包含控制å msgid "Unable to get a cursor" msgstr "无法获得游标" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告:无法读取目录 %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告:无法获得 %s 的状态\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "错误:" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "警告:" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "错误:处理文件时出错 " --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "无法解析 %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "无法遍历目录树" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "无法打开 %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "无法读取符号链接 %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "无法使用 unlink 删除 %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** 无法将 %s 链接到 %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " 达到了 DeLink 的上限 %sB。\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "归档文件没有包含 package 字段" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s 中没有 override 项\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的维护者 %s 并非 %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s 没有源代码的 override 项\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 中没有二进制文件的 override 项\n" @@@ -2259,30 -2254,30 +2260,30 @@@ msgid " msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li天 %li小时 %li分 %li秒" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "%li小时 %li分 %li秒" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "%li分 %li秒" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "%li秒" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "找不到您选则的 %s" @@@ -2352,16 -2347,6 +2353,16 @@@ msgstr "%c%s... 有错误! msgid "%c%s... Done" msgstr "%c%s... 完成" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2473,17 -2458,17 +2474,17 @@@ msgstr "子进程 %s 发生了段错误 msgid "Sub-process %s received signal %u." msgstr "子进程 %s 收到信号 %u。" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子进程 %s 返回了一个错误号 (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子进程 %s 异常退出" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "无法打开文件 %s" @@@ -2530,6 -2515,6 +2531,12 @@@ msgstr "用 unlink 删除文件 %s 出é msgid "Problem syncing the file" msgstr "同步文件出错" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, c-format ++msgid "No keyring installed in %s." ++msgstr "%s 中没有安装密钥环。" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "软件包缓存区是空的" @@@ -2754,7 -2739,7 +2761,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2762,13 -2747,13 +2769,13 @@@ msgstr " "错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" "缘故。" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" "系。" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2936,8 -2921,8 +2943,8 @@@ msgstr "无法重命名文件,%s (%s msgid "MD5Sum mismatch" msgstr "MD5 校验和不符" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash 校验和不符" @@@ -2969,7 -2954,7 +2976,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2978,12 -2963,12 +2985,12 @@@ msgstr " "校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "GPG 错误:%s: %s" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -2992,7 -2977,7 +2999,7 @@@ msgstr " "我无法找到一个对应 %s 软件包的文件。在这种情况下可能需要您手动修正这个软件" "包。(缘于架构缺失)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -3000,37 -2985,37 +3007,37 @@@ msgstr "" "我无法找到对应 %s 软件包的文件。在这种情况下您可能需要手动修正这个软件包。" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "大小不符" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "无法解析软件包仓库 Release 文件 %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "软件包仓库 Release 文件 %s 内无哈希条目" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" @@@ -3130,22 -3115,22 +3137,22 @@@ msgstr "正在写入新的源列表\n msgid "Source list entries for this disc are:\n" msgstr "对应于该盘片的软件源设置项是:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "已写入 %i 条记录。\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" @@@ -3160,17 -3145,17 +3167,6 @@@ msgstr "无法找到认证记录:%s msgid "Hash mismatch for: %s" msgstr "Hash 校验和不符:%s" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, c-format --msgid "No keyring installed in %s." --msgstr "%s 中没有安装密钥环。" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3234,7 -3219,7 +3230,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined po/zh_TW.po index 47fa334ae,4a8d6b9e8..28f0c6545 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@@ -8,7 -8,7 +8,7 @@@ msgid " msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" ++"POT-Creation-Date: 2013-04-02 15:13+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet <tetralet@gmail.com>\n" "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists." @@@ -630,7 -630,7 +630,7 @@@ msgstr "放棄執行。 msgid "Do you want to continue [Y/n]? " msgstr "是否繼續進行 [Y/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "無法取得 %s,%s\n" @@@ -814,7 -814,7 +814,7 @@@ msgstr " msgid "Calculating upgrade... " msgstr "籌備升級中... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "失敗" @@@ -1156,7 -1156,7 +1156,8 @@@ msgid "%s was already not hold.\n msgstr "%s 已經是最新版本了。\n" #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 --#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 ++#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223 ++#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "等待 %s 但是它並不存在" @@@ -1361,7 -1361,7 +1362,7 @@@ msgstr "Data socket 連線逾時 msgid "Unable to accept connection" msgstr "無法接受連線" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "有問題的雜湊檔" @@@ -1388,91 -1388,86 +1389,91 @@@ msgstr "查詢 msgid "Unable to invoke " msgstr "無法 invoke " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "正和 %s (%s) 連線" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "無法建立 socket 指向 %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "無法初始和 %s:%s (%s) 的連線。" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "無法和 %s:%s (%s) 連線,連線逾時" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, 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:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "正連線至 %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "無法解析 '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "暫時無法解析 '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format - msgid "System error resolving '%s:%s' (%s)" ++msgid "System error resolving '%s:%s'" +msgstr "在解析 '%s:%s' (%i) 時出了怪事" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "在解析 '%s:%s' (%i) 時出了怪事" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "無法連線至 %s %s:" --#: methods/gpgv.cc:180 ++#: methods/gpgv.cc:169 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "內部錯誤:簽章無誤,但卻無法辨識密鑰的指紋碼?!" --#: methods/gpgv.cc:185 ++#: methods/gpgv.cc:174 msgid "At least one invalid signature was encountered." msgstr "至少發現一個無效的簽章。" --#: methods/gpgv.cc:189 ++#: methods/gpgv.cc:178 #, fuzzy msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "無法執行 '%s' 來驗證簽章(gpgv 是否安裝了?)" --#: methods/gpgv.cc:194 ++#: methods/gpgv.cc:183 msgid "Unknown error executing gpgv" msgstr "在執行 gpgv 時發生未知的錯誤" --#: methods/gpgv.cc:228 methods/gpgv.cc:235 ++#: methods/gpgv.cc:217 methods/gpgv.cc:224 msgid "The following signatures were invalid:\n" msgstr "以下簽名無效:\n" --#: methods/gpgv.cc:242 ++#: methods/gpgv.cc:231 msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" @@@ -1510,43 -1505,43 +1511,43 @@@ msgstr "這個 HTTP 伺服器的範圍æ msgid "Unknown date format" msgstr "未知的資料格式" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "選擇失敗" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "連線逾時" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "在寫入輸出檔時發生錯誤" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "在寫入檔案時發生錯誤" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "在寫入該檔時發生錯誤" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "在讀取伺服器時發生錯誤" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "錯誤的標頭資料" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "連線失敗" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "內部錯誤" @@@ -1832,87 -1827,87 +1833,87 @@@ msgstr "套件檔沒有 control 記錄 msgid "Unable to get a cursor" msgstr "無法取得遊標" --#: ftparchive/writer.cc:80 ++#: ftparchive/writer.cc:82 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告:無法讀取目錄 %s\n" --#: ftparchive/writer.cc:85 ++#: ftparchive/writer.cc:87 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告:無法取得 %s 狀態\n" --#: ftparchive/writer.cc:141 ++#: ftparchive/writer.cc:143 msgid "E: " msgstr "錯誤:" --#: ftparchive/writer.cc:143 ++#: ftparchive/writer.cc:145 msgid "W: " msgstr "警告:" --#: ftparchive/writer.cc:150 ++#: ftparchive/writer.cc:152 msgid "E: Errors apply to file " msgstr "錯誤:套用到檔案時發生錯誤" --#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 ++#: ftparchive/writer.cc:170 ftparchive/writer.cc:202 #, c-format msgid "Failed to resolve %s" msgstr "無法解析 %s" --#: ftparchive/writer.cc:181 ++#: ftparchive/writer.cc:183 msgid "Tree walking failed" msgstr "無法走訪目錄樹" --#: ftparchive/writer.cc:208 ++#: ftparchive/writer.cc:210 #, c-format msgid "Failed to open %s" msgstr "無法開啟 %s" --#: ftparchive/writer.cc:267 ++#: ftparchive/writer.cc:269 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" --#: ftparchive/writer.cc:275 ++#: ftparchive/writer.cc:277 #, c-format msgid "Failed to readlink %s" msgstr "無法讀取連結 %s" --#: ftparchive/writer.cc:279 ++#: ftparchive/writer.cc:281 #, c-format msgid "Failed to unlink %s" msgstr "無法移除連結 %s" --#: ftparchive/writer.cc:286 ++#: ftparchive/writer.cc:288 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** 無法將 %s 連結到 %s" --#: ftparchive/writer.cc:296 ++#: ftparchive/writer.cc:298 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " 達到了 DeLink 的上限 %sB。\n" --#: ftparchive/writer.cc:401 ++#: ftparchive/writer.cc:403 msgid "Archive had no package field" msgstr "套件檔裡沒有套件資訊" --#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 ++#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 #, c-format msgid " %s has no override entry\n" msgstr " %s 沒有重新定義項目\n" --#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 ++#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的維護者是 %s,而非 %s\n" --#: ftparchive/writer.cc:721 ++#: ftparchive/writer.cc:708 #, c-format msgid " %s has no source override entry\n" msgstr " %s 沒有原始碼重新定義項目\n" --#: ftparchive/writer.cc:725 ++#: ftparchive/writer.cc:712 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 也沒有二元碼重新定義項目\n" @@@ -2257,30 -2252,30 +2258,30 @@@ msgid " msgstr "" #. d means days, h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:372 ++#: apt-pkg/contrib/strutl.cc:378 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:379 ++#: apt-pkg/contrib/strutl.cc:385 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds --#: apt-pkg/contrib/strutl.cc:386 ++#: apt-pkg/contrib/strutl.cc:392 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds --#: apt-pkg/contrib/strutl.cc:391 ++#: apt-pkg/contrib/strutl.cc:397 #, c-format msgid "%lis" msgstr "" --#: apt-pkg/contrib/strutl.cc:1166 ++#: apt-pkg/contrib/strutl.cc:1172 #, c-format msgid "Selection %s not found" msgstr "選項 %s 找不到" @@@ -2350,16 -2345,6 +2351,16 @@@ msgstr "%c%s... 錯誤! msgid "%c%s... Done" msgstr "%c%s... 完成" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@@ -2471,17 -2456,17 +2472,17 @@@ msgstr "子程序 %s 收到一個記憶 msgid "Sub-process %s received signal %u." msgstr "子程序 %s 收到一個記憶體錯誤。" --#: apt-pkg/contrib/fileutl.cc:846 ++#: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子程序 %s 傳回錯誤碼 (%u)" --#: apt-pkg/contrib/fileutl.cc:848 ++#: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子程序 %s 不預期得結束" --#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 ++#: apt-pkg/contrib/fileutl.cc:984 #, c-format msgid "Could not open file %s" msgstr "無法開啟檔案 %s" @@@ -2528,6 -2513,6 +2529,12 @@@ msgstr "在刪除檔案時發生問題 msgid "Problem syncing the file" msgstr "在同步檔案時發生問題" ++#. TRANSLATOR: %s is the trusted keyring parts directory ++#: apt-pkg/contrib/gpgv.cc:76 ++#, fuzzy, c-format ++msgid "No keyring installed in %s." ++msgstr "放棄安裝。" ++ #: apt-pkg/pkgcache.cc:148 msgid "Empty package cache" msgstr "清空套件快取" @@@ -2749,7 -2734,7 +2756,7 @@@ msgid " "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@@ -2757,11 -2742,11 +2764,11 @@@ msgstr " "錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" "件。" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@@ -2928,8 -2913,8 +2935,8 @@@ msgstr "無法重新命名,%s (%s -> msgid "MD5Sum mismatch" msgstr "MD5Sum 不符" --#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 --#: apt-pkg/acquire-item.cc:2002 ++#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865 ++#: apt-pkg/acquire-item.cc:2008 msgid "Hash Sum mismatch" msgstr "Hash Sum 不符" @@@ -2961,7 -2946,7 +2968,7 @@@ msgstr " msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" --#: apt-pkg/acquire-item.cc:1521 ++#: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" "A error occurred during the signature verification. The repository is not " @@@ -2969,12 -2954,12 +2976,12 @@@ msgstr "" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) --#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 ++#: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533 #, c-format msgid "GPG error: %s: %s" msgstr "" --#: apt-pkg/acquire-item.cc:1635 ++#: apt-pkg/acquire-item.cc:1641 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@@ -2983,44 -2968,44 +2990,44 @@@ msgstr " "找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" "台)" --#: apt-pkg/acquire-item.cc:1694 ++#: apt-pkg/acquire-item.cc:1700 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " "to manually fix this package." msgstr "找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。" --#: apt-pkg/acquire-item.cc:1753 ++#: apt-pkg/acquire-item.cc:1759 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" --#: apt-pkg/acquire-item.cc:1851 ++#: apt-pkg/acquire-item.cc:1857 msgid "Size mismatch" msgstr "大小不符" --#: apt-pkg/indexrecords.cc:64 ++#: apt-pkg/indexrecords.cc:68 #, c-format msgid "Unable to parse Release file %s" msgstr "無法辨別 Release 檔 %s" --#: apt-pkg/indexrecords.cc:74 ++#: apt-pkg/indexrecords.cc:78 #, c-format msgid "No sections in Release file %s" msgstr "在 Release 檔 %s 裡沒有區段" --#: apt-pkg/indexrecords.cc:108 ++#: apt-pkg/indexrecords.cc:112 #, c-format msgid "No Hash entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash 項目" --#: apt-pkg/indexrecords.cc:121 ++#: apt-pkg/indexrecords.cc:125 #, fuzzy, c-format msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash 項目" --#: apt-pkg/indexrecords.cc:140 ++#: apt-pkg/indexrecords.cc:144 #, fuzzy, c-format msgid "Invalid 'Date' entry in Release file %s" msgstr "在 Release 檔 %s 裡沒有 Hash 項目" @@@ -3116,22 -3101,22 +3123,22 @@@ msgstr "正在寫入新的來源列表\ msgid "Source list entries for this disc are:\n" msgstr "該碟片的來源列表項目為:\n" --#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 ++#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records.\n" msgstr "寫入 %i 筆紀錄。\n" --#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 ++#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" --#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 ++#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" --#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 ++#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" @@@ -3146,17 -3131,17 +3153,6 @@@ msgstr " msgid "Hash mismatch for: %s" msgstr "Hash Sum 不符" --#: apt-pkg/indexcopy.cc:665 --#, c-format --msgid "File %s doesn't start with a clearsigned message" --msgstr "" -- --#. TRANSLATOR: %s is the trusted keyring parts directory --#: apt-pkg/indexcopy.cc:696 --#, fuzzy, c-format --msgid "No keyring installed in %s." --msgstr "放棄安裝。" -- #: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" @@@ -3220,7 -3205,7 +3216,7 @@@ msgstr " msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --combined test/integration/framework index 4a70573c8,86e6ed7c3..31b12e8bf --- a/test/integration/framework +++ b/test/integration/framework @@@ -1,7 -1,5 +1,7 @@@ #!/bin/sh -- # no runable script, just for vi +EXIT_CODE=0 + # we all like colorful messages if expr match "$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev/null && \ expr match "$(readlink -f /proc/$$/fd/2)" '/dev/pts/[0-9]\+' > /dev/null; then @@@ -38,7 -36,7 +38,7 @@@ msgtest() } msgpass() { echo "${CPASS}PASS${CNORMAL}" >&2; } msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; } -msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; } +msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; EXIT_CODE=$((EXIT_CODE+1)); } # enable / disable Debugging MSGLEVEL=${MSGLEVEL:-3} @@@ -115,18 -113,9 +115,18 @@@ gdb() APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} $(which gdb) ${BUILDDIRECTORY}/$1 } +exitwithstatus() { + # error if we about to overflow, but ... + # "255 failures ought to be enough for everybody" + if [ $EXIT_CODE -gt 255 ]; then + msgdie "Total failure count $EXIT_CODE too big" + fi + exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255)); +} + addtrap() { - CURRENTTRAP="$1 $CURRENTTRAP" - trap "$CURRENTTRAP exit;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM + CURRENTTRAP="$CURRENTTRAP $1" + trap "$CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM } setupenvironment() { @@@ -339,9 -328,15 +339,15 @@@ Package: $NAME" >> ${BUILDDIR}/debian/c fi echo '3.0 (native)' > ${BUILDDIR}/debian/source/format - local SRCS="$( (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')" - for SRC in $SRCS; do + (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' \ + | while read SRC; do echo "pool/${SRC}" >> ${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist + # if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then + # gpg --yes --no-default-keyring --secret-keyring ./keys/joesixpack.sec \ + # --keyring ./keys/joesixpack.pub --default-key 'Joe Sixpack' \ + # --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC" + # mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC" + # fi done for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do