- duplicate package checks with arch/os checks if colored.
- file conflict checks with colors.
- fix: debugedit.c problem.
+ - permit anaconda to choose "presentation order".
4.0.4 -> 4.1:
- loosely wire beecrypt library into rpm.
int i = 0;
if ((Name = rpmdsN(requires)) == NULL)
- return 0; /* XXX can't happen */
+ return 0;
/* Avoid rpmlib feature dependencies. */
if (!strncmp(Name, "rpmlib(", sizeof("rpmlib(")-1))
return 0;
+ /* Avoid package config dependencies. */
+ if (!strncmp(Name, "config(", sizeof("config(")-1))
+ return 0;
+
pkgKey = RPMAL_NOMATCH;
key = rpmalSatisfiesDepend(ts->addedPackages, requires, &pkgKey);
{
rpmds requires;
int_32 Flags;
-
-#ifdef DYING
- int chainsaw = rpmtsFlags(ts) & RPMTRANS_FLAG_CHAINSAW;
-#else
- int chainsaw = 1;
-#endif
+ int anaconda = rpmtsFlags(ts) & RPMTRANS_FLAG_ANACONDA;
rpmtsi pi; rpmte p;
rpmtsi qi; rpmte q;
rpmtsi ri; rpmte r;
int nrescans = 10;
int _printed = 0;
char deptypechar;
+ size_t tsbytes;
int oType = 0;
int treex;
int depth;
}
ordering = alloca(sizeof(*ordering) * (numOrderList + 1));
loopcheck = numOrderList;
+ tsbytes = 0;
pi = rpmtsiInit(ts);
while ((p = rpmtsiNext(pi, oType)) != NULL)
case TR_REMOVED:
/* Skip if not %preun/%postun requires or legacy prereq. */
if (isInstallPreReq(Flags)
- || !( isErasePreReq(Flags)
- || isLegacyPreReq(Flags) )
- )
+ || !( isErasePreReq(Flags) || isLegacyPreReq(Flags) ) )
/*@innercontinue@*/ continue;
/*@switchbreak@*/ break;
case TR_ADDED:
/* Skip if not %pre/%post requires or legacy prereq. */
if (isErasePreReq(Flags)
- || !( isInstallPreReq(Flags)
- || isLegacyPreReq(Flags) )
- )
+ || !( isInstallPreReq(Flags) || isLegacyPreReq(Flags) ) )
/*@innercontinue@*/ continue;
/*@switchbreak@*/ break;
}
case TR_REMOVED:
/* Skip if %preun/%postun requires or legacy prereq. */
if (isInstallPreReq(Flags)
- || ( isErasePreReq(Flags)
- || isLegacyPreReq(Flags) )
- )
+ || ( isErasePreReq(Flags) || isLegacyPreReq(Flags) ) )
/*@innercontinue@*/ continue;
/*@switchbreak@*/ break;
case TR_ADDED:
/* Skip if %pre/%post requires or legacy prereq. */
if (isErasePreReq(Flags)
- || ( isInstallPreReq(Flags)
- || isLegacyPreReq(Flags) )
- )
+ || ( isInstallPreReq(Flags) || isLegacyPreReq(Flags) ) )
/*@innercontinue@*/ continue;
/*@switchbreak@*/ break;
}
pi = rpmtsiInit(ts);
while ((p = rpmtsiNext(pi, oType)) != NULL) {
- /* Prefer packages in chainsaw or presentation order. */
- if (!chainsaw)
+ /* Prefer packages in chainsaw or anaconda presentation order. */
+ if (anaconda)
rpmteTSI(p)->tsi_qcnt = (ts->orderCount - rpmtsiOc(pi));
if (rpmteTSI(p)->tsi_count != 0)
treex = rpmteTree(q);
depth = rpmteDepth(q);
(void) rpmteSetDegree(q, 0);
+ tsbytes += rpmtePkgFileSize(q);
ordering[orderingCount] = rpmteAddedKey(q);
orderingCount++;
_printed++;
(void) rpmtsUnorderedSuccessors(ts, orderingCount);
rpmMessage(RPMMESS_DEBUG,
- _("========== successors only (presentation order)\n"));
+ _("========== successors only (%d bytes)\n"), (int)tsbytes);
/* Relink the queue in presentation order. */
tsi = rpmteTSI(q);
newOrder[newOrderCount++] = q;
ts->order[j] = NULL;
- if (!chainsaw)
+ if (anaconda)
for (j = needle->orIndex + 1; j < ts->orderCount; j++) {
if ((q = ts->order[j]) == NULL)
/*@innerbreak@*/ break;
N_("remove all packages which match <package> (normally an error is generated if <package> specified multiple packages)"),
NULL},
+ { "anaconda", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
+ &rpmIArgs.transFlags, RPMTRANS_FLAG_ANACONDA,
+ N_("use anaconda \"presentation order\""), NULL},
+
{ "apply", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN, &rpmIArgs.transFlags,
(_noTransScripts|_noTransTriggers|
RPMTRANS_FLAG_APPLYONLY|RPMTRANS_FLAG_PKGCOMMIT),
/*@=enummemuse@*/
RPMTRANS_FLAG_APPLYONLY = (1 << 25),
-/*@-enummemuse@*/
- RPMTRANS_FLAG_CHAINSAW = (1 << 26),
-/*@=enummemuse@*/
+ RPMTRANS_FLAG_ANACONDA = (1 << 26),
RPMTRANS_FLAG_NOMD5 = (1 << 27), /*!< from --nomd5 */
RPMTRANS_FLAG_NOSUGGEST = (1 << 28), /*!< from --nosuggest */
RPMTRANS_FLAG_ADDINDEPS = (1 << 29), /*!< from --aid */
p->key = key;
p->fd = NULL;
+ p->pkgFileSize = 0;
+
p->this = rpmdsThis(h, RPMTAG_PROVIDENAME, RPMSENSE_EQUAL);
p->provides = rpmdsNew(h, RPMTAG_PROVIDENAME, scareMem);
p->requires = rpmdsNew(h, RPMTAG_REQUIRENAME, scareMem);
int dboffset,
alKey pkgKey)
{
- rpmte te = xcalloc(1, sizeof(*te));
+ rpmte p = xcalloc(1, sizeof(*p));
+ int_32 * ep;
+ int xx;
- addTE(ts, te, h, key, relocs);
+ addTE(ts, p, h, key, relocs);
switch (type) {
case TR_ADDED:
- te->type = type;
- te->u.addedKey = pkgKey;
+ p->type = type;
+ p->u.addedKey = pkgKey;
+ ep = NULL;
+ xx = headerGetEntry(h, RPMTAG_SIGSIZE, NULL, (void **)&ep, NULL);
+ /* XXX 256 is only an estimate of signature header. */
+ if (ep != NULL)
+ p->pkgFileSize += 96 + 256 + *ep;
break;
case TR_REMOVED:
- te->type = type;
- te->u.removed.dependsOnKey = pkgKey;
- te->u.removed.dboffset = dboffset;
+ p->type = type;
+ p->u.removed.dependsOnKey = pkgKey;
+ p->u.removed.dboffset = dboffset;
break;
}
- return te;
+ return p;
}
rpmElementType rpmteType(rpmte te)
return ocolor;
}
+uint_32 rpmtePkgFileSize(rpmte te)
+{
+ return (te != NULL ? te->pkgFileSize : 0);
+}
+
int rpmteDepth(rpmte te)
{
return (te != NULL ? te->depth : 0);
/*@refcounted@*/ /*@null@*/
rpmfi fi; /*!< File information. */
- uint_32 color; /*!< Color bit(s) from package dependencies */
+ uint_32 color; /*!< Color bit(s) from package dependencies. */
+ uint_32 pkgFileSize; /*!< No. of bytes in package file (approx). */
/*@exposed@*/ /*@dependent@*/ /*@null@*/
fnpyKey key; /*!< (TR_ADDED) Retrieval key. */
uint_32 rpmteSetColor(rpmte te, uint_32 color)
/*@modifies te @*/;
+/**
+ * Retrieve size in bytes of package file.
+ * @todo Signature header is estimated at 256b.
+ * @param te transaction element
+ * @return size in bytes of package file.
+ */
+uint_32 rpmtePkgFileSize(rpmte te)
+ /*@*/;
+
/**
* Retrieve tsort tree depth of transaction element.
* @param te transaction element
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead selhalo\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "Glob není dovolen: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Soubor nenalezen globem: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíèek: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "generovat hlavièky balíèkù kompatibilní s RPM verze 2 a 3"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nekontrolovat závislosti balíèkù"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nekontrolovat architekturu balíèku"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
msgstr ""
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "SMYÈKA:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== pokraèuje tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "vynechat pøípadné PGP podpisy"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() nevrátil velikost: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() nevrátil pøípojné body: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Soubor %4d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "soubor %s je na neznámém zaøízení\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
#, fuzzy
msgid "========== Directories not explictly included in package:\n"
msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "vytvoøen adresáø %s s právy %04o.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ulo¾eno jako %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvoøen jako %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nemohu zapsat do %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pøi vytváøení doèasného souboru %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "práce s balíèky verze 1 není podporována touto verzí RPM\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "tato verze RPM podporuje práci s balíèky s verzí <= 4\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: readLead selhalo\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead selhalo\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread selhalo: %s\n"
"odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
"specifikuje-li <balíèek> více balíèkù)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "pøemístìní souborù v nepøemístitelném balíèku"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "uchovat smazané soubory pøesunem do podadresáøe"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "smazat (deinstalovat) balíèek"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<balíèek>"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "vypsat v¹echny konfiguraèní soubory"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "neinstalovat dokumentaci"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<cesta>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "zkratka pro --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<soubor_balíèku>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nekontrolovat architekturu balíèku"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nekontrolovat operaèní systém balíèku"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "nekontrolovat volné místo na disku pøed instalací"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "nainstalovat dokumentaci"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "nainstalovat balíèek"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "upravit databázi, ale neupravovat systém souborovù"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "nekontrolovat závislosti balíèkù"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "nekontrolovat MD5 souborù v balíèku"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
"automaticky)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "bìhem instalace balíèku zobrazit procenta"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<adresáø>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<stará_cesta>=<nová_cesta>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "uchovat smazané soubory pomocí pøebalení"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
#, fuzzy
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "odinstalovat nové balíèky, reinstalovat staré balíèky zpìt do data"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<datum>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "aktualizace balíèku"
msgid "don't verify files in package"
msgstr "nekontrolovat soubory v balíèku"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "nekontrolovat závislosti balíèkù"
msgid "generate signature"
msgstr "generovat PGP/GPG podpis"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " na souboru "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "nesprávný formát: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(neobsahuje ¾ádné soubory)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normální "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "nahrazen "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "neinstalován "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "sdílen v síti "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(chybí stav) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámý %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdaøil\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "¾ádné balíèky\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "¾ádný balíèek nevy¾aduje %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "¾ádný balíèek neposkytuje %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "soubor %s nevlastní ¾ádný balíèek\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "záznam balíèku èíslo: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "záznam %u nelze pøeèíst\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
msgid "(added provide)"
msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: otevøení selhalo: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile selhalo\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite selhalo: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "parametr není RPM balíèek\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: Fwrite selhalo: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: Fwrite selhalo: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead selhalo\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead selhalo\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead selhalo\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead selhalo\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
#, fuzzy
msgid "NOT OK"
msgstr "NE "
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nezadány ¾ádné balíèky pro instalaci"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "aktualizace balíèku"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Hledám %s: (pou¾it %s)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, fuzzy, c-format
msgid "Retrieving %s\n"
msgstr "RPM verze %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, fuzzy, c-format
msgid " ... as %s\n"
msgstr "%s ulo¾eno jako %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "neinstalován "
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "cesta %s v balíèku %s není pøemístitelná"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "chyba pøi vytváøení doèasného souboru %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "vytvoøení zdrojového a binárního balíèku z <tar_soubor>"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "chybné závislosti pøi sestavování:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
#, fuzzy
msgid "installing binary packages\n"
msgstr "nainstalovat balíèek"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, fuzzy, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, fuzzy, c-format
msgid "Installing %s\n"
msgstr "øádek: %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "Chybí '(' v %s %s\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "©patná práva adresáøe: %s(%s)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "Sestavuji cílové platformy: %s\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "øádek %d: ©patný formát BuildArchitecture: %s\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "nemohu zjistit stav %s: %m\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, fuzzy, c-format
msgid "Unknown system: %s\n"
msgstr "Neznámý typ ikony: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "nemohu znovu otevøít payload: %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "øádek: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verze %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "získávám seznam pøipojených systémù souborù\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chybí { po %"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "chybné závislosti pøi sestavování:\n"
msgid "failed to create %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "ovìøit podpis v balíèku"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
#, fuzzy
msgid "Common options for all rpm modes and executables:"
msgstr "Spoleèné volby pro v¹echny módy:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: otevøení selhalo: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: Fread selhalo: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "Nemohu zapsat v¹echna data do %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Soubor %4d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead mislykkedes\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fil ikke fundet med glob: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åbne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
msgstr ""
"generér pakkehoved(er), der er kompatible med (gamle) rpm[23]-indpakninger"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "undlad at tjekke pakkers afhængighedskrav"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "tjek ikke pakkens arkitektur"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "LØKKE:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== fortsætter tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "overspring eventuelle PGP-signaturer"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() returnerede ingen størrelse: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() returnerede ingen monteringspunkter: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "kunne ikke finde %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Fil %4d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "fil %s er på en ukendt enhed\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan ikke oprette %s: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kunne ikke skrive til %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fejl ved oprettelse af midlertidig fil %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "indpakningsversion 1 understøttes ikke af denne udgave af RPM\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"kun indpakninger med hovedversion <= 4 understøttes af denne udgave af RPM\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature mislykkedes\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen tilgængelig signatur\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead mislykkedes\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread mislykkedes: %s\n"
"fjern alle pakker, som passer med <pakke> (normalt ville det medføre en "
"fejl, hvis <pakke> angav flere pakker)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "udfør ingen pakkespecifikke skripter"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "omdirigér filer i ikke-omdirigérbar pakke"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "slet (afinstallér) pakke"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "<pakke>"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "vis alle konfigurationsfiler"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "installér ikke dokumentation"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "overspring filer med foranstillet komponent <sti> "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "forkortelse for --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "opgradér pakke, hvis den allerede er installeret"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<pakkefil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "udlæs #'er efterhånden som pakken installeres (virker sammen med -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "tjek ikke pakkens arkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "tjek ikke pakkens operativsystem"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "tjek ikke om der er diskplads, før der installeres"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installér dokumentation"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "installér pakke"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "opdatér databasen, men rør ikke filsystemet"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "undlad at tjekke pakkers afhængighedskrav"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "verificér ikke filerne i pakke"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "udfør ikke småskripter, der måtte udløses af denne pakke"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "udfør ingen pakkespecifikke skripter"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"opgradér til en ældre version af pakken (--force gør ikke dette automatisk "
"ved opgraderinger)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "vis procenter efterhånden som pakken installeres"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "omdirigér pakken til <katalog>, hvis omdirigérbar"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<katalog>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "omdirigér filer fra <gammelsti> til <nysti>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr "<gammelsti>=<nysti>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "intallér selvom pakken erstatter installerede filer"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "geninstallér hvis pakken allerede er installeret"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "installér ikke, men fortæl om det ville lykkes eller ej"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "opgradér pakke"
msgid "don't verify files in package"
msgstr "verificér ikke filerne i pakke"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "undlad at tjekke pakkers afhængighedskrav"
msgid "generate signature"
msgstr "generér PGP/GPG-signatur"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær fundet\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "kildepakke indeholder ingen .spec-fil\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "overspringer installation af %s-%s-%s, %%pre-småskript fejlede rc %d\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " for fil "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ugyldigt format: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(indeholder ingen filer)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normal "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "erstattet "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "ej installeret"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "ej delt "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(ingen status)"
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(ukendt %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "forespørgsel af %s mislykkedes\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s indeholder ingen pakker\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Kunne ikke læse %s: %s.\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakker kræver %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakker tilfører %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tilhører ingen pakke\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "pakkens post-nummer: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke læses\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
msgid "(added provide)"
msgstr "%s: %-45s JA (tilføjede 'provide')\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: åbning mislykkedes: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile mislykkedes\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite mislykkedes: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "parameter er ikke en RPM-pakke\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Kan ikke underskrive v1.0 RPM\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Kan ikke genunderskrive v2.0 RPM\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead mislykkedes: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature mislykkedes: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead mislykkedes\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead mislykkedes\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead mislykkedes\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead mislykkedes\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen tilgængelig signatur (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "IKKE O.K."
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (MANGLENDE NØGLER: "
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (IKKE-BETROEDE NØGLER:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "O.K."
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "Forbereder pakker til installation..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
#, fuzzy
msgid "Repackaging..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
#, fuzzy
msgid "Upgrading..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "opgradér pakke"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Finder %s: (benytter %s)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Modtager %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "overspringer %s - overførsel mislykkedes - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kunne ikke installeres\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke omrokeres\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "fejl ved læsning fra filen %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s kræver en nyere version af RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fandt %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kunne ikke åbne fil %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" angiver flere pakker\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "ukendt fejl %d under arbejdet med pakken %s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "manglende andet ':' ved %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "manglende navn på arkitektur ved %s:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Ufærdig datalinie ved %s:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "For mange parametre på datalinie ved %s:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Ugyldigt arch/os-tal: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Ufuldstændig standardlinie ved %s:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "For mange parametre i standardlinie ved %s:%d\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Kunne ikke læse %s: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "manglende ':' (fandt 0x%02x) ved %s:%d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "manglende parameter til %s ved %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%s-udvidelse mislykkedes ved %s:%d \"%s\"\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "kan ikke åbne %s ved %s:%d: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "manglende arkitektur for %s ved %s:%d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "ugyldig tilvalg '%s' ved %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
"Ukendt system: %s\n"
"\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontakt venligst rpm-list@redhat.com (på engelsk)\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "Kan ikke udfolde %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "Kunne ikke læse %s, HOME er for stor.\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åbne %s for læsning: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke åbne Packages-database i %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åbne rpm-database i %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linie: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr ""
"kilder i: %s\n"
"\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "henter liste over monterede filsystemer\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signaturfyld : %d\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manglende %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "kunne ikke oprette %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "verificér pakkesignatur"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
#, fuzzy
msgid "Common options for all rpm modes and executables:"
msgstr "Fælles tilvalg for alle rpm-tilstande:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: åbning mislykkedes: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: læs manifest mislykkedes: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "kunne ikke skrive alle data til %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Fil %4d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "Dateiabhängigkeiten nicht überprüfen"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "Paket-Architektur nicht überprüfen"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgstr "alle PGP-Signaturen überspringen"
# , c-format
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "anlegen von %s fehlgeschlagen\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
# , c-format
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fs.c:326
+# , c-format
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
# , c-format
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Keine Signatur verfügbar\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
"Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
"ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "Keine paketspezifischen Skripte ausführen"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "Paket löschen (deinstallieren)"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "Anfrage an alle Pakete"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "Dokumentation nicht installieren"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "Abkürzung für --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<STUFE> <SPEC> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "Paket-Architektur nicht überprüfen"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "Paket-Betriebssystem nicht überprüfen"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "Dokumentation installieren"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "Paket installieren"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "Dateiabhängigkeiten nicht überprüfen"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "Paket installieren"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "Keine paketspezifischen Skripte ausführen"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
"Aktualisierungen automatisch)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "Prozentangabe bei der Paketinstallation ausgeben"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "Paket installieren"
msgid "don't verify files in package"
msgstr "Paket installieren"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "Dateiabhängigkeiten nicht überprüfen"
msgid "generate signature"
msgstr "PGP-Signatur generieren"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "Fehler beim Format %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(beinhaltet keine Dateien)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
#, fuzzy
msgid "not installed "
msgstr "Paket %s ist nicht installiert\n"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(unbekannter Typ)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "Anfrage an alle Pakete"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "kein Paket triggert %s\n"
# , c-format
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "kein Paket verlangt %s\n"
# oder besser: ... listet %s auf? -ke-
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "kein Paket stellt %s bereit\n"
# , c-format
-#: lib/query.c:712
+#: lib/query.c:708
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Kann v1.0-RPM nicht signieren\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (FEHLENDE SCHLüSSEL)"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "Es wurden keine Pakete für die Installation angegeben"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "Paket installieren"
# , c-format
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Hole %s heraus\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
#, fuzzy
msgid "installing binary packages\n"
msgstr "Paket installieren"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "fehlendes zweites ':' bei %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "fehlender Name cer Architektur bei %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Unvollständige Datenzeile bei %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Unvollständige Standardzeile bei %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
# , c-format
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "fehlender ':' bei %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "fehlendes Argument für %s bei %s:%d"
# , c-format
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "fehlende Architektur für %s bei %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "unzureichende Option '%s' bei %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
# , c-format
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
# , c-format
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Hole %s heraus\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "fehlende { nach %{"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "anlegen von %s fehlgeschlagen\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "Paketsignatur überprüfen"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "anlegen von %s fehlgeschlagen\n"
-# , c-format
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Öffnen von %s fehlgeschlagen: %s"
-
#, fuzzy
#~ msgid "No signature\n"
#~ msgstr "%s: Keine Signatur verfügbar\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead epäonnistui\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "paketti %s ei ole %s:ssä"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "älä tarkista paketin riippuvuuksia"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "ohita PGP-allekirjoitukset"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "%s:n luonti epäonnistui\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "en voinut avata %s: %s"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ei allekirjoitusta saatavilla\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead epäonnistui\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
"poista kaikki paketit, joiden nimeä vastaa <paketti> (tavallisesti, jos "
"<paketti> määrittää useita paketteja, tulee virhe)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "älä aja mitään pakettikohtaisia skriptejä"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "poista paketti"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "kysele kaikki paketit"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "älä asenna dokumentointia"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "lyhenne parametreille --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<vaihe> <määrittely> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "älä tarkista paketin käyttöjärjestelmää"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "asenna dokumentaatio"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "asenna paketti"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "älä tarkista paketin riippuvuuksia"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "asenna paketti"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "älä aja mitään pakettikohtaisia skriptejä"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
"automaattisesti)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "tulosta asennuksen eteneminen prosentteina"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "asenna uudelleen, jos paketti on jo asennettu"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "älä asenna, mutta kerro onnistuisiko se"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "asenna paketti"
msgid "don't verify files in package"
msgstr "asenna paketti"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "älä tarkista paketin riippuvuuksia"
msgid "generate signature"
msgstr "generoi PGP-allekirjoitus"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "virhe formaatissa: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(ei tiedostoja)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
#, fuzzy
msgid "not installed "
msgstr "paketti %s ei ole asennettu\n"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(tuntematon tyyppi)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "kysele kaikki paketit"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "mikään pakettie ei tarvitse %s:a\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "mikään paketti ei tarjoa %s:a\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: avaus ei onnistunut\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: avaus ei onnistunut\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "virhe: %s ei vaikuta RPM paketilta\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
#, fuzzy
msgid " (MISSING KEYS:"
msgstr "(PUUTTUVAT AVAIMET)"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "asennukselle ei määritelty paketteja"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "asenna paketti"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Haen: %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "puuttuvat riippuvuudet:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
#, fuzzy
msgid "installing binary packages\n"
msgstr "asenna paketti"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "toinen ':' puuttuu, %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Epätäydellinen datarivi, %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "liian monta parametriä datarivillä %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Epätäydellinen oletusrivi, %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "liian monta parametriä oletusrivillä %s:%d"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "En voi lukea %s: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "puuttuva ':', %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "%s:n puuttuva parametri %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "huono parametri '%s', %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "En voi avata %s luettavaksi: %s."
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Haen: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
msgid "failed to create %s: %s\n"
msgstr "%s:n luonti epäonnistui\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "tarkista paketin allekirjoitus"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: avaus ei onnistunut\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "%s:n luonti epäonnistui\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "en voinut avata %s: %s"
-
#, fuzzy
#~ msgid "No signature\n"
#~ msgstr "%s: Ei allekirjoitusta saatavilla\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\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"
msgid "%s: public key read failed.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "impossible d'ouvrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr " --sign - genre une signature PGP"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr ""
" -c - donne uniquement la liste des fichiers de "
"configuration (implique -l)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
#, fuzzy
msgid "short hand for --replacepkgs --replacefiles"
msgstr " --force - raccourci pour --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -i <packagefile>\t- installe le package"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
#, fuzzy
msgid "print hash marks as package installs (good with -v)"
msgstr ""
" --hash - affiche des '#' pendant l'installation du package "
"(utile avec -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr ""
" -p <packagefile>+ - interroge le package (non install) <packagefile>"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:273
+#: lib/poptI.c:277
#, fuzzy
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
" --oldpackage - mise jour par une ancienne version du package (--"
"force"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
#, fuzzy
msgid "print percentages as package installs"
msgstr ""
" --percent - affiche des '%' pendant l'installation du package"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
#, fuzzy
msgid "install even if the package replaces installed files"
msgstr ""
" --replacefiles - installe mme si le package remplace des fichiers "
"dj prsents"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
#, fuzzy
msgid "reinstall if the package is already present"
msgstr " --replacepkgs - rinstalle si le package est dj prsent"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
#, fuzzy
msgid "don't install, but tell if it would work or not"
msgstr ""
" --test - n'installe pas, mais indique si ca fonctionnerait "
"ou pas"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr ""
msgid "don't verify files in package"
msgstr ""
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr ""
msgid "generate signature"
msgstr " --sign - genre une signature PGP"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
#, fuzzy
msgid "not installed "
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "La construction a chou.\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr ""
" -p <packagefile>+ - interroge le package (non install) <packagefile>"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "impossible d'ouvrir: %s\n"
msgid "failed to create %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr ""
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "impossible d'ouvrir: %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "impossible d'ouvrir: %s\n"
-
#, fuzzy
#~ msgid "Old PGP signature\n"
#~ msgstr " --sign - genre une signature PGP"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
msgstr ""
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr ""
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr ""
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr ""
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr ""
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, c-format
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr ""
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, c-format
msgid "%s: headerRead failed: %s"
msgstr ""
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
msgid "do not install configuration files"
msgstr ""
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:208
+#: lib/poptI.c:212
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr ""
msgid "don't verify files in package"
msgstr ""
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, c-format
msgid "%s: not an rpm package\n"
msgstr ""
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, c-format
msgid "%s: import read failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, c-format
msgid "%s: import failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr ""
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr ""
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr ""
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr ""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr ""
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr ""
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:396
+#: lib/verify.c:394
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
msgid "failed to create %s: %s\n"
msgstr ""
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr ""
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr ""
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: Fseek brást: %s\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "Gat ekki opnað PreUn skrá: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Skráin fannst ekki með 'glob': %s\n"
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritað í pakka: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritað innihald í %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ekki skoða pakkaskilyrðin"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ekki skoða pakkaskilyrðin"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "búa til undirskrift"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() skilaði ekki stærð: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "gat ekki skoðað %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Skrá %s: %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistað sem %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s búið til sem %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "gat ekki búið til %%%s %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "get ekki ritað í %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s rmdir %s brást: %s\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: Fseek brást: %s\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<pakkaskrá>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "birta einungis stillingaskrár (innifelur -l)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<pakkaskrá>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "setja inn pakka"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ekki yfirfara MD5 undirritun skráa"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<gömul>=<ný>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "uppfæra pakka"
msgid "don't verify files in package"
msgstr "ekki yfirfara skrárnar í pakkanum"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "ekki skoða pakkaskilyrðin"
msgid "generate signature"
msgstr "búa til undirskrift"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "pakkinn inniheldur enga .spec skrá\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesið haus úr %s: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Get ekki lesið %s: %s.\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: Fseek brást: %s\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: Fseek brást: %s\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: Fseek brást: %s\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: gat ekki lesið manifest: %s\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "%5d færa %s -> %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "uppfæra pakka"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Skrá %s: %s\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "gat ekki útbúið pakkaskilyrði:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "vantar seinni ':' á %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Get ekki lesið %s: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "viðfang vantar fyrir %s á %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr ""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "get ekki opnað %s á %s:%d: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "ólöglegur rofi '%s' á %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr ""
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Get ekki opnað %s til lesturs: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "lína: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "vantar %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "gat ekki búið til %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "ekki skoða pakkaskilyrðin"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: Fseek brást: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "gat ekki ritað öll gögn í %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Skrá %s: %s\n"
-
#, fuzzy
#~ msgid "%s: base64 encode failed.\n"
#~ msgstr "%s: Fseek brást: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
msgid "Could not open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "½ñ¤¹þ¤ßÃæ: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "PGP ½ð̾¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, fuzzy, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "stat %s ¤Ë¼ºÇÔ: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, fuzzy, c-format
msgid "file %s is on an unknown device\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%d ¹ÔÌÜ: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ¤òºï½ü¤Ç¤¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "%s ¤òºîÀ®¤Ç¤¤Þ¤»¤ó: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%s ¤Ø½ñ¤¹þ¤á¤Þ¤»¤ó"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
"¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: ͸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
"<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n"
"\t\t\t Ū¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "¥É¥¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "¥É¥¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
"¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n"
"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"°Í¸À¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
"¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Þ¤»¤ó"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
"¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
"¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\n"
"(¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Þ¤¹)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
"ÀÜƬ¼¤ò <dir> ¤ËÀßÄꤷ¤Þ¤¹"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr ""
"¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
"¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
msgid "don't verify files in package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
msgid "generate signature"
msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
-#: lib/psm.c:278
+#: lib/psm.c:271
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s ¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó: %s"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿Ä¹¤Ë¼ºÇÔ %s%s: %s"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
#, fuzzy
msgid " on file "
msgstr "¥Õ¥¡¥¤¥ë¾å"
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s ¼ºÇÔ"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "Ä̾ï"
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "ÃÖ¤´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "¥Í¥Ã¥È¶¦Í"
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)"
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(̤ÃΤΠ%3d)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êͼԤä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êͼԤä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
msgid "(added provide)"
msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "makeTempFile ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "°ú¿ô¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: ͸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (¥¡¼¤Îʶ¼º) "
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (¿®Íê¤Ç¤¤Ê¤¤¸°:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
#, fuzzy
msgid "Repackaging erased files..."
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¥Õ¥¡¥¤¥ë¤¬Í¤ê¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr "%s ¤È¤·¤Æ...\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s ¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ¤Þ¤»¤ó"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "°Í¸À¤Î·çÇ¡:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤¤Þ¤·¤¿"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "2ÈÖÌܤΠ':' ¤¬¤¢¤ê¤Þ¤»¤ó(%s:%d ¤Ç)"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "%s:%d ¤Ë¥¢¡¼¥¥Æ¥¯¥Á¥ã̾¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤Ë°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "ÉÔÀµ¤Ê arch/os ÈÖ¹æ: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "%s:%d ¤ÇÉÔ´°Á´¤Ê¥Ç¥Õ¥©¥ë¥È¹Ô"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%s ¤Î¿Ä¥¼ºÇÔ %s:%d \"%s\""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "%s ÍѤΥ¢¡¼¥¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "¿Ä¥¤Ç¤¤Þ¤»¤ó %s"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s¡£"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "¹ÔÌÜ: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "¥½¡¼¥¹¤Ï: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥¥Ã¥×¤·¤Þ¤¹\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
msgid "failed to create %s: %s\n"
msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
-
#, fuzzy
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "globÀ¸·Î ÆÄÀÏÀ» ãÀ» ¼ö ¾øÀ½: %s\n"
msgid "Could not open %s: %s\n"
msgstr "%s(À»)¸¦ ¿ ¼ö ¾øÀ½: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "ÀÛ¼º: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "(±âÁ¸ÀÇ) rpm[23] ÆÐŰ¡°ú ȣȯÇÏ´Â ÆÐÅ°Áö Çì´õ¸¦ »ý¼ºÇÕ´Ï´Ù"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "tsort °ü°è¿¡¼ %s-%s-%s \"%s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
"========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, Æ®¸®, ±íÀÌ"
"[depth])\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== ÈÄÀÓÀÚ¸¸ [successors only] (Ç¥Çö ¼ø)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "·çÇÁ(LOOP):\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "¾î¶°ÇÑ PGP ¼¸íµµ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl()¿¡¼ Å©±â¸¦ ¹ÝȯÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl()¿¡¼ ¸¶¿îÆ®ÇÒ ÁöÁ¡À» ¹ÝȯÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "%sÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "ÆÄÀÏ%5d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "%s ÆÄÀÏÀº ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ ÀÖ½À´Ï´Ù\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
#, fuzzy
msgid "========== Directories not explictly included in package:\n"
msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%2$04oÀÇ Çã°¡±Ç(perms)À» °¡Áø %1$s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼ ¾ÆÄ«À̺ê ÆÄÀÏ %s(À»)¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s(ÀÌ)°¡ %s(À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s ¸µÅ© ÇØÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s(ÀÌ)°¡ %s(À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "%%%s %s(À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%%%s %s(À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "Àӽà ÆÄÀÏ %s(À»)¸¦ »ý¼ºÇÏ´Â µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "ÀÌ RPM ¹öÀüÀº ÆÐŰ¡ ¹öÀü '1' À» Áö¿øÇÏÁö ¾Ê½À´Ï´Ù\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "ÀÌ RPM ¹öÀüÀº ÁÖ ¹øÈ£(major number)°¡ <= 4 ÀÎ ÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: À¯È¿ÇÑ ¼¸íÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
"<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö"
"¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "ÆÐÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆÐÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "ÇϺÎ-µð·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "ÆÐÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<ÆÐÅ°Áö>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿ÇÕ´Ï´Ù"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<°æ·Î>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<ÆÐÅ°ÁöÆÄÀÏ>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
"ÆÐÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇÏ´Â °ÍÀÌ ÁÁ½À´Ï"
"´Ù)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ÆÐÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µð½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ÀÇÁ¸¼ºÀÌ ÀÖ´Â ÆÐÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
"ÀÌ ÆÐÅ°Áö¿¡ ÀÇÇØ »ý¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö "
"¾Ê½À´Ï´Ù"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç"
"ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "ÆÐÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"Àç¹èÄ¡ ±â´ÉÀÌ ÀÖ´Â ÆÐÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µð·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<µð·ºÅ丮>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "<ÀÌÀü°æ·Î>¿¡¼ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "ÀçÆÐŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î ÀÖ´Â ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "ÆÐÅ°Áö°¡ ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ´Â °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆÐÅ°Áö, <³¯Â¥> º¹±¸(back to date)"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<³¯Â¥>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
msgid "don't verify files in package"
msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
msgid "generate signature"
msgstr "¼¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "¼Ò½º ÆÐÅ°Áö°¡ ÇÊ¿äÇϸç, ¹ÙÀ̳ʸ®°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
"%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %5"
"$d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "¼¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " ´ÙÀ½ ÆÄÀÏÀÇ "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "Á¤»ó(normal) "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "±³Ã¼µÊ(replaced) "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½ "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "net °øÀ¯µÊ "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(¾Ë ¼ö ¾ø´Â %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s ±×·ìÀº ¾î¶² ÆÐÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "%s(À»)¸¦ »ý¼ºÇÏ´Â(trigger) ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr "%s(ÀÌ)°¡ À߸øµÊ: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "%s(À»)¸¦ ÇÊ¿ä·Î ÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "%s(À»)¸¦ Á¦°øÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "%s ÆÄÀÏ: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s ÆÄÀÏÀº ¾î¶² ÆÐÅ°Áö¿¡µµ µé¾îÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "ÆÐÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
msgid "(added provide)"
msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: ¿©´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFileÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: FwriteÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "Àμö °ªÀ¸·Î RPM ÆÐÅ°Áö°¡ ÁöÁ¤µÇ¾î¾ß ÇÕ´Ï´Ù\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: v1.0 RPMÀº ¼¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: v2.0 RPMÀº Àç-¼¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: À¯È¿ÇÑ ¼¸íÀÌ ¾ø½À´Ï´Ù (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "¿Ã¹Ù¸£Áö ¾ÊÀ½"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (Å°¸¦ ãÀ» ¼ö ¾øÀ½:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (Å°¸¦ ½Å·ÚÇÒ ¼ö ¾øÀ½:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "È®ÀÎ"
msgid "relocating directory %s to %s\n"
msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
#, fuzzy
msgid "Repackaging..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
#, fuzzy
msgid "Upgrading..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "%s(À»)¸¦ ã´Â Áß: (%s »ç¿ë)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... %s(À¸)·Î\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s ÆÄÀÏÀ» ¿ ¼ö ¾øÀ½: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s(À»)¸¦ ¿ ¼ö ¾øÀ½: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgstr ""
"%2$s ÆÐÅ°Áö¸¦ ó¸®ÇÏ´Â °úÁ¤¿¡¼ ¾Ë ¼ö ¾ø´Â ¿À·ù %1$d(ÀÌ)°¡ ¹ß»ýÇß½À´Ï´Ù"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "%s¿¡ µÎ¹ø° ':' ÀÌ ¾øÀ½:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "%s¿¡ ¾ÆÅ°ÅØÃĸíÀÌ ¾øÀ½:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "%sÀÇ µ¥ÀÌÅÍ Ç׸ñ(line)ÀÌ ºÒÃæºÐÇÔ:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "%sÀÇ µ¥ÀÌÅÍ Ç׸ñ(line)¿¡ Àμö°¡ ³Ê¹« ¸¹À½:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "À߸øµÈ ¾ÆÅ°ÅØÃÄ/¿î¿µÃ¼Á¦ ¹øÈ£: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "%sÀÇ ±âº» Ç׸ñ(line)ÀÌ ºÒÃæºÐÇÔ:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "%sÀÇ ±âº» Ç׸ñ(line)¿¡ Àμö°¡ ³Ê¹« ¸¹À½:%d\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "%s(À»)¸¦ Àдµ¥ ½ÇÆÐÇÔ: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "%2$s¿¡ ':' (0x%1$02x ãÀ½) ÀÌ ¾øÀ½:%3$d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "%2$s¿¡ %1$s(À»)¸¦ À§ÇÑ Àμö°¡ ¾øÀ½:%3$d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%2$sÀÇ %1$s È®Àå(expansion)¿¡ ½ÇÆÐÇÔ:%3$d \"%4$s\"\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "%2$sÀÇ %1$s(À»)¸¦ ¿ ¼ö ¾øÀ½:%3$d: %4$s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "%2$s¿¡ %1$s(À»)¸¦ À§ÇÑ ¾ÆÅ°ÅØÃÄ°¡ ¾øÀ½:%3$d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "%2$s¿¡ À߸øµÈ '%1$s' ¿É¼Ç:%3$d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "rpm-list@redhat.comÀ¸·Î ¿¬¶ô¹Ù¶ø´Ï´Ù\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "%s(À»)¸¦ È®Àå(expand)ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "%s(À»)¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù, HOMEÀÌ ³Ê¹« Å®´Ï´Ù.\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s(À»)¸¦ ¿ ¼ö ¾øÀ½: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%sÀÇ rpm µ¥ÀÌÅͺ£À̽º¸¦ ¿ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Çà: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr "¼¸í: size(%d)+pad(%d)\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "´ÙÀ½À» ãÀ» ¼ö ¾øÀ½ %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
msgid "failed to create %s: %s\n"
msgstr "%s(À»)¸¦ »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "ÆÐÅ°ÁöÀÇ ¼¸íÀ» °Ë»çÇÕ´Ï´Ù"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
#, fuzzy
msgid "Common options for all rpm modes and executables:"
msgstr "¸ðµç rpm ¸ðµå¿¡¼ÀÇ ÀϹÝÀûÀÎ ¿É¼Ç:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: ¿©´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "%s¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "ÆÄÀÏ%5d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead feilet\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åpne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ikke verifiser pakkeavhengigheter"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ikke verifiser pakkearkitektur"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "hopp over PGP-signaturer"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() feilet å returnere størrelse: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "feil under kjøring av stat på %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Fil %s: %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "fil %s er på en ukjent enhet\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan ikke opprette %%%s %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kan ikke skrive til %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "feil under oppretting av midlertidig fil %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature feilet\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen signatur tilgjengelig\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead feilet\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread feilet: %s\n"
"fjern alle pakker som er lik <pakke> (normalt vil en feil genereres hvis "
"<pakke> spesifiserer flere pakker)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "ikke kjør pakkespesifikke skriptlet"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "omplasser filer i ikke-omplasserbar pakke"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "slett (avinstaller) pakke"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<pakke>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "ikke installer dokumentasjon"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "ikke installer dokumentasjon"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "hopp over filer med innledende komponent <sti> "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<sti>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "forkortning for --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "oppgrader pakke(r) hvis allerede installert"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<pakkefil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ikke verifiser pakkearkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ikke verifiser operativsystem for pakken"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ikke sjekk diskplass før installasjon"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installer dokumentasjon"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "installer pakke"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "oppdater databasen, men ikke modifiser filsystemet"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "ikke verifiser pakkeavhengigheter"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "ikke kjør noen %%pre skriptlet (hvis noen)"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "ikke kjør %%post skriptlet (hvis noen)"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "ikke kjør %%preun skriptlet (hvis noen)"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "ikke kjør %%postun skriptlet (hvis noen)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "Ikke kjør noen skriptlets som utløses av denne pakken"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "ikke kjør %%triggerprein skriptlets"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "ikke kjør %%triggerin skriptlets"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "ikke kjør %%triggerun skriplets"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "ikke kjør %%triggerpostun skriptlets"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør "
"dette automatisk)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "omplasser pakken til <kat>, hvis den er omplasserbar"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<kat>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "omplasser filer fra sti <gml> til <ny>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<gml>=<ny>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "lagre slettede pakkefiler ved ompakking"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "installer selv om pakken erstatter installerte filer"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "reinstaller selv om pakken allerede er installert"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
#, fuzzy
msgid "<date>"
msgstr "<sti>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "ikke installer, men si ifra om det ville virke eller ikke"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "oppgrader pakke(r)"
msgid "don't verify files in package"
msgstr "ikke verifiser filer i pakke"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "ikke verifiser pakkeavhengigheter"
msgid "generate signature"
msgstr "generer signatur"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær funnet\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "kildepakke inneholder ikke en .spec-fil\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ukorrekt format: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(inneholder ingen filer)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normal "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "erstattet "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "ikke installert"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "delt via nett "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(ingen tilstand)"
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(ukjent %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "feil under åpning av %s: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "spørring på %s feilet\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "kildepakker i gammelt format kan ikke spørres\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s inneholder ingen pakker\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakke krever %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakke gir %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s eies ikke av noen pakke\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: åpne feilet: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile feilet\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite feilet: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "argumentet er ikke en RPM-pakke\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: kan ikke signere v1.0 RPM\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Kan ikke signere v2.0 RPM på nytt\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead feilet: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature feilet: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead feilet\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead feilet\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead feilet\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead feilet\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "IKKE OK"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "OK"
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "Forbereder pakker for installasjon..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
#, fuzzy
msgid "Repackaging..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
#, fuzzy
msgid "Upgrading..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "oppgrader pakke(r)"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Fil %s: %s\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Henter %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hopper over %s - overføring feilet - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke relokeres\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "feil under lesing fra fil %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "fil %s trenger en nyere versjon av RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "feilede avhengigheter:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "mangler andre ':' ved %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "manglende navn på arkitektur ved %s:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Ukomplett datalinje ved %s:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "For mange argumenter i datalinje ved %s:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Ukomplett standardlinje ved %s:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "mangler ':' (fant 0x%02X) ved %s:%d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "manglende argumentfor %s ved %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr ""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "kan ikke åpne %s ved %s:%d %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "manglende arkitektur for %s ved %s:%d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "ugyldig flagg '%s' ved %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "Kan ikke utvide %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åpne database i %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Installerer %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Henter %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "henter liste over monterte filsystemer\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "mangler %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "feilede avhengigheter:\n"
msgid "failed to create %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "verifiser pakkesignatur"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: åpne feilet: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: lesing av manifest feilet: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "kunne ikke skrive alle data til %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Fil %s: %s\n"
-
#, fuzzy
#~ msgid "%s: running %s scriptlet\n"
#~ msgstr "%s: kjører %s-skript (hvis noen)\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "linia %d: Wersja niedozwolona: %s"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku: %s"
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nie sprawdzaj architektury systemu"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "pomiñ wszelkie sygnatury PGP"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "utworzenie %s nie powiod³o siê\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "stat nie powiod³o siê %s: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Plik %4d: 0%o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, fuzzy, c-format
msgid "file %s is on an unknown device\n"
msgstr "plik %s jest na nieznanym urz±dzeniu"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "linia %d: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ostrze¿enie: %s zapisany jako %s"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "skasowanie katalogu %s nie powiod³o siê"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ostrze¿enie: %s utworzony jako %s"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "nie mo¿na utworzyæ %s"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nie mo¿na zapisaæ do %s"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "b³±d w tworzeniu pliku tymczasowego %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Sygnatura nie jest dostêpna\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
"usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
"wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "usuñ (odinstaluj) pakiet"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "znaleziono %d pakietów\n"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "nie instaluj dokumentacji"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <nazwa pakietu>+ "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nie sprawdzaj architektury systemu"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "zainstaluj dokumentacjê"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "instaluj pakiet"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "nie sprawdzaj plików pakietu"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "odpytywanie pakietów zahaczanych przez pakiet"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
"uaktualniania)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "wy¶wietlaj stan instalacji w procentach"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <nazwa pakietu>"
msgid "don't verify files in package"
msgstr "nie sprawdzaj plików pakietu"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
msgid "generate signature"
msgstr "generuj sygnaturê PGP/GPG"
-#: lib/psm.c:278
+#: lib/psm.c:271
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "wykonanie skryptu nie powiod³o siê"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " na pliku "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "b³±d w formacie: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(nie zawiera plików)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normalny "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "zast±piony "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "niezainstalowany"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "udostêpniony w sieci"
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(brak statusu)"
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiod³o siê\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "znaleziono %d pakietów\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Odczytanie %s nie powiod³o siê: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "¿aden pakiet nie wymaga %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "¿aden pakiet nie udostêpnia %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %d\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Open nie powiod³o siê\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "wykonanie nie powiod³o siê\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "argument nie jest pakietem RPM\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "NIE DOBRZE"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (BRAK KLUCZY:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr "(NIEWIARYGODNE KLUCZE:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "OK"
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nie podano nazw plików do zainstalowania"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
#, fuzzy
msgid "Repackaging erased files..."
msgstr "pakiet nie ma plików\n"
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <nazwa pakietu>"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Wyszukiwanie wymaganych zasobów...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "¦ci±ganie %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr "... jako %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakiet %s nie jest przesuwalny\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "b³±d czytania z pliku %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "niespe³nione zale¿no¶ci:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie mo¿na otworzyæ pliku %s: %s"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "brak drugiego ':' przy %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "brak nazwy architektury przy %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Niekompletna linia danych przy %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "B³êdny numer arch/os: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Niekompletna domy¶lna linia przy %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Odczytanie %s nie powiod³o siê: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "brak ':' przy %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "brak argumentu dla %s przy %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%s: Open nie powiod³o siê\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "nie mo¿na otworzyæ %s przy %s:%d"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "brak architektury dla %s przy %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "b³êdna opcja '%s' przy %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Nieznany system: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "Nie mo¿na rozszerzyæ %s"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linia: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "¼ród³a w: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Blok sygnatury: %d\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "brak %s\n"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "utworzenie %s nie powiod³o siê\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "sprawd¼ sygnaturê pakietu"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: Open nie powiod³o siê\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Plik %4d: 0%o %s.%s\t %s\n"
-
#, fuzzy
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
"Language-Team: pt <morais@kde.org\n"
msgid "%s: public key read failed.\n"
msgstr ":%s: o readLead falhou\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "Glob não permitido: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Ficheiro não encontrado pelo glob: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "gerar um cabeçalho do pacote compatível com os pacotes do rpm[23]"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "não verificar as dependências do pacote"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "não verifica a arquitectura do pacote"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relações do tsort\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== só os sucessores (ordem de apresentação)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "CICLO:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "ignorar as assinaturas de PGP"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "o mntctl() falhou ao devolver o tamanho: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "o mntctl() falhou ao devolver o número de pontos de montagem: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "Não consegui analisar o %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "falhei ao aceder ao %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Ficheiro%5d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "o ficheiro %s está num dispositivo desconhecido\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
#, fuzzy
msgid "========== Directories not explictly included in package:\n"
msgstr "========= Directorias não incluidas explicitamente no pacote:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "directoria %s criada com as permissões %04o.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
"o ficheiro de arquivo %s não foi encontrado na lista de ficheiros do "
"cabeçalho\n"
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir de %s falhou: Directoria não está vazia\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir de %s falhou: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink de %s falhou: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "não consigo criar o %%%s %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "não consigo escrever em %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "erro ao criar o ficheiro temporário %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "a versão 1 dos pacotes não é suportada por esta versão do RPM\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "só os pacotes com versão <= 4 são suportados por esta versão do RPM\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: o rpmReadSignature falhou\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Nenhuma assinatura disponível\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr ":%s: o readLead falhou\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: O fread falhou: %s\n"
"remove todos os pacotes que correspondam a <pacote> (normalmente aparece um "
"erro se o <pacote> especifica vários pacotes)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "não executar nenhuns scripts do pacote"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "muda os ficheiros de sítio num pacote de localização fixa"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
"gravar os ficheiros do pacote apagado mudando o nome para sub-directoria"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "apaga (desinstala) o pacote"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<pacote>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "listar todos os ficheiros de configuração"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "não instala a documentação"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "ignorar os ficheiros com a componente inicial <dir> "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<caminho>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "abreviatura para --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "actualizar o pacote(s) se já estiver instalado"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<pacote>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "não verifica a arquitectura do pacote"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "não verifica o sistema operativo do pacote"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "não verifica o espaço em disco antes de instalar"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instala a documentação"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "instala o pacote"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "actualiza a base de dados, mas não altera o sistema de ficheiros"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "não verifica as dependências do pacote"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "não verificar o MD5 dos ficheiros"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"não reorganiza a instalação dos pacotes para satisfazer as dependências"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "não executar o script %%pre (se existir)"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "não executar o script %%post (se existir)"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "não executar o script %%preun (se existir)"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "não executar o script %%postun (se existir)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "não executar nenhum dos scripts activados por este pacote"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerprein"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerin"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerun"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerpostun"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"actualiza para um versão antiga do pacote (o --force faz isto "
"automaticamente)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "mostra percentagens enquanto o pacote instala"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "muda o pacote para <dir>, se for possível"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<dir>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "muda os ficheiros de <velho> para <novo>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<velho>=<novo>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "gravar ficheiros apagados reempacotando-os"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instala mesmo se o pacote substituir ficheiros instalados"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "reinstalar se o pacote já estiver presente"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à <data>"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<data>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "não instala, mas indica se iria funcionar ou não"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "actualizar pacote(s)"
msgid "don't verify files in package"
msgstr "não verificar os ficheiros no pacote"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "não verificar as dependências do pacote"
msgid "generate signature"
msgstr "gerar a assinatura"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
"esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s não existe - a usar o root\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s não existe - a usar o root\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " no ficheiro "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "formato incorrecto: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(não contém ficheiros)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normal "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "substituído "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "não instalado "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "partilhado"
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(sem estado) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(desconhecido %3d)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "a pesquisa do %s falhou\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
"os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "nenhum pacote\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "o grupo %s não contém nenhum pacote\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "nenhum pacote activa o %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr "malformado %s: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "nenhum pacote precisa do %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "nenhum pacote oferece o %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "ficheiro %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "o ficheiro %s não pertence a nenhum pacote\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "número de pacote inválido: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "número de registo do pacote: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "o registo %u não pôde ser lido\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s não está instalado\n"
msgid "(added provide)"
msgstr "%s: %-45s SIM (oferecidos para adição)\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: o acesso falhou: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "o makeTempFile falhou\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: O fwrite falhou: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "o argumento não é um pacote RPM\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Não consigo assinar o RPM v1.0\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: não consigo assinar de novo o RPM v2.0\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: o writeLead falhou: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: o rpmWriteSignature falhou: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr ":%s: o readLead falhou\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr ":%s: o readLead falhou\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr ":%s: o readLead falhou\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr ":%s: o readLead falhou\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "NÃO-OK"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (FALTAM AS CHAVES:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (CHAVES SUSPEITAS:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "OK"
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "A preparar..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "A preparar os pacotes para a instalação..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
#, fuzzy
msgid "Repackaging..."
msgstr "A preparar..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
#, fuzzy
msgid "Upgrading..."
msgstr "A preparar..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "actualizar pacote(s)"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "A procurar o %s: (usando o %s)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "A obter o %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... como %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "a ignorar o %s - a transferência falhou - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "o %s não pode ser instalado\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "o pacote %s não pode ser mudado de sítio\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "erro ao ler do ficheiros %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "o %s precisa duma versão mais recente do RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "encontrados %d pacotes com código-fonte e %d binários\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "dependências falhadas:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "a instalar os pacotes binários\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "não consigo aceder ao ficheiro %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "o \"%s\" especifica vários pacotes\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "não consigo aceder ao %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "A instalar o %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "falta o segundo ':' em %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "falta o nome da arquitectura em %s:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Linha de dados incompleta em %s:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Demasiados argumentos na linha de dados em %s:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Número de arq./SO errado: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Linha por omissão incompleta em %s:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Demasiados argumentos na linha por omissão em %s:%d\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Não consegui ler o %s: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "falta um ':' (encontrado um 0x%02x) em %s:%d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "faltam argumentos para o %s em %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "a expansão do %s falhou em %s:%d \"%s\"\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "não consigo abrir o %s em %s:%d: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "falta a arquitectura para o %s em %s:%d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "má opção '%s' em %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Sistema desconhecido: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Por favor contacte o rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "Não consigo expandir o %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "Não consigo ler o %s, a HOME é demasiado grande.\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Não consegui abrir o %s para leitura: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "não consigo abrir a base de dados Packages em %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "não consigo a base de dados do RPM em %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linha: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "A obter o %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido à opção missingok\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "falta %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Dependências não satisfeitas para o %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "não consegui criar o %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "verificar a assinatura do pacote"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
#, fuzzy
msgid "Common options for all rpm modes and executables:"
msgstr "Opções comuns para todos os modos do rpm:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: o acesso falhou: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: a leitura do manifesto falhou: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "não consegui escrever todos os dados em %s\n"
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Ficheiro%5d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
msgid "%s: public key read failed.\n"
msgstr "No consegui abrir: %s\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "no foi passado pacote para desinstalao"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "no verifique as dependncias do pacote"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "no verifique a arquitetura do pacote"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgstr "desconsidere quaisquer assinaturas PGP"
# , c-format
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "No consegui abrir o pipe tar: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
# , c-format
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/fs.c:326
+# , c-format
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "No consegui ler o arquivo spec de %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
# , c-format
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
# , c-format
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "No consegui abrir: %s\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
# , c-format
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "No consegui abrir: %s\n"
"remova todos os pacotes iguais a <pacote> (normalmente um erro gerado se "
"<pacote> especificou mltiplos pacotes)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "no execute nenhuma script especfica do pacote"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "no foi passado pacote para instalao"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "apague (desinstale) pacote"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "pesquise todos os pacotes"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "liste somente os arquivos de configurao (implica -l)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "no instale documentao"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "alis para --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "no foi passado pacote para instalao"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<estgio> <spec> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
#, fuzzy
msgid "don't verify package architecture"
msgstr "no verifique a arquitetura do pacote"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "no verifique o sistema operacional do pacote"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instale documentao"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "instale pacote"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "no verifique as dependncias do pacote"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "instale pacote"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
#, fuzzy
msgid "do not reorder package installation to satisfy dependencies"
msgstr "no verifique as dependncias do pacote"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "no execute nenhuma script especfica do pacote"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"atualize para uma verso mais velha do pacote (--force em atualizaes no faz "
"isto automaticamente)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "realoque o pacote para <diretrio>, se realocvel"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr " [--nomd5] [alvos]"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instale mesmo que o pacote substitua arquivos j instalados"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "reinstale se o pacote j estiver presente"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "no instale, mas diga se a instalao funcionar ou no"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "instale pacote"
msgid "don't verify files in package"
msgstr "instale pacote"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "no verifique as dependncias do pacote"
msgid "generate signature"
msgstr "gere assinatura PGP"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
#, fuzzy
msgid "not installed "
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "pesquise todos os pacotes"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "no foram passados pacotes para assinatura"
# , c-format
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
msgstr ""
# , c-format
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "Construo falhou.\n"
# , c-format
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
# , c-format
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "instale pacote"
# , c-format
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, fuzzy, c-format
msgid "Retrieving %s\n"
msgstr "RPM verso %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "lista dependncias do pacote"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
#, fuzzy
msgid "installing binary packages\n"
msgstr "instale pacote"
# , c-format
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
# , c-format
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
# , c-format
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr ""
# , c-format
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
# , c-format
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
# , c-format
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
# , c-format
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verso %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "lista dependncias do pacote"
msgid "failed to create %s: %s\n"
msgstr "No consegui abrir o pipe tar: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "verifique a assinatura do pacote"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgstr "No consegui abrir: %s\n"
# , c-format
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "No consegui abrir: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "No consegui abrir o pipe tar: %s\n"
-# , c-format
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "No consegui ler o arquivo spec de %s\n"
-
#, fuzzy
#~ msgid "Old PGP signature\n"
#~ msgstr "gere assinatura PGP"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
msgstr ""
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr ""
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr ""
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr ""
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr ""
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, c-format
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr ""
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, c-format
msgid "%s: headerRead failed: %s"
msgstr ""
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
msgid "do not install configuration files"
msgstr ""
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:208
+#: lib/poptI.c:212
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr ""
msgid "don't verify files in package"
msgstr ""
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, c-format
msgid "%s: not an rpm package\n"
msgstr ""
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, c-format
msgid "%s: import read failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, c-format
msgid "%s: import failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr ""
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr ""
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr ""
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr ""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr ""
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr ""
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:396
+#: lib/verify.c:394
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
msgid "failed to create %s: %s\n"
msgstr ""
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr ""
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr ""
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\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"
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
msgstr ""
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr ""
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr ""
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr ""
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr ""
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr ""
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, c-format
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr ""
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr ""
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/package.c:841
+#: lib/package.c:840
#, c-format
msgid "%s: headerRead failed: %s"
msgstr ""
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
msgid "do not install configuration files"
msgstr ""
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:208
+#: lib/poptI.c:212
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr ""
msgid "don't verify files in package"
msgstr ""
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr ""
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, c-format
msgid "%s: not an rpm package\n"
msgstr ""
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr ""
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, c-format
msgid "%s: import read failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, c-format
msgid "%s: import failed.\n"
msgstr ""
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, c-format
msgid "%s: headerRead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr ""
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr ""
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr ""
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr ""
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr ""
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr ""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr ""
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr ""
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr ""
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:396
+#: lib/verify.c:394
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
msgid "failed to create %s: %s\n"
msgstr ""
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr ""
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr ""
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: ÜÔÏ ÎÅ ÏÔËÒÙÔÙÊ ËÌÀÞ.\n"
msgid "Glob not permitted: %s\n"
msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
msgstr ""
"ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ÏË(ËÉ) ÐÁËÅÔÁ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ) ÆÏÒÍÁÔÁÍÉ rpm[23]"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÁÊÄÖÅÓÔ ÐÁËÅÔÁ(Ï×)"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁÇÏÌÏ×ËÉ, ÉÚ×ÌÅËÁÅÍÙÅ ÉÚ ÂÁÚÙ ÄÁÎÎÙÈ"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓØ(É) × ÐÁËÅÔÅ(ÁÈ)"
msgstr "ÕÄÁÌÑÅÔÓÑ %s \"%s\" ÉÚ ÓÏÒÔÉÒÏ×ÁÎÎÙÈ Ó×ÑÚÅÊ.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
"========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
"ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "ãéëì:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "ÏÛÉÂËÁ rpmtsOrder, ÏÓÔÁÌÏÓØ %d ÜÌÅÍÅÎÔÏ×\n"
msgid "(not an OpenPGP signature)"
msgstr "(ÎÅ ÐÏÄÐÉÓØ ÆÏÒÍÁÔÁ OpenPGP)"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÚÎÁÞÅÎÉÅ ÒÁÚÍÅÒÁ fugger: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÚÎÁÞÅÎÉÅ ÒÁÚÍÅÒÁ fugger: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "æÁÊÌ%5d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, c-format
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, fuzzy, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
"ÔÏÌØËÏ ÐÏÄÐÉÓÉ ×ÅÒÓÉÉ 3 ÍÏÇÕÔ ÂÙÔØ ÐÒÏ×ÅÒÅÎÙ, ÐÒÏÐÕÓËÁÅÔÓÑ ÐÏÄÐÉÓØ ×ÅÒÓÉÉ %u"
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: ÏÛÉÂËÁ headerRead\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
"ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
"ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ÐÁËÅÔÁ(Ï×)"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "ÓÏÈÒÁÎÉÔØ × ÐÏÄËÁÔÁÌÏÇÅ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ÐÁËÅÔÁ"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<ÐÁËÅÔ>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<ÐÕÔØ>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<ÆÁÊÌ ÐÁËÅÔÁ>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
msgid "install package(s)"
msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr "ÎÅ ÐÒÅÄÌÁÇÁÔØ ÒÁÚÒÅÛÅÎÉÅ ÐÒÏÐÕÝÅÎÎÏÊ(ÙÈ) ÚÁ×ÉÓÉÍÏÓÔÉ(ÅÊ)"
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ÐÁËÅÔÏÍ"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ "
"Á×ÔÏÍÁÔÉÞÅÓËÉ)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<ËÁÔÁÌÏÇ>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ÐÕÔÉ <old> × <new>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<old>=<new>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "ÓÏÈÒÁÎÉÔØ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ÐÁËÅÔÅ"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
"ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ÐÁËÅÔ(Ù), ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ÐÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ "
"ÕËÁÚÁÎÎÕÀ ÄÁÔÕ"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<ÄÁÔÁ>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
msgid "don't verify files in package"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
msgid "generate signature"
msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr "%s: waitpid(%d) rc %d status %x\n"
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) ÐÒÏÐÕÓËÁÅÔÓÑ ÌÉÛÎÉÊ \"%s\".\n"
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %sÚÁÐÕÓË ÓÉÎÈÒÏÎÎÏÇÏ ÓÃÅÎÁÒÉÑ\n"
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ, waitpid(%d) rc %d: %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
msgid "Unable to reload signature header\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "ÎÏÒÍÁÌØÎÙÊ "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "ÚÁÍÅÎÅÎÎÙÊ "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "ÓÅÔÅ×ÏÊ "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(ÓÏÓÔ. ÎÅÔ) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(ÎÅÉÚ×. %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ×ÌÁÄÅÌØÃÅ×/ÇÒÕÐÐ-×ÌÁÄÅÌØÃÅ× ÆÁÊÌÏ×\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: ÎÅ ÐÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ÐÁËÅÔÁ) rpm : %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "ÆÁÊÌ %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
msgid "(added provide)"
msgstr "(added provide)"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "ÏÛÉÂËÁ makeTempFile\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ Fwrite: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, c-format
msgid "%s: not an rpm package\n"
msgstr "%s: ÜÔÏ ÎÅ ÐÁËÅÔ RPM\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ ÐÁËÅÔÙ v1\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ ÐÁËÅÔÙ v2\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr "%s: ÕÖÅ ÂÙÌ ÐÏÄÐÉÓÁÎ ËÌÀÞ£Í Ó ÉÄÅÎÔÉÆÉËÁÔÏÒÍ %s, ÐÒÏÐÕÓËÁÅÔÓÑ\n"
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ writeLead: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, c-format
msgid "%s: import read failed.\n"
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, c-format
msgid "%s: import failed.\n"
msgstr "%s: ÏÛÉÂËÁ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: ÏÛÉÂËÁ headerRead\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: ÏÛÉÂËÁ headerGetEntry\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "îå ïë"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (ïôóõôóô÷õàô ëìàþé:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (îåô äï÷åòéñ ë ëìàþáí:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "ïë"
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "ðÏÄÇÏÔÏ×ËÁ..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr "ðÅÒÅÕÐÁËÏ×ËÁ..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr "ðÅÒÅÕÐËÁ×ÏËÁ ÆÁÊÌÏ× ÐÒÅÄÎÁÚÎÁÞÅÎÎÙÈ ÄÌÑ ÕÄÁÌÅÎÉÑ..."
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr "ïÂÎÏ×ÌÅÎÉÅ..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr "ïÂÎÏ×ÌÅÎÉÅ ÐÁËÅÔÏ×..."
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr "äÏÂÁ×ÌÑÅÔÓÑ ÃÅÌØ: %s\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... ËÁË %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr " ðÒÅÄÌÁÇÁÅÍÏÅ ÒÁÚÒÅÛÅÎÉÅ:\n"
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr "ïÔËÁÔ ÐÁËÅÔÏ× (+%d/-%d) ÎÁ %-24.24s (0x%08x):\n"
msgid "unknown error %d encountered while manipulating package %s"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ×ÔÏÒÏÅ ':' × %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ %s: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' (ÎÁÊÄÅÎ 0x%02x) × %s:%d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\"\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s × %s:%d %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÐÁÒÁÍÅÔÒ '%s' × %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ %s, ÚÎÁÞÅÎÉÅ HOME ÓÌÉÛËÏÍ ×ÅÌÉËÏ.\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr "ðÒÅÄÌÁÇÁÅÔÓÑ: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "ÓÔÒÏÉÔÓÑ ÓÐÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "ðÏÄÐÉÓØ: îåéú÷åóôîï (%d)\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ÐÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n"
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %c %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s: "
msgid "failed to create %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓØ ÚÁÇÏÌÏ×ÏËÁ É ÓÏÄÅÒÖÉÍÏÇÏ"
msgid "return whiteout information"
msgstr "ÎÅ ×ÏÚ×ÒÁÝÁÔØ ÉÎÆÏÒÍÁÃÉÀ"
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ× É ËÏÍÐÏÎÅÎÔÏ× rpm:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: ÏÛÉÂËÁ ÒÁÂÏÔÙ Ó ËÜÛ: ËÏÄ ÏÛÉÂËÉ %d.\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ÓÐÉÓËÁ ÆÁÊÌÏ×: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "æÁÊÌ%5d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉÎ ÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead zlyhalo\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Súbor nebol nájdený: %s"
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "neoverova» závislosti balíka"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "neoverova» architektúru balíka"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "odstraòuje sa index skupín\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "vynecha» akékoµvek PGP podpisy"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() nevrátil veµkos» fuggeru: %s"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, fuzzy, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() nevrátil veµkos» fuggeru: %s"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "nepodarilo sa zisti» stav %s: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, fuzzy, c-format
msgid "file %s is on an unknown device\n"
msgstr "súbor %s sa nachádza na neznámom zariadení"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "riadok %d: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis nie je k dispozícii\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead zlyhalo\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
"odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
"¹pecifikuje viac ako jeden balík)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "odin¹talova» balík"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "nájdených %d balíkov\n"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "zobrazi» v¹etky konfiguraèné súbory"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "nein¹talova» dokumentáciu"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "vynecha» súbory v ceste <cesta>"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skratka pre --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <súbor_balíku>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "neoverova» architektúru balíka"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "neoverova» operaèný systém balíka"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "in¹talova» dokumentáciu"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "in¹talova» balík"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "aktualizova» databázu bez zmeny súborového systému"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "neoverova» závislosti balíka"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "zobrazi» súbory v balíku"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
"automaticky)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "vypisova» percentá poèas in¹talácie balíka"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <stará_cesta>=<nová_cesta>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "prein¹talova», pokiaµ u¾ balík existuje"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <súbor_balíka>"
msgid "don't verify files in package"
msgstr "zobrazi» súbory v balíku"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "neoverova» závislosti balíka"
msgid "generate signature"
msgstr "vytvori» PGP/GPG podpis"
-#: lib/psm.c:278
+#: lib/psm.c:271
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " pre súbor "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "chyba formátu: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(neobsahuje ¾iadne súbory)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normálny "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "nahradený "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "nein¹talovaný "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "zdieµaný "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(¾iadny stav) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámy %d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "otázka na %s zlyhala\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "nájdených %d balíkov\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Nie je mo¾né preèíta» %s: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "¾iadny z balíkov neposkytuje %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "súbor %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "chybné èíslo balíku: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "po¾aduje sa záznam èíslo %d\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovaný\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: otvorenie zlyhalo\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "vykonanie zlyhalo\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "argument nie je RPM balík\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "NIE JE V PORIADKU"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (CHÝBAJÚCE K¥ÚÈE):"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "V PORIADKU"
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
#, fuzzy
msgid "Repackaging erased files..."
msgstr "balík neobsahuje ¾iadne súbory\n"
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <súbor_balíka>"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Prená¹a sa %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr "... ako %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "nevyrie¹ené závislosti:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "in¹talujú sa binárne balíky\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie je mo¾né otvori» súbor %s: %s"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "chýbajúce druhé ':' na %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "chýba názov architektúry na %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Neúplný riadok údajov na %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Priveµa argumentov v riadku údajov na %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Chybné èíslo arch/os: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Neúplný implicitný riadok na %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Nie je mo¾né preèíta» %s: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "chýbajúca ':' na %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "chýbajúci argument pre %s na %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "expanzia %s zlyhala na %s:%d \"%s\""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "nie je mo¾né otvori» %s na %s:%d"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "chýbajúca architektúra pre %s na %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "chybná voµba '%s' na %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznámy systém: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "Nie je mo¾né expandova» %s"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "riadok: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "zdroje v: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Doplnenie podpisu: %d\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chýbajúce %s\n"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "nepodarilo sa vytvori» %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "overi» podpis balíka"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: otvorenie zlyhalo\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
-
#, fuzzy
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.367 2003/01/22 12:32:36 jbj Exp $
+# $Id: sl.po,v 1.368 2003/01/25 21:00:01 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "vrstica %d: Razlièica ni dovoljena: %s"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni mo¾no zapisati paketa: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "brez preverjanja soodvisnosti paketa"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "brez preverjanja arhitekture paketa"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "preskoèi vse podpise PGP"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, fuzzy, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "status %s ni na voljo: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, fuzzy, c-format
msgid "file %s is on an unknown device\n"
msgstr "datoteka %s se nahaja na neznani napravi"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "ni mo¾no ustvariti %s: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "pisanje na %s ni mo¾no"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <=4"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis ni na voljo\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
"odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer program izide z "
"napako, èe paket <paket> doloèa veè paketov)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "brez izvajanja skriptov paketa"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "izbri¹i (odstrani) paket"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "ni paketov\n"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "izpis vseh nastavitvene datoteke"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "brez namestitve dokumentacije"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "preskok datotek v navedeni poti"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "okraj¹ava za --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <paket>+ "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "brez preverjanja arhitekture paketa"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "brez preverjanja operacijskega sistema paketa"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "brez preverjanja prostora na disku pred name¹èanjem"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "namesti dokumentacijo"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "name¹èanje paketa"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "brez preverjanja soodvisnosti paketa"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "brez preverjanja datotek v paketu"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "brez izvajanja skriptov paketa"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah "
"avtomatièno vkljuèi to izbiro)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "izpis odstotkov med namestitvijo"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "èe je mogoèe, bo paket prestavljen v imenik <imenik>"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "prestavljanje datoteke iz stare poti v novo"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <starapot>=<novapot>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "ponovno namesti, èe paket ¾e obstaja"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "ne namesti, a ugotovi, èe bi delovalo"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <paket> "
msgid "don't verify files in package"
msgstr "brez preverjanja datotek v paketu"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "brez preverjanja soodvisnosti paketa"
msgid "generate signature"
msgstr "izdelava podpisa PGP/GPG"
-#: lib/psm.c:278
+#: lib/psm.c:271
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "prièakovan je bil izvorni paket, najden binarni"
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspe¹no izvedel"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " za datoteko "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "napaka v obliki: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(ne vsebuje datotek)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normalno "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "nadome¹èeno "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "ni name¹èeno "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "omre¾ni "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(brez stanja) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(neznano %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "poizvedba po %s je bila neuspe¹na\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "ni paketov\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s ne vsebuje nobenega paketa\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspe¹no branje %s: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "noben paket ne potrebuje %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "noben paket ne nudi %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "datoteka %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ni del nobenega paketa\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¹tevilka zapisa paketa: %d\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
msgid "(added provide)"
msgstr "%s: %-45s DA (dodane ponudbe)\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: odpiranje je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: pisanje Fwrite je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "navedeni argument ni paket RPM\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Podpis RPM v1.0 ni mo¾en\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead je bil neuspe¹en: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "NI DOBRO"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (MANJKAJOÈI KLJUÈI:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (NEPREVERJENI KLJUÈI:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "V REDU"
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "paketi za namestitev niso navedeni"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
#, fuzzy
msgid "Repackaging erased files..."
msgstr "paket ne vsebuje datotek\n"
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <paket> "
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "Iskanje %s: (z uporabo %s)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Prena¹anje %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... kot %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paketa %s ni mo¾no premakniti\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "napaka pri branju iz datoteke %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "neuspe¹ne soodvisnosti:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "name¹èanje binarnih paketov\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ni mo¾no odpreti datoteke %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veè paketov\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èanje %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "manjka drugi ,:` v %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "manjkajoèe ime arhitekture v %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Nepopolna podatkovna vrstica v %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Preveè argumentov v podatkovni vrstici v %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Okvarjena ¹tevilka arh./op.sist.: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Nepopolna privzeta vrstica v %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Preveè argumentov v privzeti vrstici v %s:%d"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Neuspe¹no branje %s: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "manjkajoèi argument za %s v %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "raz¹iritev %s je bila neuspe¹na v %s:%d \"%s\""
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "ni mo¾no odpreti %s v %s:%d: %s"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "manjkajoèa arhitektura za %s v %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "nepravilna izbira ,%s` v %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznan sistem: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "Ni mo¾no raz¹iriti %s"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, fuzzy, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "Ni mo¾no prebrati %s, HOME je prevelik."
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s ni mo¾no odpreti za branje: %s."
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "vrstica: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "izvori v: %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Dol¾. polnila : %d\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manjka %s\n"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "neuspe¹no ustvarjanje %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "preveri podpis paketa(-ov)"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: odpiranje je bilo neuspe¹no: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "pisanje podatkov v %s je bilo neuspe¹no"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
-
#, fuzzy
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "%s: public key read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "paket %s nije naveden u %s"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upi¹em %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nemoj proveravati zavisnosti paketa"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nemoj proveravati arhitekturu paketa"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "gre¹ka uklanjanja sloga %s u %s"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr ""
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "preskoèi sve PGP potpise"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, fuzzy, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() nije vratio 'fugger' velièinu: %s"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, fuzzy, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() nije vratio 'fugger' velièinu: %s"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, fuzzy, c-format
msgid "failed to stat %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "neuspelo otvaranje %s: %s"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr ""
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr ""
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/misc.c:45
+#: lib/misc.c:42
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/misc.c:50
+#: lib/misc.c:47
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
-#: lib/package.c:776
+#: lib/package.c:775
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Potpis nije na raspolaganju\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
"ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
"<paket> oznaèava vi¹e paketa)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan skript iz paketa"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "paket %s nije instaliran\n"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "izbri¹i (deinstaliraj) paket"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
#, fuzzy
msgid "<package>+"
msgstr "upit nad svim paketima"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "nemoj da instalira¹ dokumentaciju"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr ""
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skraæenica za --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paket %s nije instaliran\n"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<faza> <spec>\t "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nemoj proveravati arhitekturu paketa"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nemoj proveravati operativni sistem za paket"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instaliraj dokumentaciju"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "instaliraj paket"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "nemoj proveravati zavisnosti paketa"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "instaliraj paket"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan skript iz paketa"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
"a¾uriraj na staru verziju paketa (--force kod a¾uriranja ovo radi automatski)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "pi¹i procente instalacije paketa"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
#, fuzzy
msgid "<old>=<new>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "ponovo instaliraj ako je paket veæ prisutan"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr ""
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
#, fuzzy
msgid "upgrade package(s)"
msgstr "instaliraj paket"
msgid "don't verify files in package"
msgstr "instaliraj paket"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
#, fuzzy
msgid "don't verify package dependencies"
msgstr "nemoj proveravati zavisnosti paketa"
msgid "generate signature"
msgstr "napravi PGP potpis"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:395
+#: lib/psm.c:391
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvr¹avanje skripta"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upi¹em %s"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr ""
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "gre¹ka u formatu: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(nema datoteka)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:251
#, fuzzy
msgid "not installed "
msgstr "paket %s nije instaliran\n"
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr ""
-#: lib/query.c:267
+#: lib/query.c:263
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket nema imena"
-#: lib/query.c:318
+#: lib/query.c:314
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "upit nad svim paketima"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeðuje %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
msgid "(added provide)"
msgstr ""
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "gre¹ka: èini se da %s nije RPM paket\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr ""
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nedostaje paket za instalaciju"
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "instaliraj paket"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Pribavljam %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "lo¹e meðuzavisnosti:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
#, fuzzy
msgid "installing binary packages\n"
msgstr "instaliraj paket"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreðuje vi¹e paketa\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, fuzzy, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "nedostaje drugo ':' na %s:%d"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, fuzzy, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "nedostaje ime arhitekture na %s:%d"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, fuzzy, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Nepotpuna linija podataka na %s:%d"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, fuzzy, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Premnogo argumenata u liniji podataka na %s:%d"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, fuzzy, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, fuzzy, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Nepotpuna podrazumevana linija na %s:%d"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, fuzzy, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, fuzzy, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Neuspelo èitanje %s: %s."
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "nedostaje ':' na %s:%d"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, fuzzy, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "nedostaje argument za %s na %s:%d"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, fuzzy, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "nedostaje arhitektura za %s na %s:%d"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, fuzzy, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "lo¹a opcija '%s' na %s:%d"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, fuzzy, c-format
msgid "Cannot expand %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr ""
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, fuzzy, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Pribavljam %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+msgid "mounted filesystems:\n"
+msgstr ""
+
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
#: lib/signature.c:133
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "nedostaje { posle %"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
msgid "failed to create %s: %s\n"
msgstr "neuspelo kreiranje %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "proveri potpis u paketu"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr ""
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "neuspelo kreiranje %s\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "neuspelo otvaranje %s: %s"
-
#, fuzzy
#~ msgid "No signature\n"
#~ msgstr "%s: Potpis nije na raspolaganju\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: importläsning misslyckades.\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: inte en publik nyckel med skal.\n"
msgid "Glob not permitted: %s\n"
msgstr "Matchning inte tillåtet: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Hittade ingen fil vid matchningen: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "generera pakethuvuden kompatibla med (äldre) rpm[23]-paketering"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr "verifiera inte paketkontrollsummor"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr "verifiera inte databashuvuden när de hämtas"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr "verifiera inte paketsignatur(er)"
msgstr "tar bort %s \"%s\" från tsort-relationer.\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
"djup)\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "LOOP:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder misslyckades, %d element återstår\n"
msgid "(not an OpenPGP signature)"
msgstr "(inte en OpenPGP-signatur)"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() kunde inte returnera storlek: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() kunde inte returnera monteringspunkter: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "kunde inte ta status på %s: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "kunde inte öppna %s: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Fil%5d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "filen %s är på en okänd enhet\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
msgid "========== Directories not explictly included in package:\n"
msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, c-format
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "arkivfil %s fanns inte i huvudets fillista\n"
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan inte skapa %%%s %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kan inte skriva till %%%s %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fel när tämporärfil %s skapades\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, fuzzy, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr "endast V3-signaturer kan verifieras, hoppar över V%u-signatur"
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature misslyckades\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen signatur tillgänglig\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: headerRead misslyckades\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread misslyckades: %s\n"
"ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
"anger flera paket)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "kör inte paketskript"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "relokera filer i ej relokerbart paket"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "spara raderade paketfiler genom att spara dem i underkatalog"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "radera (avinstallera) paket"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<paket>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "lista alla konfigurationsfiler"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "installera inte dokumentation"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "hoppa över filer med inledande <sökväg>"
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<sökväg>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "kortform för --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "uppgradera paket om redan installerade"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<paketfil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
"skriv ut brädgårdar allteftersom paketet installeras (bra tillsammans med -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "verifiera inte paketarkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "verifiera inte paketets operativsystem"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "kontrollera inte diskutrymme före installation"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installera dokumentation"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
msgid "install package(s)"
msgstr "installera paket"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "uppdatera databasen, men ändra inte filsystemet"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "verifiera inte paketberoenden"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "verifiera inte MD5-summor för filer"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr "föreslå inte lösning(ar) på saknade beroenden"
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "utför inte (eventuellt) %%pre-skript"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "utför inte (eventuellt) %%post-skript"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "utför inte (eventuellt) %%preun-skript"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "utför inte (eventuellt) %%postun-skript"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "kör inte skript utlösta av detta paket"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "kör inte %%triggerprein-skript"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "kör inte %%triggerin-skript"
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "kör inte %%triggerun-skript"
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "kör inte %%triggerpostun-skript"
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"uppgradera till en gammal version av paketet (--force vid uppgraderingar gör "
"detta automatiskt)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "skriv procent allt eftersom paketet installeras"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "flytta paketet till <katalog>, om flyttbart"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<kat>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "relokera filer från <gammal> till <ny>"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<gammal>=<ny>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "spara raderade paketfiler genom ompaketering"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "installera även om paketet byter ut installerade filer"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "ominstallera när paketet redan är installerat"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till <datum>"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<datum>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "installera inte, men tala om ifall det skulle fungera eller inte"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "uppgradera paket"
msgid "don't verify files in package"
msgstr "verifiera inte filerna i paketet"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "verifiera inte paketberoenden"
msgid "generate signature"
msgstr "generera signatur"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "källpaket förväntades, fann binärpaket\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "källpaket innehåller ingen .spec-fil\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s har %d filer, test = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " vid fil "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "fel format: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(innehåller inga filer)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normal "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "ersatt "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "oinstallerat "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "nätdelad "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(ej tillstnd) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(okänd %3d) "
-#: lib/query.c:285
+#: lib/query.c:281
msgid "package has not file owner/group lists\n"
msgstr "paketet har inte filägare-/-grupplistor\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades med att öppna %s: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "fråga av %s misslyckades\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "källpaket i gammalt format går inte att fråga om\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: inte ett rpm-paket (eller paketspecifikation): %s\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "inga paket\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupp %s innehåller inga paket\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "inga paketutlösare %s\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, c-format
msgid "malformed %s: %s\n"
msgstr "felformaterad %s: %s\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, c-format
msgid "no package matches %s: %s\n"
msgstr "inga paket matchar %s: %s\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "inget paket behöver %s\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "inget paket tillhandahåller %s\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tillhör inget paket\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "paketpost nummer: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
msgid "(added provide)"
msgstr "(lade till tillhandahållande)"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: open misslyckades: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile misslyckades\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite misslyckades: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, c-format
msgid "%s: not an rpm package\n"
msgstr "%s: inte ett rpm-paket\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Kan inte signera v1-paketering\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Kan inte signera om v2-paketering\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr "%s: var redan signerad av nyckel-ID %s, hoppar över\n"
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead misslyckades: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature misslyckades: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, c-format
msgid "%s: import read failed.\n"
msgstr "%s: importläsning misslyckades.\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, c-format
msgid "%s: import failed.\n"
msgstr "%s: import misslyckades.\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: headerRead misslyckades\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: headerGetEntry misslyckades\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "EJ OK"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (SAKNADE NYCKLAR:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (EJ BETRODDA NYCKLAR:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "OK"
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Förbereder..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "Förbereder paket för installation ..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr "Packar om..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr "Packar om raderade filer..."
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr "Uppgraderar..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr "Uppgraderar paket..."
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr "Lägger till mål: %s\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Hämtar %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hoppar över %s - överföring misslyckades - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s är inte relokerbart\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "fel vid läsning från fil %s\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s behöver en nyare version av RPM\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "hittade %d käll- och %d binärpaket\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr "Ouppfyllda beroenden:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr " Föreslagna lösningar:\n"
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "installerar binärpaket\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan inte öppna filen %s: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr "Återställer paket (+%d/-%d) till %-24.24s (0x%08x):\n"
msgid "unknown error %d encountered while manipulating package %s"
msgstr "okänt fel %d uppträdde under behandling av paket %s"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "andra \":\" saknas vid %s:%d\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "arkitekturnamn saknas vid %s:%d\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Ofullständig datarad vid %s:%d\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "För många argument i datarad vid %s:%d\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Felaktigt arkitektur-/os-nummer: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Ofullständig standardvärdesrad vid %s:%d\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "För många argument i standardvärdesrad vid %s:%d\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Misslyckades med att läsa %s: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "argument till %s saknas vid %s:%d\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%s expansion misslyckades vid %s:%d \"%s\"\n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "kan inte öppna %s vid %s:%d: %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "arkitektur saknas för %s vid %s:%d\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "okänd flagga \"%s\" vid %s:%d\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Okänt system: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Var vänlig kontakta rpm-list@redhat.com\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "Kan inte expandera %s\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "Kan inte läsa %s, HOME är för stor.\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kan inte öppna %s för läsning: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan inte öppna Solve-databas i %s\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr "Lägger till: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr "Föreslår %s\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "hämtar lista över monterade filsystem\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signatur: OKÄND (%d)\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr "beräknar filåtgärder\n"
-#: lib/verify.c:287
+#: lib/verify.c:285
#, c-format
msgid "missing %c %s"
msgstr "saknas %c %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ouppfyllda beroenden för %s: "
msgid "failed to create %s: %s\n"
msgstr "kunde inte skapa %s: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr "verifiera inte huvud+lastsignatur"
msgid "return whiteout information"
msgstr "returnera belyst information"
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr "Gemensamma flaggor för alla rpm-lägen och binärer:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: cacheoperation misslyckades: ec %d.\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: läsning av paketlista misslyckades: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "kunde inte skriva all data till %s\n"
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Fil%5d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-22 07:25-0500\n"
+"POT-Creation-Date: 2003-01-25 15:52-0500\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
msgid "%s: public key read failed.\n"
msgstr "%s: readLead baþarýsýz\n"
-#: build/files.c:1767 lib/rpmchecksig.c:573
+#: build/files.c:1767 lib/rpmchecksig.c:572
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
msgid "Glob not permitted: %s\n"
msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
-#: build/files.c:1856 lib/rpminstall.c:349
+#: build/files.c:1856 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
msgid "Could not open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: build/pack.c:632 lib/psm.c:1657
+#: build/pack.c:632 lib/psm.c:1653
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazýlamadý: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazýlamadý: %s\n"
-#: build/pack.c:725 lib/psm.c:1947
+#: build/pack.c:725 lib/psm.c:1943
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "paket baþlýklarýný (eski) rpm[23] paketleme ile uyumlu üretir"
-#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:250 lib/poptQV.c:329
+#: build/poptBT.c:229 lib/poptALL.c:220 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "paket baðýmlýlýklarý doðrulanmaz"
-#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:252 lib/poptQV.c:332
+#: build/poptBT.c:231 lib/poptALL.c:222 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "paket mimarisi denetlenmez"
-#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:254 lib/poptQV.c:335
+#: build/poptBT.c:233 lib/poptALL.c:228 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
#. Record all relations.
-#: lib/depends.c:1185
+#: lib/depends.c:1186
msgid "========== recording tsort relations\n"
msgstr "========== tsort baðýntýlarý kaydediliyor\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1285
+#: lib/depends.c:1278
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
msgstr ""
"========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
-#: lib/depends.c:1369
-msgid "========== successors only (presentation order)\n"
+#: lib/depends.c:1363
+#, fuzzy, c-format
+msgid "========== successors only (%d bytes)\n"
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
-#: lib/depends.c:1439
+#: lib/depends.c:1433
msgid "LOOP:\n"
msgstr "ÇEVRÝM:\n"
-#: lib/depends.c:1474
+#: lib/depends.c:1468
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1479
+#: lib/depends.c:1473
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
msgid "(not an OpenPGP signature)"
msgstr "tüm PGP imzalarýný atlar"
-#: lib/fs.c:73
+#: lib/fs.c:74
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() sonuçlanan hatalý boyut nedeniyle baþarýsýz: %s\n"
-#: lib/fs.c:88
+#: lib/fs.c:89
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() sonuçlanan hatalý baðlantý yerleri nedeniyle baþarýsýz: %s\n"
-#: lib/fs.c:108 lib/fs.c:193 lib/fs.c:303
+#: lib/fs.c:109 lib/fs.c:196 lib/fs.c:313
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "stat %s baþarýsýz: %s\n"
-#: lib/fs.c:151 rpmio/url.c:523
+#: lib/fs.c:154 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/fs.c:326
+#: lib/fs.c:213
+#, fuzzy, c-format
+msgid "%5d 0x%04x %s %s\n"
+msgstr "Dosya %4d: %07o %s.%s\t %s\n"
+
+#: lib/fs.c:336
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n"
-#: lib/fsm.c:340
+#: lib/fsm.c:338
#, fuzzy
msgid "========== Directories not explictly included in package:\n"
msgstr "========= Pakette bulunmayan dizinler:\n"
-#: lib/fsm.c:342
+#: lib/fsm.c:340
#, fuzzy, c-format
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1248
+#: lib/fsm.c:1242
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
-#: lib/fsm.c:1546
+#: lib/fsm.c:1540
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1675 lib/fsm.c:1811
+#: lib/fsm.c:1667 lib/fsm.c:1801
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
-#: lib/fsm.c:1837
+#: lib/fsm.c:1827
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
-#: lib/fsm.c:1843
+#: lib/fsm.c:1833
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
-#: lib/fsm.c:1853
+#: lib/fsm.c:1843
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bað kaldýrýlamadý: %s\n"
-#: lib/fsm.c:1873
+#: lib/fsm.c:1863
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluþturuldu\n"
-#: lib/misc.c:45
+#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
-#: lib/misc.c:50
+#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%%%s dosyasýna yazýlamaz %s\n"
-#: lib/misc.c:190 lib/misc.c:195 lib/misc.c:201
+#: lib/misc.c:187 lib/misc.c:192 lib/misc.c:198
#, c-format
msgid "error creating temporary file %s\n"
msgstr "%s geçici dosyasý oluþturulurken hata\n"
-#: lib/package.c:362
+#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr ""
-#: lib/package.c:371 lib/package.c:435 lib/package.c:502 lib/signature.c:226
+#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:391 lib/signature.c:242
+#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:412 lib/signature.c:263
+#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr ""
-#: lib/package.c:426 lib/signature.c:277
+#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr ""
-#: lib/package.c:454
+#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr ""
-#: lib/package.c:472
+#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr ""
-#: lib/package.c:536 lib/package.c:576 lib/package.c:877 lib/package.c:901
-#: lib/package.c:931 lib/rpmchecksig.c:806
+#: lib/package.c:535 lib/package.c:575 lib/package.c:876 lib/package.c:900
+#: lib/package.c:930 lib/rpmchecksig.c:805
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr ""
-#: lib/package.c:655
+#: lib/package.c:654
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:659
+#: lib/package.c:658
msgid "hdr magic: BAD\n"
msgstr ""
-#: lib/package.c:667
+#: lib/package.c:666
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr ""
-#: lib/package.c:676
+#: lib/package.c:675
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr ""
-#: lib/package.c:690
+#: lib/package.c:689
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr ""
-#: lib/package.c:703
+#: lib/package.c:702
msgid "hdr load: BAD\n"
msgstr ""
-#: lib/package.c:768
+#: lib/package.c:767
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "RPM'nin bu sürümünde paket sürümü 1 desteklenmiyor\n"
-#: lib/package.c:776
+#: lib/package.c:775
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"RPM'nin bu sürümünde sadece ilk sürüm rakamý <= 4 olan paketler "
"destekleniyor\n"
-#: lib/package.c:787 lib/rpmchecksig.c:230 lib/rpmchecksig.c:721
+#: lib/package.c:786 lib/rpmchecksig.c:229 lib/rpmchecksig.c:720
#, fuzzy, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature baþarýsýz\n"
-#: lib/package.c:794 lib/rpmchecksig.c:237 lib/rpmchecksig.c:729
+#: lib/package.c:793 lib/rpmchecksig.c:236 lib/rpmchecksig.c:728
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ýmza bulundurmuyor\n"
-#: lib/package.c:841
+#: lib/package.c:840
#, fuzzy, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: readLead baþarýsýz\n"
-#: lib/package.c:944 lib/rpmchecksig.c:118 lib/rpmchecksig.c:644
+#: lib/package.c:943 lib/rpmchecksig.c:117 lib/rpmchecksig.c:643
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread baþarýsýz: %s\n"
"<paket> ile eþlenen tüm paketleri kaldýrýr(<paket> ile çok sayýda paket "
"belirtilmiþse normalde bir hata oluþur)"
-#: lib/poptI.c:165 lib/poptI.c:234
+#: lib/poptI.c:164 tools/rpmgraph.c:273
+msgid "use anaconda \"presentation order\""
+msgstr ""
+
+#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "paket betikleri çalýþtýrýlmaz"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "yeniden konumlanamayan paketin dosyalarýný yeniden konumlandýrýr"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr ""
"ismi deðiþtirilerek alt dizine kaydedilmek suretiyle silinen dosyalarý "
"kaydeder"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "paketi kaldýrýr"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "<package>+"
msgstr "<paket>+"
-#: lib/poptI.c:178 lib/poptI.c:215
+#: lib/poptI.c:182 lib/poptI.c:219
#, fuzzy
msgid "do not install configuration files"
msgstr "tüm yapýlandýrma dosyalarýný listeler"
-#: lib/poptI.c:181 lib/poptI.c:220
+#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "belgeleri kurmaz"
-#: lib/poptI.c:183
+#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "<dosyayolu> ile baþlayan dosyalarý atlar "
-#: lib/poptI.c:184
+#: lib/poptI.c:188
msgid "<path>"
msgstr "<dosyaYolu>"
-#: lib/poptI.c:187
+#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs --replacefiles için kýsaltma"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "paket(ler) kurulu ise paket(ler)i günceller"
-#: lib/poptI.c:192 lib/poptI.c:208 lib/poptI.c:301
+#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<paketDosyasý>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "paket mimarisi denetlenmez"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "yüklemeden önce yeterli disk alaný kontrolu yapmaz"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "paket ile gelen belgeleri kurar"
-#: lib/poptI.c:208
+#: lib/poptI.c:212
#, fuzzy
msgid "install package(s)"
msgstr "paketi kurar"
-#: lib/poptI.c:211
+#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "paket baðýmlýlýklarýný denetlemez"
-#: lib/poptI.c:223 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
-#: lib/poptI.c:226
+#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "paket kurulum sýrasýný baðýmlýlýklara göre düzenlemez"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:238
+#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "%%pre betiði (varsa) çalýþtýrýlmaz"
-#: lib/poptI.c:241
+#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "%%post betiði (varsa) çalýþtýrýlmaz"
-#: lib/poptI.c:244
+#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "%%preun betiði (varsa) çalýþtýrýlmaz"
-#: lib/poptI.c:247
+#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "%%postun betiði (varsa) çalýþtýrýlmaz"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "bu paket tarafýndan tetiklenen hiç bir betik çalýþtýrýlmaz"
-#: lib/poptI.c:260
+#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "hiçbir %%triggerprein betiði çalýþtýrýlmaz"
-#: lib/poptI.c:263
+#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "hiçbir %%triggerin betiði çalýþtýrýlmaz."
-#: lib/poptI.c:266
+#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "hiçbir %%triggerun betiði çalýþtýrýlmaz."
-#: lib/poptI.c:269
+#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "hiçbir %%triggerpostun betiði çalýþtýrýlmaz."
-#: lib/poptI.c:273
+#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
"paketin eski bir sürüme güncellenmesini saðlar (--force ayný iþi otomatik "
"yapar)"
-#: lib/poptI.c:277
+#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "kurulumun geliþimi yüzde olarak gösterilir"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "eðer deðitirilebiliyorsa paketin yerini <dizin>'e deðiþtirir"
-#: lib/poptI.c:280
+#: lib/poptI.c:284
msgid "<dir>"
msgstr "<dizin>"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "dosyalarý <eski> dizininden kaldýrýp <yeni> dizinine yerleþtirir"
-#: lib/poptI.c:283
+#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<eski>=<yeni>"
-#: lib/poptI.c:286
+#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "yeniden paketleme sýrasýnda silinen paket dosyalarýný kaydeder"
-#: lib/poptI.c:289
+#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "paket dosyalarý mevcut dosyalarla yer deðiþtirse bile paketi kurar"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "paketi yeniden kurar"
-#: lib/poptI.c:294
+#: lib/poptI.c:298
#, fuzzy
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
"yeni paket(ler) kaldýrýlýr, geriye dönük eski paket(ler) yeniden kurulur"
-#: lib/poptI.c:295
+#: lib/poptI.c:299
msgid "<date>"
msgstr "<tarih>"
-#: lib/poptI.c:297
+#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
-#: lib/poptI.c:300
+#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "paket günceller"
msgid "don't verify files in package"
msgstr "paketteki dosyalar doðrulanamaz"
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:274
+#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "paket baðýmlýlýklarý doðrulanmaz"
msgid "generate signature"
msgstr "imza üretir"
-#: lib/psm.c:278
+#: lib/psm.c:271
msgid "source package expected, binary found\n"
msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
-#: lib/psm.c:395
+#: lib/psm.c:391
msgid "source package contains no .spec file\n"
msgstr "kaynak paketi .spec dosyasý içermiyor\n"
-#: lib/psm.c:731
+#: lib/psm.c:727
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:814
+#: lib/psm.c:810
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:822
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:985
+#: lib/psm.c:981
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1008
+#: lib/psm.c:1004
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
-#: lib/psm.c:1014
+#: lib/psm.c:1010
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
-#: lib/psm.c:1421
+#: lib/psm.c:1417
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
-#: lib/psm.c:1560
+#: lib/psm.c:1556
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
-#: lib/psm.c:1669
+#: lib/psm.c:1665
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den baþlýk okunamadý: %s\n"
-#: lib/psm.c:1715
+#: lib/psm.c:1711
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
-#: lib/psm.c:1724
+#: lib/psm.c:1720
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
-#: lib/psm.c:1772
+#: lib/psm.c:1768
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
-#: lib/psm.c:1773
+#: lib/psm.c:1769
msgid " on file "
msgstr " dosyada "
-#: lib/psm.c:1955
+#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/psm.c:1958
+#: lib/psm.c:1954
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baþarýsýz\n"
-#: lib/query.c:122 lib/rpmts.c:453
+#: lib/query.c:118 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "biçem yanlýþ: %s\n"
#. @-boundswrite@
-#: lib/query.c:184
+#: lib/query.c:180
msgid "(contains no files)"
msgstr "(hiç dosya içermiyor)"
-#: lib/query.c:249
+#: lib/query.c:245
msgid "normal "
msgstr "normal "
-#: lib/query.c:252
+#: lib/query.c:248
msgid "replaced "
msgstr "yerine "
-#: lib/query.c:255
+#: lib/query.c:251
msgid "not installed "
msgstr "yüklenmedi "
-#: lib/query.c:258
+#: lib/query.c:254
msgid "net shared "
msgstr "að paylaþýmlý "
-#: lib/query.c:261
+#: lib/query.c:257
msgid "wrong color "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:260
msgid "(no state) "
msgstr "(durumsuz) "
-#: lib/query.c:267
+#: lib/query.c:263
#, c-format
msgid "(unknown %3d) "
msgstr "(bilinmeyen %3d)"
-#: lib/query.c:285
+#: lib/query.c:281
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
-#: lib/query.c:318
+#: lib/query.c:314
msgid "package has neither file owner or id lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
-#: lib/query.c:447 lib/query.c:494 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:464
-#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:123 lib/rpminstall.c:462
+#: lib/rpminstall.c:593 lib/rpminstall.c:1005 lib/rpmts.c:462
+#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/query.c:462
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
-#: lib/query.c:472
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
-#: lib/query.c:505 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:606
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:534
+#: lib/query.c:530
msgid "no packages\n"
msgstr "paket yok\n"
-#: lib/query.c:554
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/query.c:563
+#: lib/query.c:559
#, c-format
msgid "no package triggers %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:576 lib/query.c:597 lib/query.c:617 lib/query.c:651
+#: lib/query.c:572 lib/query.c:593 lib/query.c:613 lib/query.c:647
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s okunamadý: %s.\n"
-#: lib/query.c:586 lib/query.c:603 lib/query.c:627 lib/query.c:656
+#: lib/query.c:582 lib/query.c:599 lib/query.c:623 lib/query.c:652
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:666
+#: lib/query.c:662
#, c-format
msgid "no package requires %s\n"
msgstr "%s gerektiren paket yok\n"
-#: lib/query.c:677
+#: lib/query.c:673
#, c-format
msgid "no package provides %s\n"
msgstr "%s saðlayan paket yok\n"
-#: lib/query.c:712
+#: lib/query.c:708
#, c-format
msgid "file %s: %s\n"
msgstr "dosya %s: %s\n"
-#: lib/query.c:716
+#: lib/query.c:712
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
-#: lib/query.c:741
+#: lib/query.c:737
#, c-format
msgid "invalid package number: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
-#: lib/query.c:744
+#: lib/query.c:740
#, c-format
msgid "package record number: %u\n"
msgstr "paket kayýt numarasý: %u\n"
-#: lib/query.c:749
+#: lib/query.c:745
#, c-format
msgid "record %u could not be read\n"
msgstr "%u. kayýt okunamadý\n"
-#: lib/query.c:759 lib/rpminstall.c:779
+#: lib/query.c:755 lib/rpminstall.c:777
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu deðil\n"
msgid "(added provide)"
msgstr "%s: %-45s EVET (önlem eklendi)\n"
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: açýlamadý: %s\n"
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile baþarýsýz\n"
-#: lib/rpmchecksig.c:112
+#: lib/rpmchecksig.c:111
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:210 lib/rpmchecksig.c:703
+#: lib/rpmchecksig.c:209 lib/rpmchecksig.c:702
#, fuzzy, c-format
msgid "%s: not an rpm package\n"
msgstr "argüman bir RPM paketi deðil\n"
-#: lib/rpmchecksig.c:215
+#: lib/rpmchecksig.c:214
#, fuzzy, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: v1.0 RPM (eski sürüm) imzalanamaz\n"
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:218
#, fuzzy, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: v2.0 RPM (eski sürüm) yeniden imzalanamaz\n"
-#: lib/rpmchecksig.c:327
+#: lib/rpmchecksig.c:326
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr ""
-#: lib/rpmchecksig.c:358
+#: lib/rpmchecksig.c:357
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:364
+#: lib/rpmchecksig.c:363
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:568
+#: lib/rpmchecksig.c:567
#, fuzzy, c-format
msgid "%s: import read failed.\n"
msgstr "%s: readLead baþarýsýz\n"
-#: lib/rpmchecksig.c:580
+#: lib/rpmchecksig.c:579
#, fuzzy, c-format
msgid "%s: import failed.\n"
msgstr "%s: readLead baþarýsýz\n"
-#: lib/rpmchecksig.c:615
+#: lib/rpmchecksig.c:614
#, fuzzy, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: readLead baþarýsýz\n"
-#: lib/rpmchecksig.c:629
+#: lib/rpmchecksig.c:628
#, fuzzy, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: readLead baþarýsýz\n"
-#: lib/rpmchecksig.c:709
+#: lib/rpmchecksig.c:708
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:972
+#: lib/rpmchecksig.c:971
msgid "NOT OK"
msgstr "TAMAM DEÐÝL"
-#: lib/rpmchecksig.c:973 lib/rpmchecksig.c:987
+#: lib/rpmchecksig.c:972 lib/rpmchecksig.c:986
msgid " (MISSING KEYS:"
msgstr " (EKSÝK ANAHTARLAR:"
-#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
+#: lib/rpmchecksig.c:974 lib/rpmchecksig.c:988
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:976 lib/rpmchecksig.c:990
+#: lib/rpmchecksig.c:975 lib/rpmchecksig.c:989
msgid " (UNTRUSTED KEYS:"
msgstr " (GÜVENCESÝZ ANAHTARLAR:"
-#: lib/rpmchecksig.c:978 lib/rpmchecksig.c:992
+#: lib/rpmchecksig.c:977 lib/rpmchecksig.c:991
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:986
+#: lib/rpmchecksig.c:985
msgid "OK"
msgstr "Tamam"
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanýyor\n"
-#: lib/rpminstall.c:192
+#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Hazýrlanýyor..."
-#: lib/rpminstall.c:194
+#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "Kurulacak paketler hazýrlanýyor..."
-#: lib/rpminstall.c:212
+#: lib/rpminstall.c:210
#, fuzzy
msgid "Repackaging..."
msgstr "Hazýrlanýyor..."
-#: lib/rpminstall.c:214
+#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:233
+#: lib/rpminstall.c:231
#, fuzzy
msgid "Upgrading..."
msgstr "Hazýrlanýyor..."
-#: lib/rpminstall.c:235
+#: lib/rpminstall.c:233
#, fuzzy
msgid "Upgrading packages..."
msgstr "paket günceller"
-#: lib/rpminstall.c:396
+#: lib/rpminstall.c:394
#, fuzzy, c-format
msgid "Adding goal: %s\n"
msgstr "%s aranýyor: (%s kullanarak)...\n"
-#: lib/rpminstall.c:411
+#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "%s alýnýyor\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr "... %s olarak\n"
-#: lib/rpminstall.c:428
+#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
-#: lib/rpminstall.c:483 lib/rpminstall.c:860 tools/rpmgraph.c:147
+#: lib/rpminstall.c:481 lib/rpminstall.c:858 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s yüklenemedi\n"
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "%s paketi yeniden konumlandýrýlamaz\n"
-#: lib/rpminstall.c:575
+#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "%s dosyasýndan okuma hatalý\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:621
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
-#: lib/rpminstall.c:637 lib/rpminstall.c:807 lib/rpminstall.c:1236
-#: tools/rpmgraph.c:202
+#: lib/rpminstall.c:635 lib/rpminstall.c:805 lib/rpminstall.c:1226
+#: tools/rpmgraph.c:195
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
-#: lib/rpminstall.c:644 tools/rpmgraph.c:208
+#: lib/rpminstall.c:642 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:672
msgid "installing binary packages\n"
msgstr "icra edilebilir paketleri kuruluyor\n"
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:696
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s dosyasý açýlamadý: %s\n"
-#: lib/rpminstall.c:782
+#: lib/rpminstall.c:780
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
-#: lib/rpminstall.c:844
+#: lib/rpminstall.c:842
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/rpminstall.c:850
+#: lib/rpminstall.c:848
#, c-format
msgid "Installing %s\n"
msgstr "%s kuruluyor\n"
-#: lib/rpminstall.c:1230
+#: lib/rpminstall.c:1220
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
msgid "unknown error %d encountered while manipulating package %s"
msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
-#: lib/rpmrc.c:201
+#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "%s:%d - ikinci ':' eksik\n"
-#: lib/rpmrc.c:204
+#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "%s:%d - mimari ismi eksik\n"
-#: lib/rpmrc.c:358
+#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "%s:%d - veri satýrý tamamlanmamýþ\n"
-#: lib/rpmrc.c:363
+#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "%s:%d - veri satýrýnda çok fazla argüman\n"
-#: lib/rpmrc.c:371
+#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "arch/os numarasý hatalý: %s (%s:%d)\n"
-#: lib/rpmrc.c:408
+#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "%s:%d - öntanýmlý satýr tamamlanmamýþ\n"
-#: lib/rpmrc.c:413
+#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "%s:%d - öntanýmlý satýrda çok fazla argüman\n"
#. XXX Feof(fd)
-#: lib/rpmrc.c:583
+#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "%s okunamadý: %s.\n"
-#: lib/rpmrc.c:621
+#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "(0x%02x bulundu) %s:%d de ':' yok\n"
-#: lib/rpmrc.c:638 lib/rpmrc.c:712
+#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "%s için %s:%d de argüman eksik\n"
-#: lib/rpmrc.c:655 lib/rpmrc.c:677
+#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "%s geniþletmesi %s:%d \"%s\" de baþarýsýz \n"
-#: lib/rpmrc.c:664
+#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "%s dosyasý açýlamýyor (%s:%d): %s\n"
-#: lib/rpmrc.c:704
+#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "%s için %s:%d'de eksik mimari\n"
-#: lib/rpmrc.c:771
+#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "seçenek '%s' (%s:%d) de hatalý\n"
-#: lib/rpmrc.c:1530
+#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Bilinmeyen sistem: %s\n"
-#: lib/rpmrc.c:1531
+#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Lütfen rpm-list@redhat.com listesine üye olun\n"
-#: lib/rpmrc.c:1764
+#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "%s geniþletilemiyor\n"
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "%s okunamýyor, EV çok büyük\n"
-#: lib/rpmrc.c:1786
+#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
-#: lib/rpmts.c:158
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabaný açýlamadý\n"
-#: lib/rpmts.c:343
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s dizininde rpm veritabaný açýlamýyor\n"
-#: lib/rpmts.c:485
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "satýr: %s\n"
-#: lib/rpmts.c:497
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s alýnýyor\n"
-#. Get available space on mounted file systems.
-#: lib/rpmts.c:929
-msgid "getting list of mounted filesystems\n"
+#: lib/rpmts.c:923
+#, fuzzy
+msgid "mounted filesystems:\n"
msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
+#: lib/rpmts.c:925
+msgid " i dev bsize bavail iavail mount point\n"
+msgstr ""
+
+#: lib/rpmts.c:981
+#, c-format
+msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
+msgstr ""
+
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
-#: lib/transaction.c:107
+#: lib/transaction.c:105
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasýndan dolayý %s atlandý\n"
#. @innercontinue@
-#: lib/transaction.c:956
+#: lib/transaction.c:954
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1068
+#: lib/transaction.c:1066
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1156
+#: lib/transaction.c:1154
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1233
+#: lib/transaction.c:1231
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:287
+#: lib/verify.c:285
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "eksik %s"
-#: lib/verify.c:396
+#: lib/verify.c:394
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
msgid "failed to create %s: %s\n"
msgstr "%s oluþturulamadý: %s\n"
-#: tools/rpmcache.c:515 tools/rpmgraph.c:276
+#: tools/rpmcache.c:515 tools/rpmgraph.c:269
#, fuzzy
msgid "don't verify header+payload signature"
msgstr "paket imzasýný denetler"
msgid "return whiteout information"
msgstr ""
-#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:282
+#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
#, fuzzy
msgid "Common options for all rpm modes and executables:"
msgstr "Tüm rpm kipleri için ortak seçenekler:"
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: açýlamadý: %s\n"
-#: tools/rpmgraph.c:177
+#: tools/rpmgraph.c:170
#, fuzzy, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: bildirge okuma baþarýsýz: %s\n"
#~ msgid "failed to write all data to %s\n"
#~ msgstr "tüm veri %s içine yazýlamadý\n"
-#, fuzzy
-#~ msgid "File%5d: %07o %s.%s\t %s\n"
-#~ msgstr "Dosya %4d: %07o %s.%s\t %s\n"
-
#~ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
#~ msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n"
REGISTER_ENUM(RPMTRANS_FLAG_NOPREUN);
REGISTER_ENUM(RPMTRANS_FLAG_NOPOSTUN);
REGISTER_ENUM(RPMTRANS_FLAG_NOTRIGGERPOSTUN);
- REGISTER_ENUM(RPMTRANS_FLAG_CHAINSAW);
+ REGISTER_ENUM(RPMTRANS_FLAG_ANACONDA);
REGISTER_ENUM(RPMTRANS_FLAG_NOMD5);
REGISTER_ENUM(RPMTRANS_FLAG_NOSUGGEST);
REGISTER_ENUM(RPMTRANS_FLAG_ADDINDEPS);
* - te.O() Return package operating system.
* - te.NEVR() Return package name-version-release.
* - te.Color() Return package color bits.
+ * - te.PkgFileSize() Return no. of bytes in package file (approx).
* - te.Depth() Return the level in the dependency tree (after ordering).
* - te.Npreds() Return the number of package prerequisites (after ordering).
* - te.Degree() Return the parent's degree + 1.
return Py_BuildValue("i", rpmteColor(s->te));
}
+static PyObject *
+rpmte_PkgFileSize(rpmteObject * s, PyObject * args)
+ /*@*/
+{
+ if (!PyArg_ParseTuple(args, ":PkgFileSize")) return NULL;
+ return Py_BuildValue("i", rpmtePkgFileSize(s->te));
+}
+
static PyObject *
rpmte_Depth(rpmteObject * s, PyObject * args)
/*@*/
- Return element name-version-release.\n" },
{"Color",(PyCFunction)rpmte_Color, METH_VARARGS,
NULL},
+ {"PkgFileSize",(PyCFunction)rpmte_PkgFileSize, METH_VARARGS,
+ NULL},
{"Depth", (PyCFunction)rpmte_Depth, METH_VARARGS,
NULL},
{"Npreds", (PyCFunction)rpmte_Npreds, METH_VARARGS,
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
-Release: 0.60
+Release: 0.61
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
%{__includedir}/popt.h
%changelog
+* Wed Jan 22 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.61
+- permit anaconda to choose "presentation order".
+
* Wed Jan 22 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.60
- fix: debugedit.c problem.
#include "debug.h"
static int noDeps = 1;
-static int noChainsaw = 0;
static rpmVSFlags vsflags = 0;
int argc = 0;
const char ** av = NULL;
int ac = 0;
- int tsflags;
Header h;
rpmRC rpmrc;
int rc = 0;
if (fileArgv == NULL)
return 0;
- tsflags = rpmtsFlags(ts);
- if (!noChainsaw)
- tsflags |= RPMTRANS_FLAG_CHAINSAW;
- (void) rpmtsSetFlags(ts, tsflags);
-
if (ia->qva_flags & VERIFY_DIGEST)
vsflags |= _RPMVSF_NODIGESTS;
if (ia->qva_flags & VERIFY_SIGNATURE)
{ "nolegacy", '\0', POPT_BIT_SET, &vsflags, RPMVSF_NEEDPAYLOAD,
N_("don't verify header+payload signature"), NULL },
- { "nochainsaw", '\0', POPT_ARGFLAG_DOC_HIDDEN, &noChainsaw, 0,
- NULL, NULL},
+ { "anaconda", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
+ &rpmIArgs.transFlags, RPMTRANS_FLAG_ANACONDA,
+ N_("use anaconda \"presentation order\""), NULL},
{ NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0,
N_("Common options for all rpm modes and executables:"),
static int noAvailable = 1;
static const char * avdbpath =
"/usr/lib/rpmdb/%{_arch}-%{_vendor}-%{_os}/redhat";
-static int noChainsaw = 0;
static int noDeps = 0;
static inline /*@observer@*/ const char * const identifyDepend(int_32 f)
return 0;
ts = rpmtsCreate();
- if (!noChainsaw)
- (void) rpmtsSetFlags(ts, rpmtsFlags(ts) | RPMTRANS_FLAG_CHAINSAW);
rc = rpmtsOpenDB(ts, O_RDONLY);
if (rc) {
static struct poptOption optionsTable[] = {
{ "noavailable", '\0', 0, &noAvailable, 0, NULL, NULL},
- { "nochainsaw", '\0', 0, &noChainsaw, 0, NULL, NULL},
{ "nodeps", '\0', 0, &noDeps, 0, NULL, NULL},
{ "verbose", 'v', 0, 0, 'v', NULL, NULL},
{ NULL, 0, 0, 0, 0, NULL, NULL}