- install rpmal.h and rpmhash.h, implicit rpmps.hinclude, for now.
authorjbj <devnull@localhost>
Sat, 13 Jul 2002 19:08:51 +0000 (19:08 +0000)
committerjbj <devnull@localhost>
Sat, 13 Jul 2002 19:08:51 +0000 (19:08 +0000)
- revert headerFree/headerLink/headerUnlink debugging.

CVS patchset: 5550
CVS date: 2002/07/13 19:08:51

76 files changed:
CHANGES
build/pack.c
build/spec.c
convertdb.c
lib/Makefile.am
lib/depends.c
lib/formats.c
lib/fsm.c
lib/package.c
lib/psm.c
lib/query.c
lib/rpmal.c
lib/rpmal.h
lib/rpmchecksig.c
lib/rpmds.c
lib/rpmds.h
lib/rpmfi.c
lib/rpminstall.c
lib/rpmlibprov.c
lib/rpmte.c
lib/rpmts.c
lib/rpmts.h
lib/signature.c
lib/transaction.c
lib/verify.c
po/cs.po
po/da.po
po/de.po
po/en_RN.po
po/es.po
po/eu_ES.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
python/header-py.c
python/rpmal-py.c
python/rpmdb-py.c
python/rpmds-py.c
python/rpmmodule.c
python/rpmrc-py.c
python/rpmte-py.c
python/rpmts-py.c
rpm.spec.in
rpmdb/Makefile.am
rpmdb/hdrinline.h
rpmdb/header.c
rpmdb/header.h
rpmdb/rpmdb.c
rpmdb/rpmdb.h
tools/dump.c
tools/rpmcache.c
tools/rpmgraph.c
tools/rpminject.c
tools/rpmsort.c

diff --git a/CHANGES b/CHANGES
index c845a96..bfbafb5 100644 (file)
--- a/CHANGES
+++ b/CHANGES
        - update for sv.po.
        - display signature details using rpm -qi.
        - skip signing packages already signed with same key (#62118).
+       - install rpmal.h and rpmhash.h, implicit rpmps.hinclude, for now.
+       - revert headerFree/headerLink/headerUnlink debugging.
 
 4.0.3 -> 4.0.4:
        - solaris: translate i86pc to i386 (#57182).
index 61a8223..f0fd444 100644 (file)
@@ -321,7 +321,7 @@ int readRPM(const char *fileName, Spec *specp, struct rpmlead *lead,
     spec->packages = newPackage(spec);
 
     /* XXX the header just allocated will be allocated again */
-    spec->packages->header = headerFree(spec->packages->header, "spec->packages");
+    spec->packages->header = headerFree(spec->packages->header);
 
     /* Read the rpm lead, signatures, and header */
     {  rpmts ts = rpmtsCreate();
@@ -420,8 +420,8 @@ int writeRPM(Header *hdrp, const char *fileName, int type,
     int rc = 0;
 
     /* Transfer header reference form *hdrp to h. */
-    h = headerLink(*hdrp, "writeRPM xfer");
-    *hdrp = headerFree(*hdrp, "writeRPM xfer");
+    h = headerLink(*hdrp);
+    *hdrp = headerFree(*hdrp);
 
 #ifdef DYING
     if (Fileno(csa->cpioFdIn) < 0) {
@@ -483,7 +483,7 @@ int writeRPM(Header *hdrp, const char *fileName, int type,
        goto exit;
     }
     /* Re-reference reallocated header. */
-    *hdrp = headerLink(h, "writeRPM");
+    *hdrp = headerLink(h);
 
     /*
      * Write the header+archive into a temp file so that the size of
@@ -662,7 +662,7 @@ int writeRPM(Header *hdrp, const char *fileName, int type,
 #endif
 
        rc = headerWrite(fd, nh, HEADER_MAGIC_YES);
-       nh = headerFree(nh, "writeRPM nh");
+       nh = headerFree(nh);
 
        if (rc) {
            rc = RPMERR_NOSPACE;
@@ -691,7 +691,7 @@ int writeRPM(Header *hdrp, const char *fileName, int type,
 
 exit:
     sha1 = _free(sha1);
-    h = headerFree(h, "writeRPM exit");
+    h = headerFree(h);
     sig = rpmFreeSignature(sig);
     if (ifd) {
        (void) Fclose(ifd);
index f207c38..3a7797f 100644 (file)
@@ -161,7 +161,7 @@ Package freePackage(Package pkg)
     pkg->postUnFile = _free(pkg->postUnFile);
     pkg->verifyFile = _free(pkg->verifyFile);
 
-    pkg->header = headerFree(pkg->header, "pkg->header");
+    pkg->header = headerFree(pkg->header);
     pkg->fileList = freeStringBuf(pkg->fileList);
     pkg->fileFile = _free(pkg->fileFile);
     if (pkg->cpioList) {
@@ -520,7 +520,7 @@ Spec freeSpec(Spec spec)
        rl = _free(rl);
     }
     
-    spec->sourceHeader = headerFree(spec->sourceHeader, "spec->sourceHeader");
+    spec->sourceHeader = headerFree(spec->sourceHeader);
 
     if (spec->sourceCpioList) {
        rpmfi fi = spec->sourceCpioList;
@@ -533,7 +533,7 @@ Spec freeSpec(Spec spec)
 #endif
     }
     
-    spec->buildRestrictions = headerFree(spec->buildRestrictions, "spec->>buildRestrictions");
+    spec->buildRestrictions = headerFree(spec->buildRestrictions);
 
     if (!spec->recursing) {
 /*@-boundswrite@*/
index f943fd5..929cb2f 100644 (file)
@@ -188,7 +188,7 @@ int convertDB(void)
         rpmdbAdd(db, dbentry);
 
        free(group);
-       headerFree(dbentry, "convertDB");
+       headerFree(dbentry);
 
        oldrpmdbFreePackageInfo(package);
     }
index 7296db9..003c02c 100644 (file)
@@ -15,9 +15,9 @@ EXTRA_DIST = getdate.y
 pkgincdir = $(pkgincludedir)
 pkginc_HEADERS = \
        misc.h rpmcli.h rpmlib.h \
-       rpmds.h rpmfi.h rpmps.h rpmte.h rpmts.h stringbuf.h
+       rpmal.h rpmds.h rpmfi.h rpmps.h rpmte.h rpmts.h stringbuf.h
 noinst_HEADERS = \
-       cpio.h fsm.h manifest.h psm.h rpmal.h rpmlead.h signature.h
+       cpio.h fsm.h manifest.h psm.h rpmlead.h signature.h
 
 mylibpaths = \
        -L$(top_builddir)/lib \
index b838307..1c95d6a 100644 (file)
@@ -9,9 +9,7 @@
 #include <rpmmacro.h>          /* XXX rpmExpand("%{_dependency_whiteout}" */
 
 #include "rpmdb.h"             /* XXX response cache needs dbiOpen et al. */
-#include "rpmps.h"
 
-#include "rpmal.h"
 #include "rpmds.h"
 #include "rpmfi.h"
 
@@ -46,9 +44,6 @@ struct orderListIndex_s {
 /*@unchecked@*/
 int _cacheDependsRC = 1;
 
-/*@unchecked@*/
-static int _tso_debug = 0;
-
 /*@observer@*/ /*@unchecked@*/
 const char *rpmNAME = PACKAGE;
 
@@ -968,18 +963,6 @@ zapRelation(rpmte q, rpmte p,
 /*@=mustmod@*/
 /*@=boundswrite@*/
 
-static void prtTSI(const char * msg, tsortInfo tsi)
-       /*@globals fileSystem@*/
-       /*@modifies fileSystem@*/
-{
-/*@-nullpass@*/
-if (_tso_debug) {
-    if (msg) fprintf(stderr, "%s", msg);
-/*@i@*/ fprintf(stderr, " tsi %p suc %p next %p chain %p reqx %d qcnt %d\n", tsi, tsi->tsi_suc, tsi->tsi_next, tsi->tsi_chain, tsi->tsi_reqx, tsi->tsi_qcnt);
-}
-/*@=nullpass@*/
-}
-
 /**
  * Record next "q <- p" relation (i.e. "p" requires "q").
  * @param ts           transaction set
@@ -1013,9 +996,6 @@ static inline int addRelation(rpmts ts,
     pkgKey = RPMAL_NOMATCH;
     key = rpmalSatisfiesDepend(ts->addedPackages, requires, &pkgKey);
 
-if (_tso_debug)
-fprintf(stderr, "addRelation: pkgKey %ld\n", (long)pkgKey);
-
     /* Ordering depends only on added package relations. */
     if (pkgKey == RPMAL_NOMATCH)
        return 0;
@@ -1039,11 +1019,6 @@ fprintf(stderr, "addRelation: pkgKey %ld\n", (long)pkgKey);
     if (ignoreDep(p, q))
        return 0;
 
-/*@-nullpass -nullderef -formattype@*/
-if (_tso_debug)
-fprintf(stderr, "addRelation: q %p(%s) from %p[%d:%d]\n", q, rpmteN(q), ts->order, i, ts->orderCount);
-/*@=nullpass =nullderef =formattype@*/
-
     /* Avoid redundant relations. */
     /* XXX TODO: add control bit. */
 /*@-boundsread@*/
@@ -1053,10 +1028,6 @@ fprintf(stderr, "addRelation: q %p(%s) from %p[%d:%d]\n", q, rpmteN(q), ts->orde
 /*@-boundswrite@*/
     selected[i] = 1;
 /*@=boundswrite@*/
-/*@-nullpass@*/
-if (_tso_debug)
-fprintf(stderr, "addRelation: selected[%d] = 1\n", i);
-/*@=nullpass@*/
 
     /* T3. Record next "q <- p" relation (i.e. "p" requires "q"). */
     rpmteTSI(p)->tsi_count++;                  /* bump p predecessor count */
@@ -1064,33 +1035,16 @@ fprintf(stderr, "addRelation: selected[%d] = 1\n", i);
     if (rpmteDepth(p) <= rpmteDepth(q))        /* Save max. depth in dependency tree */
        (void) rpmteSetDepth(p, (rpmteDepth(q) + 1));
 
-/*@-nullpass@*/
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "addRelation: p %p(%s) depth %d", p, rpmteN(p), rpmteDepth(p));
-prtTSI(NULL, rpmteTSI(p));
-/*@=nullpass@*/
-
     tsi = xcalloc(1, sizeof(*tsi));
     tsi->tsi_suc = p;
 
     tsi->tsi_reqx = rpmdsIx(requires);
 
     tsi->tsi_next = rpmteTSI(q)->tsi_next;
-/*@-nullpass -compmempass@*/
-prtTSI("addRelation: new", tsi);
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "addRelation: BEFORE q %p(%s)", q, rpmteN(q));
-prtTSI(NULL, rpmteTSI(q));
-/*@=nullpass =compmempass@*/
 /*@-mods@*/
     rpmteTSI(q)->tsi_next = tsi;
     rpmteTSI(q)->tsi_qcnt++;                   /* bump q successor count */
 /*@=mods@*/
-/*@-nullpass -compmempass@*/
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "addRelation:  AFTER q %p(%s)", q, rpmteN(q));
-prtTSI(NULL, rpmteTSI(q));
-/*@=nullpass =compmempass@*/
     return 0;
 }
 /*@=mustmod@*/
@@ -1201,11 +1155,6 @@ int rpmtsOrder(rpmts ts)
 
     rpmalMakeIndex(ts->addedPackages);
 
-/*@-modfilesystem -nullpass -formattype@*/
-if (_tso_debug)
-fprintf(stderr, "*** rpmtsOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCount);
-/*@=modfilesystem =nullpass =formattype@*/
-
     /* T1. Initialize. */
     if (oType == 0)
        numOrderList = ts->orderCount;
@@ -1322,11 +1271,6 @@ fprintf(stderr, "*** rpmtsOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCou
        (void) rpmteSetParent(p, NULL);
 #endif
 
-/*@-modfilesystem -nullpass @*/
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "\t+++ %p[%d] %s npreds %d\n", p, rpmtsiOc(pi), rpmteNEVR(p), rpmteNpreds(p));
-/*@=modfilesystem =nullpass @*/
-
     }
     pi = rpmtsiFree(pi);
 
@@ -1349,11 +1293,6 @@ rescan:
        rpmteTSI(p)->tsi_suc = NULL;
        addQ(p, &q, &r);
        qlen++;
-/*@-modfilesystem -nullpass @*/
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, rpmteNEVR(p));
-prtTSI(" p", rpmteTSI(p));
-/*@=modfilesystem =nullpass @*/
     }
     pi = rpmtsiFree(pi);
 
@@ -1413,11 +1352,6 @@ prtTSI(" p", rpmteTSI(p));
                rpmteTSI(p)->tsi_suc = NULL;
                addQ(p, &rpmteTSI(q)->tsi_suc, &r);
                qlen++;
-/*@-modfilesystem -nullpass @*/
-if (_tso_debug)
-/*@i@*/ fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, rpmteNEVR(p));
-prtTSI(" p", rpmteTSI(p));
-/*@=modfilesystem =nullpass @*/
            }
            tsi = _free(tsi);
        }
@@ -1642,42 +1576,6 @@ assert(newOrderCount == ts->orderCount);
 }
 /*@=bounds@*/
 
-/**
- * Close a single database index.
- * @param db           rpm database
- * @param rpmtag       rpm tag
- * @return              0 on success
- */
-/*@-mustmod -type@*/ /* FIX: this belongs in rpmdb.c */
-static int rpmdbCloseDBI(/*@null@*/ rpmdb db, int rpmtag)
-       /*@globals fileSystem @*/
-       /*@modifies db, fileSystem @*/
-{
-    int dbix;
-    int rc = 0;
-
-    if (db == NULL || db->_dbi == NULL || dbiTags == NULL)
-       return 0;
-
-    for (dbix = 0; dbix < dbiTagsMax; dbix++) {
-       if (dbiTags[dbix] != rpmtag)
-           continue;
-/*@-boundswrite@*/
-       if (db->_dbi[dbix] != NULL) {
-           int xx;
-           /*@-unqualifiedtrans@*/             /* FIX: double indirection. */
-           xx = dbiClose(db->_dbi[dbix], 0);
-           if (xx && rc == 0) rc = xx;
-           db->_dbi[dbix] = NULL;
-           /*@=unqualifiedtrans@*/
-       }
-/*@=boundswrite@*/
-       break;
-    }
-    return rc;
-}
-/*@=mustmod =type@*/
-
 int rpmtsCheck(rpmts ts)
 {
     rpmdbMatchIterator mi = NULL;
index b11d48e..e55b993 100644 (file)
@@ -271,8 +271,10 @@ static /*@only@*/ char * base64Format(int_32 type, const void * data,
  * @return             formatted string
  */
 static /*@only@*/ char * pgpsigFormat(int_32 type, const void * data, 
-       char * formatPrefix, int padding, int element)
-               /*@modifies formatPrefix @*/
+               /*@unused@*/ char * formatPrefix, /*@unused@*/ int padding,
+               /*@unused@*/ int element)
+       /*@globals fileSystem @*/
+       /*@modifies fileSystem @*/
 {
     char * val, * t;
 
@@ -281,7 +283,9 @@ static /*@only@*/ char * pgpsigFormat(int_32 type, const void * data,
     } else {
        unsigned char * pkt = (byte *) data;
        unsigned int pktlen = 0;
+/*@-boundsread@*/
        unsigned int v = *pkt;
+/*@=boundsread@*/
        pgpTag tag = 0;
        unsigned int plen;
        unsigned int hlen = 0;
@@ -310,6 +314,7 @@ static /*@only@*/ char * pgpsigFormat(int_32 type, const void * data,
 
            val = t = xmalloc(nb + 1);
 
+/*@-boundswrite@*/
            switch (sigp->pubkey_algo) {
            case PGPPUBKEYALGO_DSA:
                t = stpcpy(t, "DSA");
@@ -347,6 +352,7 @@ static /*@only@*/ char * pgpsigFormat(int_32 type, const void * data,
            t += strlen(t);
            t = stpcpy(t, ", Key ID ");
            t = stpcpy(t, pgpHexStr(sigp->signid, sizeof(sigp->signid)));
+/*@=boundswrite@*/
 
            dig = pgpFreeDig(dig);
        }
index 032f61b..4f0e48d 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -8,8 +8,6 @@
 #include <rpmio_internal.h>
 #include <rpmlib.h>
 
-#include "rpmps.h"
-
 #include "cpio.h"
 #include "fsm.h"
 #include "rpmerr.h"
index a2d3e11..8a3d586 100644 (file)
@@ -9,8 +9,6 @@
 #include <rpmio_internal.h>
 #include <rpmlib.h>
 
-#include "rpmps.h"
-
 #define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
@@ -461,10 +459,10 @@ exit:
 
        /* Bump reference count for return. */
 /*@-boundswrite@*/
-       *hdrp = headerLink(h, "ReadPackageFile *hdrp");
+       *hdrp = headerLink(h);
 /*@=boundswrite@*/
     }
-    h = headerFree(h, "ReadPackageFile");
+    h = headerFree(h);
     if (ts->sig != NULL)
        ts->sig = headerFreeData(ts->sig, ts->sigtype);
     if (ts->dig != NULL)
index ee8504f..885d8ab 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -7,14 +7,12 @@
 
 #include <rpmio_internal.h>
 #include <rpmlib.h>
-
-#include "rpmps.h"
+#include <rpmmacro.h>
+#include <rpmurl.h>
 
 #include "cpio.h"
 #include "fsm.h"               /* XXX CPIO_FOO/FSM_FOO constants */
 #include "psm.h"
-#include <rpmmacro.h>
-#include <rpmurl.h>
 
 #include "rpmds.h"
 
@@ -447,7 +445,7 @@ rpmRC rpmInstallSourcePackage(rpmts ts, FD_t fd,
      (void) rpmtsAddInstallElement(ts, h, NULL, 0, NULL);
 
     fi = rpmfiNew(ts, fi, h, RPMTAG_BASENAMES, scareMem);
-    h = headerFree(h, "InstallSourcePackage");
+    h = headerFree(h);
 
     if (fi == NULL) {  /* XXX can't happen */
        rc = RPMRC_FAIL;
@@ -458,7 +456,7 @@ rpmRC rpmInstallSourcePackage(rpmts ts, FD_t fd,
     fi->te = rpmtsElement(ts, 0);
 /*@=onlytrans@*/
 /*@-nullpass@*/                /* FIX fi->h may be null */
-    fi->te->h = headerLink(fi->h, "fi->te->h");
+    fi->te->h = headerLink(fi->h);
 /*@=nullpass@*/
     fi->te->fd = fdLink(fd, "installSourcePackage");
     hge = fi->hge;
@@ -582,11 +580,11 @@ exit:
     _specdir = _free(_specdir);
     _sourcedir = _free(_sourcedir);
 
-    if (h) h = headerFree(h, "InstallSourcePackage exit");
+    if (h) h = headerFree(h);
 
     /*@-branchstate@*/
     if (fi) {
-       fi->te->h = headerFree(fi->te->h, "fi->te->h");
+       fi->te->h = headerFree(fi->te->h);
        if (fi->te->fd)
            (void) Fclose(fi->te->fd);
        fi->te->fd = NULL;
@@ -1260,7 +1258,7 @@ assert(psm->mi == NULL);
            /* Retrieve installed header. */
            rc = psmStage(psm, PSM_RPMDB_LOAD);
 if (rc == 0)
-psm->te->h = headerLink(fi->h, "psm->te->h");
+psm->te->h = headerLink(fi->h);
        }
        if (psm->goal == PSM_PKGSAVE) {
            /* Open output package for writing. */
@@ -1359,7 +1357,7 @@ psm->te->h = headerLink(fi->h, "psm->te->h");
                    hi = headerFreeIterator(hi);
                    /*@=branchstate@*/
 
-                   oh = headerFree(oh, NULL);
+                   oh = headerFree(oh);
                    uh = hfd(uh, uht);
                } else
                    break;      /* XXX shouldn't ever happen */
@@ -1708,11 +1706,11 @@ psm->te->h = headerLink(fi->h, "psm->te->h");
 
        if (psm->goal == PSM_PKGERASE || psm->goal == PSM_PKGSAVE) {
 if (psm->te->h)
-psm->te->h = headerFree(psm->te->h, "psm->te->h");
+psm->te->h = headerFree(psm->te->h);
            if (fi->h)
-               fi->h = headerFree(fi->h, "PSM_PKGSAVE_POST fi->h");
+               fi->h = headerFree(fi->h);
        }
-       psm->oh = headerFree(psm->oh, "PSM_PKGSAVE_POST psm->oh");
+       psm->oh = headerFree(psm->oh);
        psm->pkgURL = _free(psm->pkgURL);
        psm->rpmio_flags = _free(psm->rpmio_flags);
        psm->failedFile = _free(psm->failedFile);
@@ -1833,7 +1831,7 @@ assert(psm->mi == NULL);
 
        fi->h = rpmdbNextIterator(psm->mi);
        if (fi->h)
-           fi->h = headerLink(fi->h, "PSM_RPMDB_LOAD)");
+           fi->h = headerLink(fi->h);
 else {
 fprintf(stderr, "*** PSM_RDB_LOAD: header #%u not found\n", fi->record);
 }
index ae4d584..d99509c 100644 (file)
@@ -15,7 +15,6 @@
 #include <rpmbuild.h>
 
 #include "rpmdb.h"
-#include "rpmps.h"
 #include "rpmfi.h"
 #include "rpmts.h"
 
@@ -589,7 +588,7 @@ restart:
            /* Query a package file. */
            if (rpmrc == RPMRC_OK) {
                res = qva->qva_showPackage(qva, ts, h);
-               h = headerFree(h, "QueryVerify");
+               h = headerFree(h);
                rpmtsClean(ts);
                continue;
            }
index 0b5667f..5f629e6 100644 (file)
@@ -6,8 +6,6 @@
 
 #include <rpmlib.h>
 
-#include "rpmps.h"
-
 #include "rpmal.h"
 #include "rpmds.h"
 #include "rpmfi.h"
index 405cbcb..508be2d 100644 (file)
@@ -16,7 +16,7 @@ extern int _rpmal_debug;
 typedef /*@abstract@*/ struct rpmal_s *                rpmal;
 
 #ifdef __cplusplus
-{
+extern "C" {
 #endif
 
 /**
index 28e7320..b52b526 100644 (file)
@@ -10,7 +10,6 @@
 #include "rpmpgp.h"
 
 #include "rpmdb.h"
-#include "rpmps.h"
 
 #define        _RPMTS_INTERNAL
 #include "rpmts.h"
@@ -140,7 +139,8 @@ exit:
  * @return             0 on success
  */
 static int getSignid(Header sig, int sigtag, byte * signid)
-       /*@modifies *signid @*/
+       /*@globals fileSystem @*/
+       /*@modifies *signid, fileSystem @*/
 {
     void * pkt = NULL;
     int_32 pkttyp = 0;
@@ -151,7 +151,9 @@ static int getSignid(Header sig, int sigtag, byte * signid)
        struct pgpDig_s * dig = pgpNewDig();
 
        if (!pgpPrtPkts(pkt, pktlen, dig, 0)) {
+/*@-bounds@*/
            memcpy(signid, dig->signature.signid, sizeof(dig->signature.signid));
+/*@=bounds@*/
            rc = 0;
        }
      
@@ -262,11 +264,11 @@ static int rpmReSign(/*@unused@*/ rpmts ts,
                    xx = headerAddEntry(nh, tag, type, ptr, count);
            }
            hi = headerFreeIterator(hi);
-           oh = headerFree(oh, NULL);
+           oh = headerFree(oh);
 
-           sig = headerFree(sig, NULL);
-           sig = headerLink(nh, NULL);
-           nh = headerFree(nh, NULL);
+           sig = headerFree(sig);
+           sig = headerLink(nh);
+           nh = headerFree(nh);
        }
 
        /* Eliminate broken digest values. */
@@ -543,7 +545,7 @@ static int rpmImportPubkey(const rpmts ts,
 
 bottom:
        /* Clean up. */
-       h = headerFree(h, "ImportPubkey");
+       h = headerFree(h);
        dig = pgpFreeDig(dig);
        pkt = _free(pkt);
        n = _free(n);
@@ -595,7 +597,7 @@ static int readFile(FD_t fd, const char * fn, pgpDig dig)
            if (!headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, &uh, &uhc)
            ||   uh == NULL)
            {
-               h = headerFree(h, NULL);
+               h = headerFree(h);
                rpmError(RPMERR_FREAD, _("%s: headerGetEntry failed\n"), fn);
                goto exit;
            }
@@ -604,7 +606,7 @@ static int readFile(FD_t fd, const char * fn, pgpDig dig)
            (void) rpmDigestUpdate(dig->hdrsha1ctx, uh, uhc);
            uh = headerFreeData(uh, uht);
        }
-       h = headerFree(h, NULL);
+       h = headerFree(h);
     }
 
     /* Read the payload from the package. */
index eb14131..b670709 100644 (file)
@@ -4,7 +4,6 @@
 #include "system.h"
 
 #include <rpmlib.h>
-#include "rpmps.h"
 
 #define        _RPMDS_INTERNAL
 #include "rpmds.h"
@@ -89,7 +88,7 @@ fprintf(stderr, "*** ds %p\t%s[%d]\n", ds, ds->Type, ds->Count);
        /*@-evalorder@*/
        ds->Flags = (ds->h != NULL ? hfd(ds->Flags, ds->Ft) : _free(ds->Flags));
        /*@=evalorder@*/
-       ds->h = headerFree(ds->h, ds->Type);
+       ds->h = headerFree(ds->h);
     }
     /*@=branchstate@*/
 
@@ -151,7 +150,7 @@ rpmds rpmdsNew(Header h, rpmTag tagN, int scareMem)
 
        ds = xcalloc(1, sizeof(*ds));
        ds->Type = Type;
-       ds->h = (scareMem ? headerLink(h, ds->Type) : NULL);
+       ds->h = (scareMem ? headerLink(h) : NULL);
        ds->i = -1;
        ds->DNEVR = NULL;
        ds->tagN = tagN;
index 391f57b..41c60ec 100644 (file)
@@ -6,6 +6,8 @@
  * Structure(s) used for dependency tag sets.
  */
 
+#include "rpmps.h"
+
 /**
  */
 /*@-exportlocal@*/
index a890f9a..c53b760 100644 (file)
@@ -8,8 +8,6 @@
 #include <rpmio_internal.h>
 #include <rpmlib.h>
 
-#include "rpmps.h"
-
 #include "cpio.h"      /* XXX CPIO_FOO */
 #include "fsm.h"       /* XXX newFSM() */
 
@@ -521,10 +519,10 @@ Header relocateFileList(const rpmts ts, rpmfi fi,
            validRelocations = hfd(validRelocations, validType);
        }
        /* XXX FIXME multilib file actions need to be checked. */
-       return headerLink(origH, "relocate(return)");
+       return headerLink(origH);
     }
 
-    h = headerLink(origH, "relocate(orig)");
+    h = headerLink(origH);
 
     relocations = alloca(sizeof(*relocations) * numRelocations);
 
@@ -948,7 +946,7 @@ fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, fi->Type, fi->fc);
     fi->replacedSizes = _free(fi->replacedSizes);
     fi->replaced = _free(fi->replaced);
 
-    fi->h = headerFree(fi->h, fi->Type);
+    fi->h = headerFree(fi->h);
 
     /*@-nullstate -refcounttrans -usereleased@*/
     (void) rpmfiUnlink(fi, fi->Type);
@@ -1025,7 +1023,7 @@ rpmfi rpmfiNew(rpmts ts, rpmfi fi,
     fi->hre = (HRE_t) headerRemoveEntry;
     fi->hfd = headerFreeData;
 
-    fi->h = (scareMem ? headerLink(h, fi->Type) : NULL);
+    fi->h = (scareMem ? headerLink(h) : NULL);
 
     if (fi->fsm == NULL)
        fi->fsm = newFSM();
@@ -1038,7 +1036,7 @@ rpmfi rpmfiNew(rpmts ts, rpmfi fi,
        /*@-branchstate@*/
        if (malloced) {
            if (scareMem && fi->h)
-               fi->h = headerFree(fi->h, fi->Type);
+               fi->h = headerFree(fi->h);
            fi->fsm = freeFSM(fi->fsm);
            /*@-refcounttrans@*/
            fi = _free(fi);
@@ -1118,9 +1116,9 @@ if (fi->actions == NULL)
        /*@-compdef@*/ /* FIX: fi-md5s undefined */
        foo = relocateFileList(ts, fi, h, fi->actions);
        /*@=compdef@*/
-       fi->h = headerFree(fi->h, "rpmfiNew fi->h");
-       fi->h = headerLink(foo, "rpmfiNew fi->h = foo");
-       foo = headerFree(foo, "rpmfiNew foo");
+       fi->h = headerFree(fi->h);
+       fi->h = headerLink(foo);
+       foo = headerFree(foo);
     }
 
     if (!scareMem) {
@@ -1132,7 +1130,7 @@ if (fi->actions == NULL)
        _fdupe(fi, vflags);
        _fdupe(fi, fmodes);
        _fdupe(fi, dil);
-       fi->h = headerFree(fi->h, fi->Type);
+       fi->h = headerFree(fi->h);
     }
 
     dnlmax = -1;
index 691711b..5169156 100644 (file)
@@ -7,7 +7,6 @@
 #include <rpmcli.h>
 
 #include "rpmdb.h"
-#include "rpmps.h"
 
 #define        _RPMTS_INTERNAL         /* ts->goal, ts->dbmode, ts->suggests */
 #include "rpmts.h"
@@ -440,7 +439,7 @@ restart:
                }
                mi = rpmdbFreeIterator(mi);
                if (count == 0) {
-                   eiu->h = headerFree(eiu->h, "Install freshen");
+                   eiu->h = headerFree(eiu->h);
                    continue;
                }
                /* Package is newer than those currently installed. */
@@ -453,7 +452,7 @@ restart:
            /*@=abstract@*/
 
            /* XXX reference held by transaction set */
-           eiu->h = headerFree(eiu->h, "Install added");
+           eiu->h = headerFree(eiu->h);
            if (eiu->relocations)
                eiu->relocations->oldPath = _free(eiu->relocations->oldPath);
 
@@ -762,7 +761,7 @@ IDTX IDTXfree(IDTX idtx)
        if (idtx->idt)
        for (i = 0; i < idtx->nidt; i++) {
            IDT idt = idtx->idt + i;
-           idt->h = headerFree(idt->h, "IDTXfree");
+           idt->h = headerFree(idt->h);
            idt->key = _free(idt->key);
        }
        idtx->idt = _free(idtx->idt);
@@ -834,7 +833,7 @@ IDTX IDTXload(rpmts ts, rpmTag tag)
            /*@-nullderef@*/
            idt = idtx->idt + idtx->nidt;
            /*@=nullderef@*/
-           idt->h = headerLink(h, "IDTXload idt->h");
+           idt->h = headerLink(h);
            idt->key = NULL;
            idt->instance = rpmdbGetIteratorOffset(mi);
            idt->val.u32 = *tidp;
@@ -893,13 +892,13 @@ IDTX IDTXglob(rpmts ts, const char * globstr, rpmTag tag)
 
            idtx = IDTXgrow(idtx, 1);
            if (idtx == NULL || idtx->idt == NULL) {
-               h = headerFree(h, "IDTXglob skip");
+               h = headerFree(h);
                (void) Fclose(fd);
                continue;
            }
            {   IDT idt;
                idt = idtx->idt + idtx->nidt;
-               idt->h = headerLink(h, "IDTXglob idt->h");
+               idt->h = headerLink(h);
                idt->key = av[i];
                av[i] = NULL;
                idt->instance = 0;
@@ -909,7 +908,7 @@ IDTX IDTXglob(rpmts ts, const char * globstr, rpmTag tag)
        }
        /*@=branchstate@*/
 
-       h = headerFree(h, "IDTXglob next");
+       h = headerFree(h);
        (void) Fclose(fd);
     }
 
index 2ccb338..b1a89e7 100644 (file)
@@ -6,7 +6,6 @@
 
 #include <rpmlib.h>
 
-#include "rpmps.h"
 #include "rpmds.h"
 
 #include "debug.h"
index 56402c0..2e04aa5 100644 (file)
@@ -7,8 +7,6 @@
 
 #include "psm.h"
 
-#include "rpmps.h"
-
 #include "rpmds.h"
 #include "rpmfi.h"
 
@@ -64,7 +62,7 @@ static void delTE(rpmte p)
     p->name = _free(p->name);
     p->NEVR = _free(p->NEVR);
 
-    p->h = headerFree(p->h, "delTE");
+    p->h = headerFree(p->h);
 
 /*@-boundswrite@*/
     memset(p, 0, sizeof(*p));  /* XXX trash and burn */
index d59f16c..82d7267 100644 (file)
@@ -9,11 +9,10 @@
 #include <rpmpgp.h>            /* XXX rpmtsFree() needs pgpFreeDig */
 
 #include "rpmdb.h"             /* XXX stealing db->db_mode. */
-#include "rpmps.h"
 
+#include "rpmal.h"
 #include "rpmds.h"
 #include "rpmfi.h"
-#include "rpmal.h"
 
 #define        _RPMTE_INTERNAL         /* XXX te->h */
 #include "rpmte.h"
@@ -265,8 +264,8 @@ int rpmtsSolve(rpmts ts, rpmds ds)
        /* XXX Prefer the newest build if given alternatives. */
        if (htime <= bhtime)
            continue;
-       bh = headerFree(bh, NULL);
-       bh = headerLink(h, NULL);
+       bh = headerFree(bh);
+       bh = headerLink(h);
        bhtime = htime;
     }
     mi = rpmdbFreeIterator(mi);
@@ -280,7 +279,7 @@ int rpmtsSolve(rpmts ts, rpmds ds)
     if (qfmt == NULL || *qfmt == '\0')
        goto exit;
     str = headerSprintf(bh, qfmt, rpmTagTable, rpmHeaderFormats, &errstr);
-    bh = headerFree(bh, NULL);
+    bh = headerFree(bh);
     qfmt = _free(qfmt);
     if (str == NULL) {
        rpmError(RPMERR_QFMT, _("incorrect format: %s\n"), errstr);
index b557bb1..1473e74 100644 (file)
@@ -6,8 +6,7 @@
  * Structures and prototypes used for an "rpmts" transaction set.
  */
 
-#include <rpmhash.h>   /* XXX hashTable */
-#include "rpmal.h"     /* XXX availablePackage/relocateFileList ,*/
+#include "rpmps.h"
 
 /*@unchecked@*/
 /*@-exportlocal@*/
@@ -20,6 +19,9 @@ extern int _ts_debug;
 
 #if defined(_RPMTS_INTERNAL)
 
+#include "rpmhash.h"   /* XXX hashTable */
+#include "rpmal.h"     /* XXX availablePackage/relocateFileList ,*/
+
 /*@unchecked@*/
 /*@-exportlocal@*/
 extern int _cacheDependsRC;
index e2daeb2..4438247 100644 (file)
@@ -8,7 +8,6 @@
 #include <rpmlib.h>
 #include <rpmmacro.h>  /* XXX for rpmGetPath() */
 #include "rpmdb.h"
-#include "rpmps.h"
 
 #define        _RPMTS_INTERNAL
 #include "rpmts.h"
@@ -221,10 +220,10 @@ rpmRC rpmReadSignature(FD_t fd, Header * headerp, sigType sig_type)
 
 /*@-boundswrite@*/
     if (headerp && rc == RPMRC_OK)
-       *headerp = headerLink(h, NULL);
+       *headerp = headerLink(h);
 /*@=boundswrite@*/
 
-    h = headerFree(h, NULL);
+    h = headerFree(h);
 
     return rc;
 }
@@ -259,7 +258,7 @@ Header rpmNewSignature(void)
 
 Header rpmFreeSignature(Header h)
 {
-    return headerFree(h, "FreeSignature");
+    return headerFree(h);
 }
 
 /**
@@ -561,7 +560,7 @@ static int makeHDRSignature(Header sig, const char * file, int_32 sigTag,
            if (!headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, &uh, &uhc)
             ||  uh == NULL)
            {
-               h = headerFree(h, NULL);
+               h = headerFree(h);
                goto exit;
            }
            ctx = rpmDigestInit(PGPHASHALGO_SHA1, RPMDIGEST_NONE);
@@ -570,7 +569,7 @@ static int makeHDRSignature(Header sig, const char * file, int_32 sigTag,
            (void) rpmDigestFinal(ctx, (void **)&sha1, NULL, 1);
            uh = headerFreeData(uh, uht);
        }
-       h = headerFree(h, NULL);
+       h = headerFree(h);
 
        if (sha1 == NULL)
            goto exit;
@@ -622,7 +621,7 @@ exit:
        fn = _free(fn);
     }
     sha1 = _free(sha1);
-    h = headerFree(h, NULL);
+    h = headerFree(h);
     if (fd) (void) Fclose(fd);
     return ret;
 }
index a5684dd..726c468 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "psm.h"
 
-#include "rpmps.h"
+#include "rpmdb.h"
 
 #include "rpmds.h"
 
@@ -22,7 +22,6 @@
 #define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
-#include "rpmdb.h"
 #include "fprint.h"
 #include "legacy.h"    /* XXX domd5 */
 #include "misc.h" /* XXX stripTrailingChar, splitString, currentDirectory */
@@ -1439,13 +1438,13 @@ fi->actions = actions;
                    ourrc++;
                    lastKey = pkgKey;
                }
-               fi->h = headerFree(fi->h, "TR_ADDED fi->h free");
+               fi->h = headerFree(fi->h);
            } else {
                ourrc++;
                lastKey = pkgKey;
            }
 
-           p->h = headerFree(p->h, "TR_ADDED h free");
+           p->h = headerFree(p->h);
 
            if (gotfd) {
                /*@-noeffectuncon @*/ /* FIX: check rc */
index 9beb10d..b8edc74 100644 (file)
@@ -6,7 +6,6 @@
 #include "system.h"
 
 #include <rpmcli.h>
-#include "rpmps.h"
 
 #include "psm.h"
 #include "rpmfi.h"
index ccfdf82..9127bf2 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -835,7 +835,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -865,7 +865,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -1436,57 +1436,57 @@ msgstr ""
 msgid " failed - "
 msgstr "selhal - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "©patný soubor: %s: %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "¾ádné balíèky\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1494,26 +1494,26 @@ msgid ""
 msgstr ""
 "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(není èíslo)"
 
@@ -1526,12 +1526,12 @@ msgstr "(nen
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(není èíslo)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "vynechat pøípadné PGP podpisy"
@@ -1561,47 +1561,47 @@ msgstr "nemohu otev
 msgid "file %s is on an unknown device\n"
 msgstr "soubor %s je na neznámém zaøízení\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: 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:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -1621,41 +1621,41 @@ msgstr "nemohu zapsat do %%%s %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 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:239
+#: lib/package.c:237
 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, fuzzy, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
@@ -2106,320 +2106,320 @@ msgstr "generovat PGP/GPG podpis"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 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:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, 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:1447
+#: lib/psm.c:1445
 #, 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:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "nesprávný formát: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾ádné soubory)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normální      "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "nahrazen      "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "neinstalován  "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "sdílen v síti "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(chybí stav)  "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámý %3d) "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "dotaz na %s se nezdaøil\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 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:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "¾ádné balíèky\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "nemohu zjistit stav %s: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾ádný balíèek nevy¾aduje %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾ádný balíèek neposkytuje %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "soubor %s nevlastní ¾ádný balíèek\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "záznam balíèku èíslo: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "záznam %u nelze pøeèíst\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "©patný soubor: %s: %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otevøení selhalo: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile selhalo\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite selhalo: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: Fwrite selhalo: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: Fwrite selhalo: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 #, fuzzy
 msgid "NOT OK"
 msgstr "NE "
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "NE "
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "ANO"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2428,139 +2428,139 @@ msgstr ""
 "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 #, fuzzy
 msgid "========== relocations\n"
 msgstr "========== ukládání tsort relací\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vyøazen: %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s vytvoøen jako %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, fuzzy, c-format
 msgid " ... as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, 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:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "neinstalován  "
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, 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:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "chybné závislosti pøi sestavování:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "nainstalovat balíèek"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, 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:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, fuzzy, c-format
 msgid "Installing %s\n"
 msgstr "øádek: %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2570,35 +2570,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2772,181 +2772,181 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 #, fuzzy
 msgid "No signature\n"
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "vynechat pøípadné PGP podpisy"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "%s selhalo\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "%s selhalo\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "©patná %%_signature spec v souboru maker.\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "nekontrolovat SHA1 digest v hlavièce"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynechat pøípadné MD5 souèty"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chybí { po %"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "chybné závislosti pøi sestavování:\n"
@@ -3032,77 +3032,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "chybí { po %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "po %{ chybí }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "prázdný formát znaèky"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "prázdné jméno znaèky"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "neznámá znaèka"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "na konci pole oèekáváno ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "neoèekávaná ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "neoèekávaná }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "ve výrazu oèekáván ?"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "ve výrazu je po ? oèekávána {"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "ve výrazu je oèekávána }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "v podvýrazu je po ? oèekávána :"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "ve výrazu je po : oèekávána {"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "na konci výrazu je oèekáváno |"
 
@@ -3139,149 +3139,149 @@ msgstr "nemohu otev
 msgid "cannot open %s index\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu vytvoøit databázi z existující databáze"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Nelze pøejmenovat %s na %s: %m\n"
index 70d8ec7..21439a8 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -832,7 +832,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -862,7 +862,7 @@ msgstr "Kunne ikke l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1437,82 +1437,82 @@ msgstr ""
 msgid " failed - "
 msgstr " mislykkedes - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tilfører)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tilfører)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(ikke et tal)"
 
@@ -1525,12 +1525,12 @@ msgstr "(ikke et tal)"
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(ikke et tal)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "overspring eventuelle PGP-signaturer"
@@ -1560,46 +1560,46 @@ msgstr "kunne ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukendt enhed\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -1619,42 +1619,42 @@ msgstr "kunne ikke skrive til %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fejl ved oprettelse af midlertidig fil %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 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:239
+#: lib/package.c:237
 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature mislykkedes\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen tilgængelig signatur\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
@@ -2120,322 +2120,322 @@ msgstr "gener
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ugyldigt format: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(indeholder ingen filer)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "erstattet     "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "ej installeret"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "ej delt       "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(ingen status)"
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ukendt %3d)  "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kunne ikke forespørge %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "forespørgsel af %s mislykkedes\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakker udløser %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "forespørgsel af spec-fil %s mislykkedes, kunne ikke tolkes\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "ingen pakker\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "gruppe %s indeholder ingen pakker\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ingen pakker udløser %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Kunne ikke læse %s: %s.\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ingen pakker udløser %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ingen pakker kræver %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ingen pakker tilfører %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s tilhører ingen pakke\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ugyldigt pakkenummer: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "pakkens post-nummer: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (tilføjede 'provide')\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: åbning mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile mislykkedes\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kan ikke underskrive v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: Kan ikke genunderskrive v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen tilgængelig signatur (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "IKKE O.K."
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (MANGLENDE NØGLER:    "
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (IKKE-BETROEDE NØGLER:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "O.K."
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2444,136 +2444,136 @@ msgstr ""
 "\"B\"-afhængighed kræver en epoke (antager samme som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== gemmer omrokeringer\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ekskluderer %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omrokerer %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ekskluderer %s %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "omrokerer %s til %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "omrokerer kataloget %s til %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker til installation..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2583,35 +2583,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "læsning mislykkedes: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2788,174 +2788,174 @@ msgstr "Kunne ikke l
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åbne %s for læsning: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterede filsystemer\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen er ikke regulær -- overspringer størrelsestjek\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr "Forventet størrelse: %12d = indled(%d)+sign(%d)+fyld(%d)+data(%d)\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk størrelse: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Gammel PGP-signatur\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Gammel (internt brug) signatur! Hvordan fik du fingre i den!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signaturstørrelse: %d\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "pgp fejlede\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "pgp kunne ikke skrive signatur\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP-signaturstørrelse: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "kunne ikke læse signaturen\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fik %d byte af PGP-signatur\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "gpg fejlede\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunne ikke skrive signaturen\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstørrelse: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Fik %d byte GPG-signatur\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Hovedstørrelse er for stor"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "overspring eventuelle MD5-signaturer"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "manglende  %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
@@ -3040,77 +3040,77 @@ msgstr "%s har for stor eller lille heltalsv
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "manglende { efter %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "manglende } efter %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "tomt mærkeformat"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "tomt mærkenavn"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "ukendt mærke"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] forventet ved slutningen af tabel"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "uventet ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "uventet }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "? forventet i udtryk"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "{ forventet efter ? i udtryk"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "} forventet i udtryk"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ": forventet efter ?-underudtryk"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "{ forventet efter : i udtryk"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "| forventet ved slutningen af udtryk"
 
@@ -3148,153 +3148,153 @@ msgstr "kan ikke 
 msgid "cannot open %s index\n"
 msgstr "kan ikke åbne '%s'-indeks\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "der er ikke sat nogen dbpath\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan ikke læse hoved ved 0x%x\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "fjerner \"%s\" fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "fjerne %d indgange fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fejl(%d) ved fjernelse af post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fejl(%d) under allokering af ny pakkeinstans\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 "tilføjer \"%s\" til '%s'-indekset.\n"
 "\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "tilføjer %d indgange til '%s'-indekset.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "fjerner %s efter vellykket genopbygning af db3.\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "der ikke sat nogen dbpath"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "genopbygger database %s over i %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "den midlertidige database %s eksisterer allerede\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 "opretter kataloget %s\n"
 "\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "opretter kataloget %s: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "åbner gammel database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "åbner ny database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunne ikke genopbygge database: original-databasen beholdes\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "kunne ikke erstatte gammel database med ny database!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "erstat filer i %s med filer fra %s for at genoprette"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "fjerner kataloget %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunne ikke fjerne katalog %s: %s\n"
index 6ccf3b5..5ec8fcf 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -922,7 +922,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -957,7 +957,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1569,82 +1569,82 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
 # , c-format
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # FIXME
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(keine Zahl)"
 
@@ -1657,12 +1657,12 @@ msgstr "(keine Zahl)"
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(keine Zahl)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "alle PGP-Signaturen überspringen"
@@ -1695,47 +1695,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1755,45 +1755,45 @@ msgstr "kann Datei %s nicht 
 msgid "error creating temporary file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
@@ -2280,472 +2280,472 @@ msgstr "PGP-Signatur generieren"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "Fehler beim Format %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(beinhaltet keine Dateien)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 #, fuzzy
 msgid "not installed "
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(unbekannter Typ)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "Paket hat keinen Namen"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "Paket hat keinen Namen"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "kein Paket triggert %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "kein Paket triggert %s\n"
 
 # , c-format
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "kein Paket triggert %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "kein Paket verlangt %s\n"
 
 # oder besser: ... listet %s auf? -ke-
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "kein Paket stellt %s bereit\n"
 
 # , c-format
-#: lib/query.c:858
+#: lib/query.c:857
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, 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:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
 # , c-format
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kann v1.0-RPM nicht signieren\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (FEHLENDE SCHLüSSEL)"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Hole %s heraus\n"
 
 # , c-format
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
 # , c-format
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
@@ -2755,35 +2755,35 @@ msgstr "Es wurden keine Pakete f
 msgid "read failed: %s (%d)\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2964,181 +2964,181 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Alte Signatur (nur intern)!  Wie bist du daran gekommen!?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nicht möglich, die Signatur zu lesen"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "Paket installieren"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "alle MD5-Signaturen überspringen"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
@@ -3223,80 +3223,80 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "fehlende { nach %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "fehlende } nach %{"
 
 # »Tag« übersetzen??? -ke-
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "leeres »Tag«-Format"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "leerer »Tag«-Name"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "unbekannter »Tag«"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] am Ende des Arrays erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "unerwartete ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "unerwartete }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "? im Ausdruck erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "{ nach ? im Ausdruck erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "} im Ausdruck erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ": nach ? Unterausdruck erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "{ nach : im Ausdruck erwartet"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "| am Ende des Ausdrucks erwartet"
 
@@ -3334,156 +3334,156 @@ msgstr "kann Datei %s nicht 
 msgid "cannot open %s index\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # FIXME
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
 # , c-format
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
index a9f5675..4ed2edd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a61b0e9..deb84ef 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -845,7 +845,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -875,7 +875,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1461,80 +1461,80 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "kysele kaikki paketit"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(ei ole luku)"
 
@@ -1547,12 +1547,12 @@ msgstr "(ei ole luku)"
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(ei ole luku)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "ohita PGP-allekirjoitukset"
@@ -1582,46 +1582,46 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1641,45 +1641,45 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "error creating temporary file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
@@ -2163,462 +2163,462 @@ msgstr "generoi PGP-allekirjoitus"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "virhe formaatissa: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(ei tiedostoja)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 #, fuzzy
 msgid "not installed "
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(tuntematon tyyppi)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "paketilla ei ole nimeä"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paketilla ei ole nimeä"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "kysele kaikki paketit"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "mikään pakettie ei tarvitse %s:a\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "mikään paketti ei tarjoa %s:a\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr "(PUUTTUVAT AVAIMET)"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "poistolle ei määritelty paketteja"
@@ -2628,35 +2628,35 @@ msgstr "poistolle ei m
 msgid "read failed: %s (%d)\n"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2830,181 +2830,181 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp epäonnistui"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "en voinut lukea allekirjoitusta"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp epäonnistui"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "asenna paketti"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ohita MD5-allekirjoitukset"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
@@ -3089,79 +3089,79 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "puuttuva '{' '%':n jälkeen"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "puuttuva '{' '%{':n jälkeen"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "tyhjä nimiön formaatti"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "tyhjä nimiön nimi"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "tuntematon nimiö"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "']' puuttuu taulukkomäärittelyn lopusta"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "odottamaton ']'"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "odottamaton '}'"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "odotin '}'-merkkiä ilmauksessa"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "odotin '}'-merkkiä ilmauksen lopussa"
 
@@ -3199,150 +3199,150 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "cannot open %s index\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
index 4b5a4d4..cf016a3 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -871,7 +871,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -901,7 +901,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1492,79 +1492,79 @@ msgstr ""
 msgid " failed - "
 msgstr "La construction a chou.\n"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1576,11 +1576,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "      --sign            - genre une signature PGP"
@@ -1610,46 +1610,46 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1669,41 +1669,41 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2207,461 +2207,461 @@ msgstr "      --sign            - genre une signature PGP"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 #, fuzzy
 msgid "not installed "
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "La construction a chou.\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -2671,35 +2671,35 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation"
 msgid "read failed: %s (%d)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2873,177 +2873,177 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "La construction a chou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "La construction a chou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "impossible d'ouvrir: %s\n"
@@ -3128,79 +3128,79 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 #, fuzzy
 msgid "unexpected ]"
 msgstr "source de requte inattendue"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 #, fuzzy
 msgid "unexpected }"
 msgstr "source de requte inattendue"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3238,149 +3238,149 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "cannot open %s index\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
index 8a6ba45..f9e387d 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1405,77 +1405,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1487,11 +1487,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1520,46 +1520,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1579,41 +1579,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2041,451 +2041,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2495,35 +2495,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2696,170 +2696,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2944,77 +2944,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3050,149 +3050,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index e85dbce..5404efb 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -818,7 +818,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -848,7 +848,7 @@ msgstr "Get ekki lesi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -1413,78 +1413,78 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "uppfæra pakka"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1496,11 +1496,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "búa til undirskrift"
@@ -1530,46 +1530,46 @@ msgstr "gat ekki opna
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -1589,41 +1589,41 @@ msgstr "get ekki rita
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2062,452 +2062,452 @@ msgstr "b
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Get ekki lesið %s: %s.\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: gat ekki lesið manifest: %s\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "lína %d: %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2517,35 +2517,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2718,171 +2718,171 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Get ekki opnað %s til lesturs: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "pgp brást\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "pgp gat ekki lesið undirskriftina\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "ggp brást\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "gpg get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "ekki yfirfara SHA1 undirritunina"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "vantar     %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
@@ -2967,77 +2967,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3073,149 +3073,149 @@ msgstr "get ekki opna
 msgid "cannot open %s index\n"
 msgstr "get ekki opnað %s index\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index f55a64e..6c9c592 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -863,7 +863,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -893,7 +893,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -1484,82 +1484,82 @@ msgstr ""
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
@@ -1572,12 +1572,12 @@ msgstr "(
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "PGP ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
@@ -1607,46 +1607,46 @@ msgstr "%s 
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -1666,45 +1666,45 @@ msgstr "%s 
 msgid "error creating temporary file %s\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:239
+#: lib/package.c:237
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
@@ -2199,326 +2199,326 @@ msgstr "PGP/GPG 
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "Ä̾ï"
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "¥Í¥Ã¥È¶¦Í­"
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)"
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(̤ÃΤΠ%3d)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (¥­¡¼¤Îʶ¼º) "
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2527,137 +2527,137 @@ msgstr ""
 "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2667,35 +2667,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "Æɤ߹þ¤ß¤Î¼ºÇÔ: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2878,181 +2878,181 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 "¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "¸Å¤¤ PGP ½ð̾\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾!  ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp ¼ºÇÔ"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ½ð̾¥µ¥¤¥º: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg ¼ºÇÔ"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, fuzzy, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, fuzzy, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "GPG ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "MD5 ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
@@ -3137,78 +3137,78 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 #, fuzzy
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "% ¤Î¸å¤Ë { ¤¬¤¢¤ê¤Þ¤»¤ó"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "%{ ¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "¶õ¤Î¥¿¥°¥Õ¥©¡¼¥Þ¥Ã¥È"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "¶õ¤Î¥¿¥°Ì¾"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "ÉÔÌÀ¤Ê¥¿¥°"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "ÇÛÎó¤Î¸å¤Ë ] ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "ͽ´ü¤»¤Ì ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "ͽ´ü¤»¤Ì }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "¼°Ãæ¤Ç ? ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "¼°Ãæ¤Ç ? ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "¼°Ãæ¤Ë } ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "°Ê²¼¤Î ? ¥µ¥Ö¼°¤Î ¤Ë: ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "¼°Ãæ¤Ç : ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
@@ -3246,152 +3246,152 @@ msgstr "%s 
 msgid "cannot open %s index\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
index b71d149..9e047e0 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -825,7 +825,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -855,7 +855,7 @@ msgstr "%s
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -1422,57 +1422,57 @@ msgstr "
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr "´ÙÀ½°ú °ü·ÃµÈ ÆÐÅ°Áö À̸§À» ¹«½ÃÇÕ´Ï´Ù [%d]\t%s -> %s\n"
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
@@ -1480,26 +1480,26 @@ msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, Æ®¸®, ±íÀÌ"
 "[depth])\n"
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ¸¸ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(¼ýÀÚ°¡ ¾Æ´Õ´Ï´Ù)"
 
@@ -1511,11 +1511,11 @@ msgstr "(base64
 msgid "(invalid type)"
 msgstr "(ºÎÀûÇÕÇѠŸÀÔ)"
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr "(BLOB[Binary Large OBject]ÀÌ ¾Æ´Õ´Ï´Ù)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "¾î¶°ÇÑ PGP ¼­¸íµµ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
@@ -1545,47 +1545,47 @@ msgstr "%s(
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀº ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ ÀÖ½À´Ï´Ù\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%2$04oÀÇ Çã°¡±Ç(perms)À» °¡Áø %1$s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s(À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s(ÀÌ)°¡ %s(À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ© ÇØÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s(ÀÌ)°¡ %s(À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -1605,41 +1605,41 @@ msgstr "%%%s %s(
 msgid "error creating temporary file %s\n"
 msgstr "ÀӽàÆÄÀÏ %s(À»)¸¦ »ý¼ºÇϴ µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÀÌ RPM ¹öÀüÀº ÆÐŰ¡ ¹öÀü '1' À» Áö¿øÇÏÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÀÌ RPM ¹öÀüÀº ÁÖ ¹øÈ£(major number)°¡ <= 4 ÀΠÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n"
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
@@ -2090,325 +2090,325 @@ msgstr "
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ÇÊ¿äÇϸç, ¹ÙÀ̳ʸ®°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, waitpid°¡ %5"
 "$s(À»)¸¦ ¹ÝȯÇÏ¿´½À´Ï´Ù\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %5"
 "$d\n"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏÀÇ "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "Á¤»ó(normal)        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "±³Ã¼µÊ(replaced)    "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½  "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "net °øÀ¯µÊ          "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(¾Ë ¼ö ¾ø´Â %3d)    "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s(¿Í)°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 "%s spec ÆÄÀÏÀ» ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù, ÆÄÀÏÀ» Ã³¸®(parse)ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s ±×·ìÀº ¾î¶² ÆÐÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s(À»)¸¦ »ý¼ºÇÏ´Â(trigger) ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s(ÀÌ)°¡ À߸øµÊ: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s(¿Í)°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s(À»)¸¦ ÇÊ¿ä·Î Çϴ ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s(À»)¸¦ Á¦°øÇϴ ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "%s ÆÄÀÏ: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "%s ÆÄÀÏÀº ¾î¶² ÆÐÅ°Áö¿¡µµ µé¾îÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "ÆÐÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: ¿©´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFileÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: FwriteÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: v1.0 RPMÀº ¼­¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: v2.0 RPMÀº Àç-¼­¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "¿Ã¹Ù¸£Áö ¾ÊÀ½"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (Å°¸¦ Ã£À» ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (Å°¸¦ ½Å·ÚÇÒ ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "È®ÀÎ"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "¿¹"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2417,136 +2417,136 @@ msgstr ""
 "\"B\" ÀÇÁ¸¼ºÀº Áß¿ä½Ã µÇ´Â °Í(epoch)À» ÇÊ¿ä·Î ÇÕ´Ï´Ù (\"A\" ·Î °¡Á¤ÇÕ´Ï´Ù)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä»çÇ×(³»¿ª)ÀÌ ¸¸Á·ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== Àç¹èÄ¡\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d Á¦¿Ü  %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "Áغñ Áß..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s(À¸)·Î\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "(+%d,-%d) ÆÐÅ°Áö¸¦ %sÀ¸·Î ·Ñ¹é(rollback)ÇÕ´Ï´Ù"
@@ -2556,35 +2556,35 @@ msgstr "(+%d,-%d) 
 msgid "read failed: %s (%d)\n"
 msgstr "Àдµ¥ ½ÇÆÐÇÔ: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2764,174 +2764,174 @@ msgstr "%s(
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr "¿¹»ó(Expected) ¿ë·®: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr " ½ÇÁ¦ ¿ë·®: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "ÀÌÀü PGP ¼­¸í\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼­¸í!  ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s(À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "pgp°¡ ½ÇÆÐÇÔ\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ¼­¸í ¿ë·®: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "¼­¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼­¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "gpg°¡ ½ÇÆÐÇÔ\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ¼­¸í ¿ë·®: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "%d ¹ÙÀÌÆ®ÀÇ GPG ¼­¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ºÎÀûÇÕÇÑ %%_signature ³»¿ë(spec)ÀÌ ÀÖ½À´Ï´Ù\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ¹Ýµå½Ã \"%%_gpg_name\"À» ¼³Á¤ÇؾߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ¹Ýµå½Ã \"%%_pgp_name\"À» ¼³Á¤ÇؾߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "SHA1 Ãà¾à(digest) Çì´õ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "¾î¶°ÇÑ MD5 ¼­¸íµµ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr "¼Õ»óµÈ MD5 Ãà¾à(digest): Áö¿øÇÏÁö ¾ÊÀ½\n"
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "´ÙÀ½À» Ã£À» ¼ö ¾øÀ½    %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
@@ -3016,77 +3016,77 @@ msgstr "%s(
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "'%' µÚ¿¡ '{' °¡ ¾ø½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "'%{' µÚ¿¡ '}' °¡ ¾ø½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "űנÇü½ÄÀÌ ºñ¾îÀÖ½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "űנÀ̸§ÀÌ ºñ¾îÀÖ½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "¾Ë ¼ö ¾ø´Â Å±נÀÔ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "¹è¿­ÀÇ ³¡ºÎºÐ¿¡ ']' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "ºÒÇÊ¿äÇÑ ']' °¡ ÀÖ½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "ºÒÇÊ¿äÇÑ '}' °¡ ÀÖ½À´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "Ç¥Çö½Ä¿¡ '?' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "Ç¥Çö½ÄÀÇ '?' µÚ¿¡ '{' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "Ç¥Çö½Ä¿¡ '}' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "'?' ÇϺÎÇ¥Çö½Ä(subexpression) µÚ¿¡ ':' ÀÌ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "Ç¥Çö½ÄÀÇ ':' µÚ¿¡ '{' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "Ç¥Çö½ÄÀÇ ³¡ºÎºÐ¿¡ '|' °¡ ¿Í¾ßÇÕ´Ï´Ù"
 
@@ -3126,153 +3126,153 @@ msgstr "db%2$d(
 msgid "cannot open %s index\n"
 msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%xÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ \"%1$s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "%3$s¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦Çϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡Çϴ µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%2$s À妽º¿¡ \"%1$s\"(À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "db3¸¦ À籸ÃàÇÑ ÈÄ¿¡ %s(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%2$s¿¡ %1$s µ¥ÀÌÅͺ£À̽º¸¦ À籸Ãà ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "Àӽ൥ÀÌÅͺ£À̽º %s(ÀÌ)°¡ À̹̠Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "dbapi %d·Î ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "dbapi %d·Î »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹Äڵ堹øÈ£ %u(ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%u¿¡ Ã³À½ºÎÅÍ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "º¹±¸Çϱâ À§ÇØ %2$sÀÇ ÆÄÀÏÀ» %1$sÀÇ ÆÄÀϷΠ±³Ã¼ÇÕ´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
index 31cbe7f..a324782 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -829,7 +829,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -859,7 +859,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1428,78 +1428,78 @@ msgstr ""
 msgid " failed - "
 msgstr " feilet - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakke %s er allerede installert"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1511,11 +1511,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "hopp over PGP-signaturer"
@@ -1545,46 +1545,46 @@ msgstr "klarte ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukjent enhet\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -1604,41 +1604,41 @@ msgstr "kan ikke skrive til %%%s %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "feil under oppretting av midlertidig fil %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature feilet\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tilgjengelig\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
@@ -2086,453 +2086,453 @@ msgstr "generer signatur"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ukorrekt format: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(inneholder ingen filer)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "erstattet     "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "ikke installert"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "delt via nett "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(ingen tilstand)"
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ukjent %3d)  "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "pakken har verken fileier eller id-lister\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "pakken har verken fileier eller id-lister\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kan ikke spørre på %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "feil under åpning av %s: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "spørring på %s feilet\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "kildepakker i gammelt format kan ikke spørres\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "ingen pakker\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "gruppe %s inneholder ingen pakker\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "kunne ikke opprette %s: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ingen pakke krever %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ingen pakke gir %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s eies ikke av noen pakke\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ugyldig pakkenummer: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: åpne feilet: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile feilet\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite feilet: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: kan ikke signere v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead feilet: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature feilet: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "IKKE OK"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "NEI"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "JA"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omplasser %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relokerer %s til %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relokerer katalog %s til %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker for installasjon..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2542,35 +2542,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "lesing feilet: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2744,173 +2744,173 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterte filsystemer\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "For stor header"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "ikke verifiser header SHA1 digest"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "hopp over MD5-signaturer"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "mangler    %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "feilede avhengigheter:\n"
@@ -2995,77 +2995,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "mangler { etter %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "mangler } etter %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3101,149 +3101,149 @@ msgstr "kan ikke 
 msgid "cannot open %s index\n"
 msgstr "kan ikke åpne %s indeks\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index e9b8d80..ac21338 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -854,7 +854,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -884,7 +884,7 @@ msgstr "Nie mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1467,81 +1467,81 @@ msgstr ""
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "Udostêpniane zasoby:"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(nie jest liczb±)"
 
@@ -1554,12 +1554,12 @@ msgstr "(nie jest liczb
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(nie jest liczb±)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "pomiñ wszelkie sygnatury PGP"
@@ -1589,46 +1589,46 @@ msgstr "nie mo
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -1648,45 +1648,45 @@ msgstr "nie mo
 msgid "error creating temporary file %s\n"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Sygnatura nie jest dostêpna\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
@@ -2163,461 +2163,461 @@ msgstr "generuj sygnatur
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, 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:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, 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:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "b³±d w formacie: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(nie zawiera plików)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normalny      "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "zast±piony    "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "niezainstalowany"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "udostêpniony w sieci"
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(brak statusu)"
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(nieznany %3d)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, 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:313
+#: lib/query.c:312
 #, 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:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "odpytywanie %s nie powiod³o siê\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Odczytanie %s nie powiod³o siê: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¿aden pakiet nie wymaga %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¿aden pakiet nie udostêpnia %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, 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:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "numer rekordu pakietu: %d\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Open nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, 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:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "NIE DOBRZE"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (BRAK KLUCZY:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr "(NIEWIARYGODNE KLUCZE:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, 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:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2627,35 +2627,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "odczyt nie powiód³ siê: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2831,180 +2831,180 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Stara sygnatura PGP\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Stara (tylko wewnêtrzna) sygnatura! Sk±d Ty to wzi±³e¶!?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp nie powiod³o siê"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "rozmiar sygnatury PGP: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie mo¿na odczytaæ sygnatury"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Mam %d bajtów sygnatury PGP\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg nie powiod³o siê"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "rozmiar sygnatury GPG: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Mam %d bajtów sygnatury GPG\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "pomiñ wszelkie sygnatury MD5"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
@@ -3089,78 +3089,78 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 #, fuzzy
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "brak { po %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "brak } po %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "pusty format etykiety"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "pusta nazwa etykiety"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "nieznana etykieta"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "spodziewany ] na koñcu tablicy"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "nie spodziewany ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "nie spodziewany }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "spodziewany ? w wyra¿eniu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "spodziewany { po ? w wyra¿eniu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "spodziewany } w wyra¿eniu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "spodziewany : po podwyra¿eniu ?"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "spodziewany { po : w wyra¿eniu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "spodziewany | na koñcu wyra¿enia"
 
@@ -3198,151 +3198,151 @@ msgstr "nie mo
 msgid "cannot open %s index\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "b³±d usuwania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "b³±d szukania pakietu %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "odbudowywujê bazê danych w rootdir %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tymczasowa baza danych %s ju¿ istnieje"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otwieranie starej bazy danych\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otwieranie nowej bazy danych\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
index 140248e..b968bec 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -835,7 +835,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -865,7 +865,7 @@ msgstr "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:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -1438,83 +1438,83 @@ msgstr "Ficheiro de arquivo n
 msgid " failed - "
 msgstr " falhou - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "o pacote %s já está instalado"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s SI (oferecidos pelo db)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "nenhum pacote\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr "ignorar relações entre o nome do pacote [%d]\t%s -> %s\n"
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "=========== a guardar as relações do tsort\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: 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:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== só os sucessores (ordem de apresentação)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "CICLO:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== a prosseguir o tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(não é um número)"
 
@@ -1526,11 +1526,11 @@ msgstr "(n
 msgid "(invalid type)"
 msgstr "(tipo inválido)"
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr "(não é um blob)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "ignorar as assinaturas de PGP"
@@ -1560,49 +1560,49 @@ msgstr "falhei ao aceder ao %s: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "o ficheiro %s está num dispositivo desconhecido\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Directorias não incluidas explicitamente no pacote:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: 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:1539
+#: lib/fsm.c:1537
 #, 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:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gravado como %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir de %s falhou: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink de %s falhou: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
@@ -1622,41 +1622,41 @@ msgstr "n
 msgid "error creating temporary file %s\n"
 msgstr "erro ao criar o ficheiro temporário %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 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:239
+#: lib/package.c:237
 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: o rpmReadSignature falhou\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Nenhuma assinatura disponível\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
@@ -2105,322 +2105,322 @@ msgstr "gerar a assinatura"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "O tipo de dados %d não é suportado\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 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:561
+#: lib/psm.c:559
 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:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: a correr os scripts(s) %s (se existirem)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "a execução do script %s do %s-%s-%s falhou, waitpid devolveu %s\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s 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:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, 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:1447
+#: lib/psm.c:1445
 #, 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:1456
+#: lib/psm.c:1454
 #, 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:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s falhou no ficheiro %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s falhou: %s\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "formato incorrecto: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(não contém ficheiros)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "substituído   "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "não instalado "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "partilhado"
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(sem estado)  "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(desconhecido %3d)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, 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:313
+#: lib/query.c:312
 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:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "não consigo pesquisar o %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "a pesquisa do %s falhou\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 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:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nenhum pacote coincide com %s: %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "a pesquisa do ficheiro spec %s falhou, não consigo analisar\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "nenhum pacote\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, 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:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "nenhum pacote activa o %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr "malformado %s: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr "nenhum pacote coincide com %s: %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "nenhum pacote precisa do %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "nenhum pacote oferece o %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "ficheiro %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, 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:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "número de pacote inválido: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "número de registo do pacote: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "o registo %u não pôde ser lido\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "o pacote %s não está instalado\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s SIM (oferecidos para adição)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: o acesso falhou: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "o makeTempFile falhou\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: O fwrite falhou: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, 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:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: o writeLead falhou: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: o rpmWriteSignature falhou: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "NÃO-OK"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (FALTAM AS CHAVES:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (CHAVES SUSPEITAS:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "NÃO"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "SIM"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2429,136 +2429,136 @@ msgstr ""
 "A dependência \"B\" precisa duma época (assumindo a mesma que \"A\")\n"
 "\t %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s     A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "o pacote %s tem requisitos não satisfeitos: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== mudanças de local\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d excluir o %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d mudar de local %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "a exclur a directoria 'multilib' %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "a excluir o %s %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "a mudar o %s para %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "a mudar a directoria %s para %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "A preparar..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "A preparar os pacotes para a instalação..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... como %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "a ignorar o %s - a transferência falhou - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, 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:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "erro ao ler do ficheiros %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "o %s não pode ser instalado\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, 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:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "dependências falhadas:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "a instalar os pacotes binários\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "não consigo aceder ao ficheiro %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "o \"%s\" especifica vários pacotes\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "não consigo aceder ao %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "A instalar o %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s"
@@ -2568,35 +2568,35 @@ msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s"
 msgid "read failed: %s (%d)\n"
 msgstr "a leitura falhou: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2774,175 +2774,175 @@ msgstr "N
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Não consegui abrir o %s para leitura: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "não consigo abrir a base de dados Packages em %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "o ficheiro não é normal -- a ignorar a verificação do tamanho\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 "Esperado um tamanho: %12d = início(%d)+assin.(%d)+'pad'(%d)+dados(%d)\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Tamanho real: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Sem assinatura\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Assinatura PGP antiga\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Não consegui executar %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "o pgp falhou\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "o pgp não conseguiu gravar a assinatura\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "tamanho da assinatura do PGP: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "incapaz de ler a assinatura\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Obtive %d bytes da assinatura PGP\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "o gpg falhou\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "o gpg não conseguiu gravar a assinatura\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Tamanho da assinatura do GPG: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Obtive %d bytes da assinatura do GPG\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "'Spec' %%_signature inválido no ficheiro de macros\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Precisa definir o \"%%_gpg_name\" no seu ficheiro de macros\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Tamanho do cabeçalho demasiado grande"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "não verificar o SHA1 do cabeçalho"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ignorar as assinaturas de MD5"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Sem assinatura\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr "'Digest' MD5 estragado: NÃO SUPORTADO\n"
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "falta     %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Dependências não satisfeitas para o %s-%s-%s: "
@@ -3027,77 +3027,77 @@ msgstr "O %s tem um valor inteiro demasiado elevado ou pequeno, foi ignorado\n"
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "falta um { depois do %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "falta um } depois do %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "formato da opção em branco"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "nome da opção em branco"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "opção desconhecida"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] esperado no fim do vector"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "] inesperado"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "} inesperado"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "esperado um ? na expressão"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "esperado um { a seguir ao ? na expressão"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "esperado um } na expressão"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "esperado um : a seguir à sub-expressão ?"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "esperado um { a seguir ao : na expressão"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "esperado um | no fim da expressão"
 
@@ -3135,150 +3135,150 @@ msgstr "n
 msgid "cannot open %s index\n"
 msgstr "não consigo abrir o índice do %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "não foi definido o dbpath\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n"
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: não consigo ler o cabeçalho em 0x%x\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "a remover o \"%s\" do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "a remover %d registos do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "erro(%d) ao remover o registo %s do %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "erro(%d) ao criar uma nova instância do pacote\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "a adicionar o \"%s\" ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "a adicionar %d registos ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "não foi definido o dbpath"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "a reconstruir a base de dados %s em %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "A base de dados temporária %s já existe\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr "a criar a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "a criar a directoria %s: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "a abrir a base de dados antiga com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "a abrir a base de dados nova com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "o número do registo %u na base de dados está errado -- a ignorar.\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "não consigo adicionar o registo originalmente em %u\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "falhou a reconstrução da base de dados: a base de dados original mantém-se\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "falhou a substituição da base de dados antiga pela nova!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "a remover a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "falhou a remoção da directoria %s: %s\n"
index 7fb0dfd..39f6886 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\n"
 
 #: build.c:40
 #, fuzzy
@@ -913,7 +913,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -948,7 +948,7 @@ msgstr "No consegui abrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1579,81 +1579,81 @@ msgstr ""
 msgid " failed - "
 msgstr "Construo falhou.\n"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "pesquise todos os pacotes"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1665,11 +1665,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "desconsidere quaisquer assinaturas PGP"
@@ -1702,50 +1702,50 @@ msgstr "No consegui abrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1768,43 +1768,43 @@ msgstr "No consegui abrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
 # , c-format
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
 # , c-format
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2290,351 +2290,351 @@ msgstr "gere assinatura PGP"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 #, fuzzy
 msgid "not installed "
 msgstr "no foi passado pacote para instalao"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "no foram passados pacotes para assinatura"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "pesquise todos os pacotes"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "no foram passados pacotes para assinatura"
 
 # , c-format
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "no foram passados pacotes para assinatura"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
@@ -2646,13 +2646,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2665,7 +2665,7 @@ msgstr "No consegui abrir: %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "RPM verso %s\n"
@@ -2678,28 +2678,28 @@ msgstr "RPM verso %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "no foi passado pacote para instalao"
@@ -2712,86 +2712,86 @@ msgstr "no foi passado pacote para instalao"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
 # , c-format
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "no foi passado pacote para desinstalao"
@@ -2802,35 +2802,35 @@ msgstr "no foi passado pacote para desinstalao"
 msgid "read failed: %s (%d)\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -3011,164 +3011,164 @@ msgid "Unable to open %s for reading: %s.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 # , c-format
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "Construo falhou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "Construo falhou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "instale pacote"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "desconsidere quaisquer assinaturas MD5"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3182,17 +3182,17 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "lista dependncias do pacote"
@@ -3277,79 +3277,79 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 #, fuzzy
 msgid "unexpected ]"
 msgstr "fonte de pesquisa no esperado"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 #, fuzzy
 msgid "unexpected }"
 msgstr "fonte de pesquisa no esperado"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3389,150 +3389,150 @@ msgstr "No consegui abrir: %s\n"
 msgid "cannot open %s index\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
@@ -3545,13 +3545,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
index 048ce48..faabc85 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1405,77 +1405,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1487,11 +1487,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1520,46 +1520,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1579,41 +1579,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2041,451 +2041,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2495,35 +2495,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2696,170 +2696,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2944,77 +2944,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3050,149 +3050,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index ebc77d7..099fdab 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -817,7 +817,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -847,7 +847,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,77 +1411,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1493,11 +1493,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1526,46 +1526,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1585,41 +1585,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2047,451 +2047,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2501,35 +2501,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2702,170 +2702,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2950,77 +2950,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3056,149 +3056,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index 10c9a6b..ca69f4e 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\n"
 "PO-Revision-Date: 2002-04-09 16:44-0400\n"
 "Last-Translator: Eugene Kanter, <eugene@bcl.bz>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -837,7 +837,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -867,7 +867,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -1444,57 +1444,57 @@ msgstr "
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s YES (rpmrc provides)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s YES (rpmlib provides)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
@@ -1502,26 +1502,26 @@ msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(ÎÅ ÞÉÓÌÏ)"
 
@@ -1533,11 +1533,11 @@ msgstr "(
 msgid "(invalid type)"
 msgstr "(ÎÅÐÒÁ×ÉÌØÎÙÊ ÔÉÐ)"
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ PGP-ÐÏÄÐÉÓÉ"
@@ -1567,47 +1567,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -1627,41 +1627,41 @@ msgstr "
 msgid "error creating temporary file %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM\n"
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n"
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
@@ -2109,319 +2109,319 @@ msgstr "
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "ÎÏÒÍÁÌØÎÙÊ    "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "ÚÁÍÅÎÅÎÎÙÊ    "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅΠ"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "ÓÅÔÅ×ÏÊ       "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(ÓÏÓÔ. ÎÅÔ)   "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ÎÅÉÚ×. %3d)  "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ÎÉ ÏÄÉΠÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "ÚÁÐÒÏÓ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ÎÉ ÏÄÉΠÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "ÆÁÊÌ %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s YES (added provide)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "ÏÛÉÂËÁ makeTempFile\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fwrite: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ writeLead: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "îå ïë"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (ïôóõôóô÷õàô ëìàþé:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (îåô äï÷åòéñ ë ëìàþáí:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "ïë"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "îåT"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "äá"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2430,136 +2430,136 @@ msgstr ""
 "ÄÌÑ ÚÁ×ÉÓÉÍÏÓÔÉ \"B\" ÎÕÖÎÏ ÕËÁÚÁÔØ \"epoch\" (ÔÁË ÖÅ ËÁË ÄÌÑ \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÔÒÅÂÏ×ÁÎÉÑ: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "ÏÔËÁÔÉÔØ (+%d,-%d) ÐÁËÅÔÙ Ë %s"
@@ -2569,35 +2569,35 @@ msgstr "
 msgid "read failed: %s (%d)\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2772,175 +2772,175 @@ msgstr "
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr "ïÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "æÁËÔÉÞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "ÏÛÉÂËÁ pgp\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "ÏÛÉÂËÁ gpg\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ SHA1 ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr "ëÏÎÔÒ. ÓÕÍÍÁ MD5 ÐÏ×ÒÅÖÄÅÎÁ: îå ðïääåòöé÷áåôóñ\n"
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
@@ -3026,77 +3026,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉΠÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"?\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \"{\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"}\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÏÓØ \"{\""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
 
@@ -3134,150 +3134,150 @@ msgstr "
 msgid "cannot open %s index\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: ÐÏÌÕÞÅΠÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
index 4a16404..83caaeb 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -851,7 +851,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -881,7 +881,7 @@ msgstr "Nie je mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -1465,81 +1465,81 @@ msgstr ""
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "Poskytuje:"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstraòuje sa index skupín\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(nie je èíslo)"
 
@@ -1552,12 +1552,12 @@ msgstr "(nie je 
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(nie je èíslo)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "vynecha» akékoµvek PGP podpisy"
@@ -1587,46 +1587,46 @@ msgstr "nepodarilo sa otvori
 msgid "file %s is on an unknown device\n"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -1646,43 +1646,43 @@ msgstr "nie je mo
 msgid "error creating temporary file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis nie je k dispozícii\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
@@ -2161,461 +2161,461 @@ msgstr "vytvori
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "chyba formátu: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾iadne súbory)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normálny      "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "nahradený     "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "nein¹talovaný "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "zdieµaný      "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(¾iadny stav) "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámy %d)  "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, 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:313
+#: lib/query.c:312
 #, 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:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "otázka na %s zlyhala\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 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:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾iadne balíky\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Nie je mo¾né preèíta» %s: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾iadny z balíkov nevy¾aduje %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾iadny z balíkov neposkytuje %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, 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:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "po¾aduje sa záznam èíslo %d\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, 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:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otvorenie zlyhalo\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, 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:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, 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:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (CHÝBAJÚCE K¥ÚÈE):"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "V PORIADKU"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, 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:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2625,35 +2625,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "èítanie zlyhalo: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2827,180 +2827,180 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp zlyhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Veµkos» PGP podpisu: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie je mo¾né preèíta» podpis"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg zlyhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Veµkos» GPG podpisu: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Priveµká hlavièka"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
@@ -3085,78 +3085,78 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 #, fuzzy
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "chýbajúce { po %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "chýbajúce } po %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "prázdny tag formát"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "prázdne meno tagu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "neznámy tag"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] oèakávané na konci poµa"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "neoèakávané ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "neoèakávané }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "? oèakávané vo výraze"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "{ oèakávané po ? vo výraze"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "} oèakávané vo výraze"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ": oèakávané po ? podvýraze"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "{ oèakávané po : vo výraze"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "| oèakávené na konci výrazu"
 
@@ -3194,151 +3194,151 @@ msgstr "nie je mo
 msgid "cannot open %s index\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otvára sa stará databáza\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otvára sa nová databáza\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
index 70ec333..109e9c2 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,12 +1,12 @@
 # -*- 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.278 2002/07/12 21:59:59 jbj Exp $
+# $Id: sl.po,v 1.279 2002/07/13 19:09:37 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -850,7 +850,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -880,7 +880,7 @@ msgstr "Ikone %s ni mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1467,82 +1467,82 @@ msgstr ""
 msgid " failed - "
 msgstr " neuspe¹no - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "ni paketov\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(ni ¹tevilo)"
 
@@ -1555,12 +1555,12 @@ msgstr "(ni 
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(ni ¹tevilo)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "preskoèi vse podpise PGP"
@@ -1590,46 +1590,46 @@ msgstr "neuspe
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -1649,43 +1649,43 @@ msgstr "pisanje na %s ni mo
 msgid "error creating temporary file %s\n"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis ni na voljo\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
@@ -2161,324 +2161,324 @@ msgstr "izdelava podpisa PGP/GPG"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, 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:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "napaka v obliki: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(ne vsebuje datotek)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normalno      "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "nadome¹èeno   "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "ni name¹èeno  "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "omre¾ni       "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(brez stanja) "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznano %3d) "
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no poizvedeti o %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "poizvedba po %s je bila neuspe¹na\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "poizvedba po datoteki spec. %s je bila neuspe¹na, razèlemba ni mo¾na\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "ni paketov\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s ne vsebuje nobenega paketa\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Neuspe¹no branje %s: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "noben paket ne potrebuje %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "noben paket ne nudi %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ni del nobenega paketa\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neveljavna ¹tevilka paketa: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¹tevilka zapisa paketa: %d\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s DA (dodane ponudbe)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: odpiranje je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: pisanje Fwrite je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Podpis RPM v1.0 ni mo¾en\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead je bil neuspe¹en: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "NI DOBRO"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (MANJKAJOÈI KLJUÈI:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEPREVERJENI KLJUÈI:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "V REDU"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2487,137 +2487,137 @@ msgstr ""
 "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "premiokanje imenika %s v %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "paketi za namestitev niso navedeni"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2627,35 +2627,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "branje je bilo neuspe¹no: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2830,180 +2830,180 @@ msgstr "Ni mo
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s ni mo¾no odpreti za branje: %s."
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Stari podpis PGP\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Dol¾. podpisa : %d\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp je bil neuspe¹en"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp je bil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Dol¾. podpisa PGP: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "branje podpisa je bilo neuspe¹no"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Prebrano %d bajtov podpisa PGP\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg je bil neuspe¹en"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg je boil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Dol¾. podpisa GnuPG: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Prebrano %d bajtov podpisa GnuPG\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Glava je predolga"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi vse podpise MD5"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
@@ -3090,78 +3090,78 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 #, fuzzy
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "manjkajoèi { za %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "manjkajoèi } za %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "oblika znaèke manjka"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "ime znaèke manjka"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "neznana znaèka"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "na koncu polja je prièakovan ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "neprièakovan ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "neprièakovan }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "v izrazu je prièakovan ?"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "v izrazu je za { prièakovan ?"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "v izrazu je prièakovan }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "za podizrazom ? je prièakovano :"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "v izrazu je za : prièakovan {"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "na koncu izraza je prièakovan |"
 
@@ -3199,153 +3199,153 @@ msgstr "ni mo
 msgid "cannot open %s index\n"
 msgstr "ni mo¾no odpreti kazala %s:"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ni mo¾no prebrati glave pri 0x%x"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjevanje \"%s\" iz kazala %s.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstranjevanje %d vnosov iz kazala %s\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "napaka(%d) pri brisanju zapisa %s iz %s"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "napaka(%d) pri iskanju paketa %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "dodajanje \"%s\" v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "dodajanje %d vnosov v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "odpiranje stare podatkovne zbirke\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno."
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "zapisa ni mo¾no dodati na %d"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n"
 "istem mestu\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "odstranjevanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspe¹na odstranitev imenika %s: %s\n"
index 8be0cfd..5473e46 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -838,7 +838,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -868,7 +868,7 @@ msgstr "Ne mogu da upi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1454,80 +1454,80 @@ msgstr ""
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "upit nad svim paketima"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(nije broj)"
 
@@ -1540,12 +1540,12 @@ msgstr "(nije broj)"
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(nije broj)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "preskoèi sve PGP potpise"
@@ -1575,46 +1575,46 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1634,43 +1634,43 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "error creating temporary file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 #, 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:239
+#: lib/package.c:237
 #, 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
@@ -2154,462 +2154,462 @@ msgstr "napravi PGP potpis"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(nema datoteka)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 #, fuzzy
 msgid "not installed "
 msgstr "paket %s nije instaliran\n"
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(nepoznat tip)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, fuzzy
 msgid "package has not file owner/group lists\n"
 msgstr "paket nema imena"
 
-#: lib/query.c:313
+#: lib/query.c:312
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paket nema imena"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 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:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 #, fuzzy
 msgid "no packages\n"
 msgstr "upit nad svim paketima"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "nijedan paket ne zahteva %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "nijedan paket ne obezbeðuje %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, 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:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "neodstaje paket za deinstalaciju"
@@ -2619,35 +2619,35 @@ msgstr "neodstaje paket za deinstalaciju"
 msgid "read failed: %s (%d)\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2821,181 +2821,181 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Stari (interni) potpis!  Odakle vam!?"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "PGP omanuo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "ne mogu da proèitam potpis"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "PGP omanuo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "instaliraj paket"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi sve MD5 potpise"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
@@ -3080,79 +3080,79 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "nedostaje { posle %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "nedostaje } posle %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "prazan 'tag' format'"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "prazno ime tag-a"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "nepoznat tag"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] oèekivano na kraju niza"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "neoèekivano ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "neoèekivano }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "oèekivan znak ? u izrazu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "{ oèekivano posle ? u izrazu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "} oèekivano u izrazu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "oèekivano : praæeno ? podizrazom"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "{ oèekivano posle : u izrazu"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "| oèekivano na kraju izraza"
 
@@ -3190,150 +3190,150 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "cannot open %s index\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
index a57c122..f2f632a 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\n"
 "PO-Revision-Date: 2002-07-11 22:49+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -824,7 +824,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -854,7 +854,7 @@ msgstr "Kan inte l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1425,52 +1425,52 @@ msgstr "Ingen arkivfilen i huvud"
 msgid " failed - "
 msgstr " misslyckades - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s är redan tillagt, ersäetter med %s\n"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr "(cachad)"
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr "(rpmrc tillhandahåller)"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr "(rpmlib tillhandahåller)"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr "(db-filer)"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr "(db tillhandahåller)"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr "(db-paket)"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n"
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tar bort %s \"%s\" från tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
@@ -1478,26 +1478,26 @@ msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
 "djup)\n"
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr "rpmtsOrder misslyckades, %d element återstår\n"
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(inte ett tal)"
 
@@ -1509,11 +1509,11 @@ msgstr "(inte base64)"
 msgid "(invalid type)"
 msgstr "(felaktig typ)"
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr "(inte en klick)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "Gammal PGP-signatur\n"
@@ -1543,46 +1543,46 @@ msgstr "kunde inte 
 msgid "file %s is on an unknown device\n"
 msgstr "filen %s är på en okänd enhet\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr "%10d %s\n"
 
-#: lib/fsm.c:1244
+#: 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:1539
+#: lib/fsm.c:1537
 #, 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:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -1602,41 +1602,41 @@ msgstr "kan inte skriva till %%%s %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fel när tämporärfil %s skapades\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 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:239
+#: lib/package.c:237
 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature misslyckades\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tillgänglig\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: headerRead misslyckades\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr "endast V3-signaturer kan verifieras, hoppar över V%u-signatur"
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
@@ -2070,317 +2070,317 @@ msgstr "generera signatur"
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör %s-skript\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s har %d filer, test = %d\n"
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "fel format: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(innehåller inga filer)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "ersatt        "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "oinstallerat  "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "nätdelad      "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(ej tillstnd) "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(okänd %3d)   "
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr "paketet har inte filägare-/-grupplistor\n"
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr "paketet har varken filägare eller id-listor\n"
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga %s: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades med att öppna %s: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "fråga av %s misslyckades\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 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:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s: inte en paketlastspecifikation: %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "fråga av specfil %s misslyckades, kan inte tolka\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "inga paket\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupp %s innehåller inga paket\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "inga paketutlösare %s\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr "felformaterad %s: %s\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr "inga paket matchar %s: %s\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "inget paket behöver %s\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "inget paket tillhandahåller %s\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s tillhör inget paket\n"
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "felaktigt paketnummer: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "paketpost nummer: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr "(lade till filer)"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr "(lade till tillhandahållande)"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: open misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile misslyckades\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kan inte signera v1-paketering\n"
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: Kan inte signera om v2 paketering\n"
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: importläsning misslyckades.\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr "%s: inte en publik nyckel med skal.\n"
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: base64-kodning misslyckades.\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: headerGetEntry misslyckades\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "EJ OK"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (SAKNADE NYCKLAR:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (EJ BETRODDA NYCKLAR:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "JA"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2389,135 +2389,135 @@ msgstr ""
 "\"B\"-beroendet behöver en epok (antar samma som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s har ouppfyllda %s: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== omflyttningar\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d utesluter  %s\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d flyttar om %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "hoppar över multilib-sökväg %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "hoppar över %s %s\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "Förbereder..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "Förbereder paket för installation ..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr "Ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr "    Föreslagna lösningar:\n"
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr "återställer %d paket till %s"
@@ -2527,35 +2527,35 @@ msgstr "
 msgid "read failed: %s (%d)\n"
 msgstr "läsning misslyckades: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr "PreReq:, Provides:, and Obsoletes:-beroenden stödjer versioner."
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr "filnamn lagrade som (katNamn,basNam,katIndex)-tupel, inte som sökväg."
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr "paketlast är komprimerad med bzip2."
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr "paketlastfiler har \"./\"-prefix."
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr "paketets namn-version-utgåva tillhandahålls inte implicit."
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr "huvudtaggar sorteras alltid efter att ha lästs in."
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr "skriptinterpretatorn kan använda argument från huvudet."
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr "en hårdlänkad filuppsättning får installeras utan att vara komplett."
 
@@ -2728,172 +2728,172 @@ msgstr "Kan inte l
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kan inte öppna %s för läsning: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "hämtar lista över monterade filsystem\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 "Förväntad storlek: %12d = inledning(%d)+signaturer(%d)+utfyllnad(%d)+data(%"
 "d)\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk storlek: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Gammal PGP-signatur\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Gammal (endast intern) signatur!  Hur fick du tag i den!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "pgp misslyckades\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "pgp misslyckades att skriva en signatur\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP signaturstorlek: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "kan inte läsa signaturen\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fick %d byte PGP-signatur\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "gpg misslyckades\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunde inte skriva signatur\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstorlek: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Fick %d byte GPG-signatur\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Felaktig %%_signature-spec i makrofil\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr "Huvud+laststorlek: "
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr "MD5-summa: "
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr "Huvudets SHA1-summa: "
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr "V3 RSA/MD5-signatur: "
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr "Huvud "
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr "V3 DSA-signatur: "
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr "Verifiera signatur: FELAKTIGA PARAMETRAR\n"
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr "Trasig MD5-summa: STÖDS EJ\n"
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: OKÄND (%d)\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "saknas     %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ouppfyllda beroenden för %s: "
@@ -2978,77 +2978,77 @@ msgstr "%s har f
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "{ fattas efter %"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "} fattas efter %{"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "tomt taggformat"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "tomt taggnamn"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "okänd tagg"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "] förväntades vid slutet på vektor"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "oväntad ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "oväntad }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "? förväntades i uttryck"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "{ förväntades efter ? i uttryck"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "} förväntades i uttryck"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ": förväntades efter ? i deluttryck"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "{ förväntades efter : i uttryck"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "| förväntades vid slutet på uttryck"
 
@@ -3084,149 +3084,149 @@ msgstr "kan inte 
 msgid "cannot open %s index\n"
 msgstr "kan inte öppna %s-indexet\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "ingen dbpath har satts\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fel(%d) när post nr. %d sparades i %s\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n"
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan inte läsa huvud vid 0x%x\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fel(%d) när huvudpost nr. %d  för %s skulle tas bort\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort \"%s\" från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "tar bort %d poster från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster från %s-indexet sattes\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fel(%d) när post \"%s\" sparades i %s\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fel(%d) när post \"%s\" togs bort från %s\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fel(%d) vid allokering av ny paketinstans\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "lägger till \"%s\" till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "lägger till %d poster till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fel(%d) när post %s sparades i %s\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "tar bort %s efter lyckad db3-ombyggnad.\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "bygger om databas %s till %s\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tillfällig databas %s existerar redan\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr "skapar katalog %s\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "skapar katalog %s: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "öppnar gammal databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "öppnar ny databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kan inte lägga till post ursprungligen vid %u\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "byt ut filer i %s med filer från %s för att återställa"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "tar bort katalog %s\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunde inte ta bort katalogen %s: %s\n"
index e14f3ee..7954873 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -840,7 +840,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -870,7 +870,7 @@ msgstr "%s'den payload okunamad
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -1450,57 +1450,57 @@ msgstr ""
 msgid " failed - "
 msgstr " baþarýsýz - "
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s zaten kurulu"
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 #, fuzzy
 msgid "(db package)"
 msgstr "paket yok\n"
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1508,26 +1508,26 @@ msgid ""
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr "(bir sayý deðil)"
 
@@ -1540,12 +1540,12 @@ msgstr "(bir say
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 #, fuzzy
 msgid "(not a blob)"
 msgstr "(bir sayý deðil)"
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 #, fuzzy
 msgid "(not a OpenPGP signature"
 msgstr "tüm PGP imzalarýný atlar"
@@ -1575,47 +1575,47 @@ msgstr "%s a
 msgid "file %s is on an unknown device\n"
 msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n"
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1244
+#: 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:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, 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:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -1635,43 +1635,43 @@ msgstr "%%%s dosyas
 msgid "error creating temporary file %s\n"
 msgstr "%s geçici dosyasý oluþturulurken hata\n"
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:231
+#: lib/package.c:229
 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:239
+#: lib/package.c:237
 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:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature baþarýsýz\n"
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ýmza bulundurmuyor\n"
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
@@ -2126,319 +2126,319 @@ msgstr "imza 
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n"
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s 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:1181
+#: lib/psm.c:1179
 #, 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:1303
+#: lib/psm.c:1301
 #, 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:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, 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:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "biçem yanlýþ: %s\n"
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr "(hiç dosya içermiyor)"
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr "yerine        "
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr "yüklenmedi "
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr "að paylaþýmlý "
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr "(durumsuz)    "
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(bilinmeyen %3d)"
 
-#: lib/query.c:280
+#: lib/query.c:279
 #, 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:313
+#: lib/query.c:312
 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:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s sorgulanamýyor: %s\n"
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s tetikleyen paket yok\n"
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s spec dosyasýnýn sorgulanmasý baþarýsýz, çözümlenemiyor\n"
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr "paket yok\n"
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s grubu hiç paket içermiyor\n"
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s tetikleyen paket yok\n"
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s okunamadý: %s.\n"
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s tetikleyen paket yok\n"
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s gerektiren paket yok\n"
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s saðlayan paket yok\n"
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr "dosya %s: %s\n"
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, 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:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "geçersiz paket numarasý: %s\n"
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr "paket kayýt numarasý: %u\n"
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 #, fuzzy
 msgid "(added files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (önlem eklendi)\n"
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: açýlamadý: %s\n"
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile baþarýsýz\n"
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, 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:218
+#: lib/rpmchecksig.c:220
 #, 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:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, fuzzy, c-format
 msgid "%s: import read failed.\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, fuzzy, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr "TAMAM DEÐÝL"
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr " (EKSÝK ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr " (GÜVENCESÝZ ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr "Tamam"
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr "EVET"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, fuzzy, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2447,136 +2447,136 @@ msgstr ""
 "\"B\" baðýmlýlýðý bir dönemsellik gerektirir (tabii ki \"A\" da)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr "========== yeniden konumlama\n"
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d %s'i dýþlýyor\n"
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s dýþlanýyor\n"
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s %s'e konumlanýyor\n"
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizini %s de yeniden konumlanýyor\n"
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr "Hazýrlanýyor..."
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr "Kurulacak paketler hazýrlanýyor..."
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, 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:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, 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:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2586,35 +2586,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "okuma baþarýsýz: %s (%d)\n"
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2788,174 +2788,174 @@ msgstr "%s okunam
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr "dosya normal deðil -- uzunluk denetimi atlanýyor\n"
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr "gereken boyut: %12d = (%d)uç+(%d)imza+(%d)iz+(%d)veri\n"
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Gerçek boyut: %12d\n"
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr "Eski PGP imzasý\n"
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Eski imza !!! Bunu nasýl aldýn!?\n"
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr "pgp hata verdi\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n"
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP imza uzunluðu: %d\n"
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr "imza okunamadý\n"
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "GPG imzasýnýn %d baytý alýndý\n"
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr "gpg hata verdi\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n"
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG imza uzunluðu: %d\n"
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "GPG imzasýnýn %d baytý alýndý\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Makro dosyasýnda %%_signature spec geçersiz\n"
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Makro dosyanýzda \"%%_pgp_name\" tanýmlanmýþ olmalý\n"
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Baþlýk çok uzun"
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 #, fuzzy
 msgid "Header SHA1 digest: "
 msgstr "Baþlýk SHA1 özümlemesi doðrulanmaz"
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "tüm MD5 imzalarýný atlar"
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:106
+#: 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:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "eksik      %s"
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
@@ -3040,77 +3040,77 @@ msgstr "%s ya 
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr "%% den sonraki { yok"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr "%%{ den sonraki } yok"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr "etiket biçemi boþ"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr "etiket ismi boþ"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr "bilinmeyen etiket"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr "dizinin sonunda ] gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr "beklenmeyen ]"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr "beklenmeyen }"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr "ifade içerisinde ? gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr "ifade içerisinde ? dan sonra { gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr "ifade içinde } gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr "? alt ifadesinden sonra : gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr "ifade içersinde : den sonra { gerekli"
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr "ifadenin sonunda | gerekli"
 
@@ -3146,151 +3146,151 @@ msgstr "%s indeksi db%d - %s (%d) kullanarak a
 msgid "cannot open %s index\n"
 msgstr "%s indeksi açýlamadý\n"
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr "belirtilmiþ bir dbpath deðeri yok\n"
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n"
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%x de baþlýk okunamadý\n"
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "\"%s\" %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%d girdi %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n"
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "yeni paket örneðini tutma hatasý(%d)\n"
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "\"%s\" %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%d girdi %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n"
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr "belirtilmiþ bir dbpath yok"
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "geçici veritabaný %s zaten mevcut\n"
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s dizini oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s dizini oluþturuluyor: %s\n"
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "eski veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "yeni veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n"
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kayýt özgün olarak %u e eklenemedi\n"
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n"
 "yerinde býrakýldý\n"
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n"
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor"
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s dizini siliniyor\n"
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s dizininin silinmesi baþarýsýz: %s\n"
index a9f5675..4ed2edd 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index a9f5675..4ed2edd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-12 18:01-0400\n"
+"POT-Creation-Date: 2002-07-13 15:09-0400\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"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:629 lib/psm.c:1396
+#: build/pack.c:629 lib/psm.c:1394
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:710 lib/psm.c:1686
+#: build/pack.c:710 lib/psm.c:1684
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1410,77 +1410,77 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:167
+#: lib/depends.c:162
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:393
+#: lib/depends.c:388
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:436
+#: lib/depends.c:431
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:458
+#: lib/depends.c:453
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:471
+#: lib/depends.c:466
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:484
+#: lib/depends.c:479
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:828
+#: lib/depends.c:823
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:950
+#: lib/depends.c:945
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1228
+#: lib/depends.c:1177
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1334
+#: lib/depends.c:1278
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1427
+#: lib/depends.c:1361
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1497
+#: lib/depends.c:1431
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1532
+#: lib/depends.c:1466
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1537
+#: lib/depends.c:1471
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
-#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:377
-#: rpmdb/header.c:3136 rpmdb/header.c:3159 rpmdb/header.c:3183
+#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:383
+#: rpmdb/header.c:3122 rpmdb/header.c:3145 rpmdb/header.c:3169
 msgid "(not a number)"
 msgstr ""
 
@@ -1492,11 +1492,11 @@ msgstr ""
 msgid "(invalid type)"
 msgstr ""
 
-#: lib/formats.c:233 lib/formats.c:280
+#: lib/formats.c:233 lib/formats.c:282
 msgid "(not a blob)"
 msgstr ""
 
-#: lib/formats.c:303
+#: lib/formats.c:307
 msgid "(not a OpenPGP signature"
 msgstr ""
 
@@ -1525,46 +1525,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:334
+#: lib/fsm.c:332
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:336
+#: lib/fsm.c:334
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1244
+#: lib/fsm.c:1242
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1539
+#: lib/fsm.c:1537
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1666 lib/fsm.c:1798
+#: lib/fsm.c:1664 lib/fsm.c:1796
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1824
+#: lib/fsm.c:1822
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1830
+#: lib/fsm.c:1828
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1840
+#: lib/fsm.c:1838
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1860
+#: lib/fsm.c:1858
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1584,41 +1584,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:216 lib/rpmchecksig.c:209 lib/rpmchecksig.c:666
+#: lib/package.c:214 lib/rpmchecksig.c:211 lib/rpmchecksig.c:668
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:231
+#: lib/package.c:229
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:239
+#: lib/package.c:237
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:248 lib/rpmchecksig.c:227 lib/rpmchecksig.c:682
+#: lib/package.c:246 lib/rpmchecksig.c:229 lib/rpmchecksig.c:684
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:252 lib/rpmchecksig.c:231 lib/rpmchecksig.c:687
+#: lib/package.c:250 lib/rpmchecksig.c:233 lib/rpmchecksig.c:689
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:298 lib/rpmchecksig.c:585
+#: lib/package.c:296 lib/rpmchecksig.c:587
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:758
+#: lib/package.c:331 lib/package.c:356 lib/package.c:386 lib/rpmchecksig.c:760
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:614
+#: lib/package.c:398 lib/rpmchecksig.c:121 lib/rpmchecksig.c:616
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2046,451 +2046,451 @@ msgstr ""
 
 #. @=boundsread@
 #. @-modfilesys@
-#: lib/psm.c:246 rpmdb/header.c:401 rpmdb/header_internal.c:164
+#: lib/psm.c:244 rpmdb/header.c:387 rpmdb/header_internal.c:164
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:442
+#: lib/psm.c:440
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:561
+#: lib/psm.c:559
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:681
+#: lib/psm.c:679
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:851
+#: lib/psm.c:849
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:858
+#: lib/psm.c:856
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1181
+#: lib/psm.c:1179
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1303
+#: lib/psm.c:1301
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1447
+#: lib/psm.c:1445
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1456
+#: lib/psm.c:1454
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1498
+#: lib/psm.c:1496
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1499
+#: lib/psm.c:1497
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1694
+#: lib/psm.c:1692
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1697
+#: lib/psm.c:1695
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:123 lib/rpmts.c:286
+#: lib/query.c:122 lib/rpmts.c:285
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
 #. @-boundswrite@
-#: lib/query.c:182
+#: lib/query.c:181
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:247
+#: lib/query.c:246
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:250
+#: lib/query.c:249
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:253
+#: lib/query.c:252
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:256
+#: lib/query.c:255
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:259
+#: lib/query.c:258
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:262
+#: lib/query.c:261
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:280
+#: lib/query.c:279
 msgid "package has not file owner/group lists\n"
 msgstr ""
 
-#: lib/query.c:313
+#: lib/query.c:312
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:407
+#: lib/query.c:406
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:566 lib/query.c:600 lib/rpminstall.c:362 lib/rpminstall.c:493
-#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:361 lib/rpminstall.c:492
+#: lib/rpminstall.c:874 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:578
+#: lib/query.c:577
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:584
+#: lib/query.c:583
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:610 lib/rpminstall.c:506
+#: lib/query.c:609 lib/rpminstall.c:505
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:653
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:675
+#: lib/query.c:674
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:695
+#: lib/query.c:694
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:705
+#: lib/query.c:704
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:719 lib/query.c:741 lib/query.c:762 lib/query.c:797
+#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:729 lib/query.c:747 lib/query.c:772 lib/query.c:802
+#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:813
+#: lib/query.c:812
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:824
+#: lib/query.c:823
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:858
+#: lib/query.c:857
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:862
+#: lib/query.c:861
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:889
+#: lib/query.c:888
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:892
+#: lib/query.c:891
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:897
+#: lib/query.c:896
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:908 lib/rpminstall.c:660
+#: lib/query.c:907 lib/rpminstall.c:659
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:698
+#: lib/rpmal.c:696
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:775
+#: lib/rpmal.c:773
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:60
+#: lib/rpmchecksig.c:59
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:72
+#: lib/rpmchecksig.c:71
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116
+#: lib/rpmchecksig.c:115
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:214
+#: lib/rpmchecksig.c:216
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:218
+#: lib/rpmchecksig.c:220
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:318
+#: lib/rpmchecksig.c:320
 #, c-format
 msgid "%s: was already signed by key ID %s, skipping\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:348
+#: lib/rpmchecksig.c:350
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:354
+#: lib/rpmchecksig.c:356
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:447
+#: lib/rpmchecksig.c:449
 #, c-format
 msgid "%s: import read failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:452
+#: lib/rpmchecksig.c:454
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:457
+#: lib/rpmchecksig.c:459
 #, c-format
 msgid "%s: base64 encode failed.\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:599
+#: lib/rpmchecksig.c:601
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:672
+#: lib/rpmchecksig.c:674
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:920
+#: lib/rpmchecksig.c:922
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:921 lib/rpmchecksig.c:935
+#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:923 lib/rpmchecksig.c:937
+#: lib/rpmchecksig.c:925 lib/rpmchecksig.c:939
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:924 lib/rpmchecksig.c:938
+#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:926 lib/rpmchecksig.c:940
+#: lib/rpmchecksig.c:928 lib/rpmchecksig.c:942
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:934
+#: lib/rpmchecksig.c:936
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:449 lib/rpmds.c:616
+#: lib/rpmds.c:448 lib/rpmds.c:615
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:584
+#: lib/rpmds.c:583
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:615
+#: lib/rpmds.c:614
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:639
+#: lib/rpmds.c:638
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:609
+#: lib/rpmfi.c:607
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:613
+#: lib/rpmfi.c:611
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:616
+#: lib/rpmfi.c:614
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:686
+#: lib/rpmfi.c:684
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:752
+#: lib/rpmfi.c:750
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:762
+#: lib/rpmfi.c:760
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:841
+#: lib/rpmfi.c:839
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:167
+#: lib/rpminstall.c:166
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:169
+#: lib/rpminstall.c:168
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:309
+#: lib/rpminstall.c:308
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:322
+#: lib/rpminstall.c:321
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:325
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:417
+#: lib/rpminstall.c:416
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:466
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:473
+#: lib/rpminstall.c:472
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
+#: lib/rpminstall.c:484 lib/rpminstall.c:730 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:521
+#: lib/rpminstall.c:520
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: lib/rpminstall.c:534 lib/rpminstall.c:687 lib/rpminstall.c:1061
 #: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 tools/rpmgraph.c:208
+#: lib/rpminstall.c:541 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:572
+#: lib/rpminstall.c:571
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:593
+#: lib/rpminstall.c:592
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:663
+#: lib/rpminstall.c:662
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:718
+#: lib/rpminstall.c:717
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:723
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1056
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,35 +2500,35 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
-#: lib/rpmlibprov.c:30
+#: lib/rpmlibprov.c:29
 msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
 msgstr ""
 
-#: lib/rpmlibprov.c:33
+#: lib/rpmlibprov.c:32
 msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
 msgstr ""
 
-#: lib/rpmlibprov.c:36
+#: lib/rpmlibprov.c:35
 msgid "package payload is compressed using bzip2."
 msgstr ""
 
-#: lib/rpmlibprov.c:39
+#: lib/rpmlibprov.c:38
 msgid "package payload file(s) have \"./\" prefix."
 msgstr ""
 
-#: lib/rpmlibprov.c:42
+#: lib/rpmlibprov.c:41
 msgid "package name-version-release is not implicitly provided."
 msgstr ""
 
-#: lib/rpmlibprov.c:45
+#: lib/rpmlibprov.c:44
 msgid "header tags are always sorted after being loaded."
 msgstr ""
 
-#: lib/rpmlibprov.c:48
+#: lib/rpmlibprov.c:47
 msgid "the scriptlet interpreter can use arguments from header."
 msgstr ""
 
-#: lib/rpmlibprov.c:51
+#: lib/rpmlibprov.c:50
 msgid "a hardlink file set may be installed without being complete."
 msgstr ""
 
@@ -2701,170 +2701,170 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:136 lib/rpmts.c:193
+#: lib/rpmts.c:135 lib/rpmts.c:192
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:584
+#: lib/rpmts.c:583
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:134
+#: lib/signature.c:133
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:152
+#: lib/signature.c:151
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:157
+#: lib/signature.c:156
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:179
+#: lib/signature.c:178
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:182
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:194
+#: lib/signature.c:193
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:250
+#: lib/signature.c:249
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 #. @=boundsread@
-#: lib/signature.c:341 lib/signature.c:454 lib/signature.c:733
-#: lib/signature.c:772
+#: lib/signature.c:340 lib/signature.c:453 lib/signature.c:732
+#: lib/signature.c:771
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:357
+#: lib/signature.c:356
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:364
+#: lib/signature.c:363
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:370
+#: lib/signature.c:369
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
 #. @=boundswrite@
-#: lib/signature.c:388 lib/signature.c:502
+#: lib/signature.c:387 lib/signature.c:501
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:393
+#: lib/signature.c:392
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:471
+#: lib/signature.c:470
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:478
+#: lib/signature.c:477
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:484
+#: lib/signature.c:483
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:507
+#: lib/signature.c:506
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:777 lib/signature.c:832
+#: lib/signature.c:776 lib/signature.c:831
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:809
+#: lib/signature.c:808
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:824
+#: lib/signature.c:823
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:871
+#: lib/signature.c:870
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:909
+#: lib/signature.c:908
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:960
+#: lib/signature.c:959
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1152
+#: lib/signature.c:1151
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1264
+#: lib/signature.c:1263
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1265
+#: lib/signature.c:1264
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1341
+#: lib/signature.c:1340
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1368
+#: lib/signature.c:1367
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1372
+#: lib/signature.c:1371
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:105
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:909
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:289
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:390
+#: lib/verify.c:389
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -2949,77 +2949,77 @@ msgstr ""
 
 #. This should not be allowed
 #. @-modfilesys@
-#: rpmdb/header.c:360
+#: rpmdb/header.c:346
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2312
+#: rpmdb/header.c:2298
 msgid "missing { after %"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2342
+#: rpmdb/header.c:2328
 msgid "missing } after %{"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2356
+#: rpmdb/header.c:2342
 msgid "empty tag format"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2370
+#: rpmdb/header.c:2356
 msgid "empty tag name"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2387
+#: rpmdb/header.c:2373
 msgid "unknown tag"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2414
+#: rpmdb/header.c:2400
 msgid "] expected at end of array"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2432
+#: rpmdb/header.c:2418
 msgid "unexpected ]"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2436
+#: rpmdb/header.c:2422
 msgid "unexpected }"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2505
+#: rpmdb/header.c:2491
 msgid "? expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2514
+#: rpmdb/header.c:2500
 msgid "{ expected after ? in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2527 rpmdb/header.c:2572
+#: rpmdb/header.c:2513 rpmdb/header.c:2558
 msgid "} expected in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2537
+#: rpmdb/header.c:2523
 msgid ": expected following ? subexpression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2557
+#: rpmdb/header.c:2543
 msgid "{ expected after : in expression"
 msgstr ""
 
 #. @-observertrans -readonlytrans@
-#: rpmdb/header.c:2582
+#: rpmdb/header.c:2568
 msgid "| expected at end of expression"
 msgstr ""
 
@@ -3055,149 +3055,149 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:712
+#: rpmdb/rpmdb.c:738
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1002 rpmdb/rpmdb.c:1131 rpmdb/rpmdb.c:1181 rpmdb/rpmdb.c:2064
-#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2880
+#: rpmdb/rpmdb.c:1028 rpmdb/rpmdb.c:1157 rpmdb/rpmdb.c:1207 rpmdb/rpmdb.c:2090
+#: rpmdb/rpmdb.c:2196 rpmdb/rpmdb.c:2906
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1397
+#: rpmdb/rpmdb.c:1423
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1984
+#: rpmdb/rpmdb.c:2010
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2253
+#: rpmdb/rpmdb.c:2279
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2316
+#: rpmdb/rpmdb.c:2342
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2431
+#: rpmdb/rpmdb.c:2457
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2435
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2463
+#: rpmdb/rpmdb.c:2489
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2484
+#: rpmdb/rpmdb.c:2510
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2494
+#: rpmdb/rpmdb.c:2520
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2641
+#: rpmdb/rpmdb.c:2667
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2855
+#: rpmdb/rpmdb.c:2881
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2859
+#: rpmdb/rpmdb.c:2885
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2899
+#: rpmdb/rpmdb.c:2925
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3248
+#: rpmdb/rpmdb.c:3274
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3285
+#: rpmdb/rpmdb.c:3311
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3317
+#: rpmdb/rpmdb.c:3343
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3321
+#: rpmdb/rpmdb.c:3347
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3327
+#: rpmdb/rpmdb.c:3353
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3329
+#: rpmdb/rpmdb.c:3355
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3336
+#: rpmdb/rpmdb.c:3362
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3347
+#: rpmdb/rpmdb.c:3373
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3371
+#: rpmdb/rpmdb.c:3397
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3411
+#: rpmdb/rpmdb.c:3437
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3429
+#: rpmdb/rpmdb.c:3455
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3437
+#: rpmdb/rpmdb.c:3463
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3439
+#: rpmdb/rpmdb.c:3465
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3449
+#: rpmdb/rpmdb.c:3475
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3451
+#: rpmdb/rpmdb.c:3477
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index 4ecb4ad..a875c53 100644 (file)
@@ -8,14 +8,12 @@
 #include "rpmio_internal.h"
 #include "rpmcli.h"    /* XXX for rpmCheckSig */
 
-#include "rpmps.h"
-#include "rpmfi.h"
-#include "rpmts.h"     /* XXX for ts->rpmdb */
-
 #include "legacy.h"
 #include "misc.h"
 #include "header_internal.h"
 
+#include "rpmts.h"     /* XXX rpmtsCreate/rpmtsFree */
+
 #include "header-py.h"
 #include "rpmds-py.h"
 #include "rpmfi-py.h"
@@ -144,15 +142,15 @@ static PyObject * hdrUnload(hdrObject * s, PyObject * args, PyObject *keywords)
     if (!PyArg_ParseTupleAndKeywords(args, keywords, "|i", kwlist, &legacy))
        return NULL; 
 
-    h = headerLink(s->h, "hdrUnload h");
+    h = headerLink(s->h);
     /* XXX this legacy switch is a hack, needs to be removed. */
     if (legacy) {
        h = headerCopy(s->h);   /* XXX strip region tags, etc */
-       headerFree(s->h, "hdrUnload s->h");
+       headerFree(s->h);
     }
     len = headerSizeof(h, 0);
     buf = headerUnload(h);
-    h = headerFree(h, "hdrUnload h");
+    h = headerFree(h);
 
     if (buf == NULL || len == 0) {
        PyErr_SetString(pyrpmError, "can't unload bad header\n");
@@ -449,7 +447,7 @@ static PyObject * rhnUnload(hdrObject * s, PyObject * args)
     if (!PyArg_ParseTuple(args, ""))
         return NULL;
 
-    h = headerLink(s->h, "rhnUnload h");
+    h = headerLink(s->h);
 
     /* Retrofit a RHNPlatform: tag. */
     if (!headerIsEntry(h, RPMTAG_RHNPLATFORM)) {
@@ -464,7 +462,7 @@ static PyObject * rhnUnload(hdrObject * s, PyObject * args)
        Header nh = headerReload(h, RPMTAG_HEADERIMMUTABLE);
        /* XXX Another unload/load cycle to "seal" the immutable region. */
        uh = headerUnload(nh);
-       headerFree(nh, "rhnUnload nh");
+       headerFree(nh);
        h = headerLoad(uh);
        headerAllocated(h);
     }
@@ -490,7 +488,7 @@ static PyObject * rhnUnload(hdrObject * s, PyObject * args)
 
     len = headerSizeof(h, 0);
     uh = headerUnload(h);
-    headerFree(h, "rhnUnload h");
+    headerFree(h);
 
     rc = PyString_FromStringAndSize(uh, len);
     uh = _free(uh);
@@ -583,7 +581,7 @@ static PyObject * hdr_getattr(hdrObject * s, char * name)
  */
 static void hdr_dealloc(hdrObject * s)
 {
-    if (s->h) headerFree(s->h, "hdr_dealloc s->h");
+    if (s->h) headerFree(s->h);
     s->md5list = _free(s->md5list);
     s->fileList = _free(s->fileList);
     s->linkList = _free(s->linkList);
@@ -830,7 +828,7 @@ PyTypeObject hdr_Type = {
 hdrObject * hdr_Wrap(Header h)
 {
     hdrObject * hdr = PyObject_NEW(hdrObject, &hdr_Type);
-    hdr->h = headerLink(h, NULL);
+    hdr->h = headerLink(h);
     hdr->fileList = hdr->linkList = hdr->md5list = NULL;
     hdr->uids = hdr->gids = hdr->mtimes = hdr->fileSizes = NULL;
     hdr->modes = hdr->rdevs = NULL;
@@ -868,7 +866,7 @@ PyObject * rpmHeaderFromPackage(PyObject * self, PyObject * args)
     case RPMRC_OK:
        isSource = headerIsEntry(h, RPMTAG_SOURCEPACKAGE);
        hdr = hdr_Wrap(h);
-       h = headerFree(h, NULL);        /* XXX ref held by hdr */
+       h = headerFree(h);      /* XXX ref held by hdr */
        break;
 
     case RPMRC_NOTFOUND:
@@ -916,7 +914,7 @@ PyObject * hdrLoad(PyObject * self, PyObject * args)
     providePackageNVR (h);
 
     hdr = hdr_Wrap(h);
-    h = headerFree(h, NULL);   /* XXX ref held by hdr */
+    h = headerFree(h); /* XXX ref held by hdr */
 
     return (PyObject *) hdr;
 }
@@ -949,7 +947,7 @@ PyObject * rhnLoad(PyObject * self, PyObject * args)
     /* XXX avoid the false OK's from rpmverifyDigest() with missing tags. */
     if (!headerIsEntry(h, RPMTAG_HEADERIMMUTABLE)) {
        PyErr_SetString(pyrpmError, "bad header, not immutable");
-       headerFree(h, "rhnLoad #1");
+       headerFree(h);
        return NULL;
     }
 
@@ -957,7 +955,7 @@ PyObject * rhnLoad(PyObject * self, PyObject * args)
     if (!headerIsEntry(h, RPMTAG_SHA1HEADER)
     &&  !headerIsEntry(h, RPMTAG_SHA1RHN)) {
        PyErr_SetString(pyrpmError, "bad header, no digest");
-       headerFree(h, "rhnLoad #2");
+       headerFree(h);
        return NULL;
     }
 
@@ -1001,7 +999,7 @@ PyObject * rpmReadHeaders (FD_t fd)
        }
        Py_DECREF(hdr);
 
-       h = headerFree(h, NULL);        /* XXX ref held by hdr */
+       h = headerFree(h);      /* XXX ref held by hdr */
 
        Py_BEGIN_ALLOW_THREADS
        h = headerRead(fd, HEADER_MAGIC_YES);
index 14a40d0..9eb43bb 100644 (file)
@@ -7,7 +7,6 @@
 #include "Python.h"
 
 #include <rpmlib.h>
-#include "rpmps.h"
 
 #include "rpmal-py.h"
 #include "rpmds-py.h"
index 8dc0dc7..8e689b2 100644 (file)
@@ -173,7 +173,7 @@ rpmdb_subscript(rpmdbObject * s, PyObject * key)
     }
 
     ho = hdr_Wrap(h);
-    h = headerFree(h, NULL);
+    h = headerFree(h);
 
     return ho;
 }
index f9584a9..4309478 100644 (file)
@@ -7,7 +7,6 @@
 #include "Python.h"
 
 #include <rpmlib.h>
-#include "rpmps.h"
 
 #include "header-py.h"
 #include "rpmds-py.h"
index 4c23fb6..a3827d1 100644 (file)
@@ -7,8 +7,6 @@
 #include "Python.h"
 #include "rpmcli.h"    /* XXX for rpmCheckSig */
 
-#include "rpmps.h"
-
 #include "legacy.h"
 #include "misc.h"
 #include "header_internal.h"
index 887c5a9..b9bff7a 100644 (file)
@@ -9,7 +9,6 @@
 extern PyTypeObject PyDictIter_Type;
 
 #include <rpmcli.h>
-#include "rpmps.h"
 
 #include "header-py.h"
 #include "rpmal-py.h"
index 26da8a3..b3bd7d8 100644 (file)
@@ -7,9 +7,6 @@
 #include "Python.h"
 
 #include <rpmlib.h>
-#include "rpmps.h"
-
-#include "rpmte.h"
 
 #include "header-py.h" /* XXX tagNumFromPyObject */
 #include "rpmds-py.h"
index 9d29c90..84c0f3f 100644 (file)
@@ -7,10 +7,8 @@
 #include "Python.h"
 
 #include <rpmlib.h>
-#include "rpmps.h"
 
 #include "header-py.h"
-#include "rpmal.h"
 #include "rpmdb-py.h"
 #include "rpmds-py.h"  /* XXX for rpmdsNew */
 #include "rpmfi-py.h"  /* XXX for rpmfiNew */
index bac651f..7b4cfd5 100644 (file)
@@ -17,7 +17,7 @@ Name: rpm
 %define version @VERSION@
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.47
+Release: 0.48
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -514,6 +514,10 @@ fi
 %{__prefix}/include/popt.h
 
 %changelog
+* Sat Jul 13 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.48
+- install rpmal.h and rpmhash.h, implicit rpmps.hinclude, for now.
+- revert headerFree/headerLink/headerUnlink debugging.
+
 * Fri Jul 12 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.47
 - display signature details using rpm -qi.
 - skip signing packages already signed with same key (#62118).
index 0dc40b7..90f7f7f 100644 (file)
@@ -20,8 +20,8 @@ tjfn_LDFLAGS = -all-static
 tjfn_LDADD = librpmdb.la
 
 pkgincdir = $(pkgincludedir)
-pkginc_HEADERS = db.h header.h hdrinline.h rpmdb.h
-noinst_HEADERS = fprint.h header_internal.h legacy.h rpmhash.h
+pkginc_HEADERS = db.h header.h hdrinline.h rpmdb.h rpmhash.h
+noinst_HEADERS = fprint.h header_internal.h legacy.h
 
 mylibpaths = \
        -L$(top_builddir)/lib \
index ebfb516..8a86376 100644 (file)
@@ -40,59 +40,44 @@ Header headerNew(void)
 
 /** \ingroup header
  * Dereference a header instance.
- * @todo Remove debugging entry from the ABI.
  * @param h            header
- * @param msg
- * @param fn
- * @param ln
  * @return             NULL always
  */
 /*@unused@*/ static inline
-/*@null@*/ Header XheaderFree( /*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+/*@null@*/ Header headerFree( /*@killref@*/ /*@null@*/ Header h)
        /*@modifies h @*/
 {
     /*@-abstract@*/
     if (h == NULL) return NULL;
     /*@=abstract@*/
-    return (h2hv(h)->Xhdrfree) (h, msg, fn, ln);
+    return (h2hv(h)->hdrfree) (h);
 }
 
 /** \ingroup header
  * Reference a header instance.
- * @todo Remove debugging entry from the ABI.
  * @param h            header
- * @param msg
- * @param fn
- * @param ln
  * @return             new header reference
  */
 /*@unused@*/ static inline
-Header XheaderLink(Header h, /*@null@*/ const char * msg,
-               const char * fn, unsigned ln)
+Header headerLink(Header h)
        /*@modifies h @*/
 {
-    return (h2hv(h)->Xhdrlink) (h, msg, fn, ln);
+    return (h2hv(h)->hdrlink) (h);
 }
 
 /** \ingroup header
  * Dereference a header instance.
- * @todo Remove debugging entry from the ABI.
  * @param h            header
- * @param msg
- * @param fn
- * @param ln
  * @return             new header reference
  */
 /*@unused@*/ static inline
-Header XheaderUnlink(/*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+Header headerUnlink(/*@killref@*/ /*@null@*/ Header h)
        /*@modifies h @*/
 {
     /*@-abstract@*/
     if (h == NULL) return NULL;
     /*@=abstract@*/
-    return (h2hv(h)->Xhdrunlink) (h, msg, fn, ln);
+    return (h2hv(h)->hdrunlink) (h);
 }
 
 /*@-exportlocal@*/
index bd44287..7ac19cf 100644 (file)
@@ -98,19 +98,11 @@ _free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p) /*@modifies *p @*/
  * @return             referenced header instance
  */
 static
-Header XheaderLink(Header h, /*@null@*/ const char * msg,
-               const char * fn, unsigned ln)
+Header headerLink(Header h)
        /*@modifies h @*/
 {
-/*@-nullret@*/
-    if (h == NULL) return NULL;
-/*@=nullret@*/
-
-    h->nrefs++;
-/*@-modfilesystem@*/
-if ((_h_debug > 0 || (h->flags & HEADERFLAG_DEBUG)) && msg != NULL)
-fprintf(stderr, "--> h  %p ++ %d blob %p flags %x %s at %s:%u\n", h, h->nrefs, h->blob, h->flags, msg, fn, ln);
-/*@=modfilesystem@*/
+    if (h != NULL)
+       h->nrefs++;
     /*@-refcounttrans @*/
     return h;
     /*@=refcounttrans @*/
@@ -122,16 +114,11 @@ fprintf(stderr, "--> h  %p ++ %d blob %p flags %x %s at %s:%u\n", h, h->nrefs, h
  * @return             NULL always
  */
 static /*@null@*/
-Header XheaderUnlink(/*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+Header headerUnlink(/*@killref@*/ /*@null@*/ Header h)
        /*@modifies h @*/
 {
-    if (h == NULL) return NULL;
-/*@-modfilesystem@*/
-if ((_h_debug > 0 || (h->flags & HEADERFLAG_DEBUG)) && msg != NULL)
-fprintf(stderr, "--> h  %p -- %d blob %p flags %x %s at %s:%u\n", h, h->nrefs, h->blob, h->flags, msg, fn, ln);
-/*@=modfilesystem@*/
-    h->nrefs--;
+    if (h)
+       h->nrefs--;
     return NULL;
 }
 
@@ -141,11 +128,10 @@ fprintf(stderr, "--> h  %p -- %d blob %p flags %x %s at %s:%u\n", h, h->nrefs, h
  * @return             NULL always
  */
 static /*@null@*/
-Header XheaderFree(/*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+Header headerFree(/*@killref@*/ /*@null@*/ Header h)
        /*@modifies h @*/
 {
-    (void) XheaderUnlink(h, msg, fn, ln);
+    (void) headerUnlink(h);
 
     /*@-usereleased@*/
     if (h == NULL || h->nrefs > 0)
@@ -200,7 +186,7 @@ Header headerNew(void)
 
     h->nrefs = 0;
     /*@-globstate -observertrans @*/
-    return headerLink(h, "headerNew");
+    return headerLink(h);
     /*@=globstate =observertrans @*/
 }
 
@@ -960,7 +946,7 @@ Header headerLoad(/*@kept@*/ void * uh)
     h->index = xcalloc(h->indexAlloced, sizeof(*h->index));
     h->flags |= HEADERFLAG_SORTED;
     h->nrefs = 0;
-    h = headerLink(h, "headerLoad");
+    h = headerLink(h);
 
     /*
      * XXX XFree86-libs, ash, and pdksh from Red Hat 5.2 have bogus
@@ -1116,7 +1102,7 @@ Header headerReload(/*@only@*/ Header h, int tag)
     void * uh = doHeaderUnload(h, &length);
 /*@=boundswrite@*/
 
-    h = headerFree(h, "headerReload");
+    h = headerFree(h);
     /*@=onlytrans@*/
     if (uh == NULL)
        return NULL;
@@ -3330,7 +3316,7 @@ static /*@null@*/
 HeaderIterator headerFreeIterator(/*@only@*/ HeaderIterator hi)
        /*@modifies hi @*/
 {
-    hi->h = headerFree(hi->h, "Iterator");
+    hi->h = headerFree(hi->h);
     hi = _free(hi);
     return hi;
 }
@@ -3348,7 +3334,7 @@ HeaderIterator headerInitIterator(Header h)
 
     headerSort(h);
 
-    hi->h = headerLink(h, "Iterator");
+    hi->h = headerLink(h);
     hi->next_index = 0;
     return hi;
 }
@@ -3427,9 +3413,9 @@ Header headerCopy(Header h)
 
 /*@observer@*/ /*@unchecked@*/
 static struct HV_s hdrVec1 = {
-    XheaderLink,
-    XheaderUnlink,
-    XheaderFree,
+    headerLink,
+    headerUnlink,
+    headerFree,
     headerNew,
     headerSort,
     headerUnsort,
index 086b8bc..a3f69a4 100644 (file)
@@ -306,8 +306,7 @@ Header (*HDRnew) (void)
  * @return             NULL always
  */
 typedef
-/*@null@*/ Header (*HDRfree) (/*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+/*@null@*/ Header (*HDRfree) (/*@killref@*/ /*@null@*/ Header h)
         /*@modifies h @*/;
 
 /** \ingroup header
@@ -316,8 +315,7 @@ typedef
  * @return             referenced header instance
  */
 typedef
-Header (*HDRlink) (Header h, /*@null@*/ const char * msg,
-               const char * fn, unsigned ln)
+Header (*HDRlink) (Header h)
         /*@modifies h @*/;
 
 /** \ingroup header
@@ -326,8 +324,7 @@ Header (*HDRlink) (Header h, /*@null@*/ const char * msg,
  * @return             NULL always
  */
 typedef
-Header (*HDRunlink) (/*@killref@*/ /*@null@*/ Header h,
-               /*@null@*/ const char * msg, const char * fn, unsigned ln)
+Header (*HDRunlink) (/*@killref@*/ /*@null@*/ Header h)
         /*@modifies h @*/;
 
 /** \ingroup header
@@ -658,9 +655,9 @@ int (*HDRnextiter) (HeaderIterator hi,
  */
 typedef /*@abstract@*/ struct HV_s * HV_t;
 struct HV_s {
-    HDRlink    Xhdrlink;
-    HDRunlink  Xhdrunlink;
-    HDRfree    Xhdrfree;
+    HDRlink    hdrlink;
+    HDRunlink  hdrunlink;
+    HDRfree    hdrfree;
     HDRnew     hdrnew;
     HDRsort    hdrsort;
     HDRunsort  hdrunsort;
@@ -719,10 +716,6 @@ void * headerFreeData( /*@only@*/ /*@null@*/ const void * data, rpmTagType type)
     return NULL;
 }
 
-#define        headerLink(_h, _msg)    XheaderLink(_h, _msg, __FILE__, __LINE__)
-#define        headerUnlink(_h, _msg)  XheaderUnlink(_h, _msg, __FILE__, __LINE__)
-#define        headerFree(_h, _msg)    XheaderFree(_h, _msg, __FILE__, __LINE__)
-
 #if !defined(__HEADER_PROTOTYPES__)
 #include <hdrinline.h>
 #endif
index 24beaa7..20db5d9 100644 (file)
@@ -624,6 +624,32 @@ int rpmdbOpenAll(rpmdb db)
     return rc;
 }
 
+int rpmdbCloseDBI(rpmdb db, int rpmtag)
+{
+    int dbix;
+    int rc = 0;
+
+    if (db == NULL || db->_dbi == NULL || dbiTags == NULL)
+       return 0;
+
+    for (dbix = 0; dbix < dbiTagsMax; dbix++) {
+       if (dbiTags[dbix] != rpmtag)
+           continue;
+/*@-boundswrite@*/
+       if (db->_dbi[dbix] != NULL) {
+           int xx;
+           /*@-unqualifiedtrans@*/             /* FIX: double indirection. */
+           xx = dbiClose(db->_dbi[dbix], 0);
+           if (xx && rc == 0) rc = xx;
+           db->_dbi[dbix] = NULL;
+           /*@=unqualifiedtrans@*/
+       }
+/*@=boundswrite@*/
+       break;
+    }
+    return rc;
+}
+
 /* XXX query.c, rpminstall.c, verify.c */
 int rpmdbClose(rpmdb db)
 {
@@ -1033,7 +1059,7 @@ if (rc == 0)
            mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &offset, sizeof(offset));
            h = rpmdbNextIterator(mi);
            if (h)
-               h = headerLink(h, "rpmdbFindByFile");
+               h = headerLink(h);
            mi = rpmdbFreeIterator(mi);
        }
 
@@ -1067,7 +1093,7 @@ if (rc == 0)
 
        baseNames = hfd(baseNames, bnt);
        dirNames = hfd(dirNames, dnt);
-       h = headerFree(h, "rpmdbFindByFile");
+       h = headerFree(h);
     }
 
     rec = _free(rec);
@@ -1404,7 +1430,7 @@ static int miFreeHeader(rpmdbMatchIterator mi, dbiIndex dbi)
        data->size = 0;
     }
 
-    mi->mi_h = headerFree(mi->mi_h, "mi->mi_h");
+    mi->mi_h = headerFree(mi->mi_h);
 
 /*@-nullstate@*/
     return rc;
@@ -2245,7 +2271,7 @@ memset(data, 0, sizeof(*data));
        mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &hdrNum, sizeof(hdrNum));
        h = rpmdbNextIterator(mi);
        if (h)
-           h = headerLink(h, "rpmdbRemove");
+           h = headerLink(h);
        mi = rpmdbFreeIterator(mi);
     }
 
@@ -2520,7 +2546,7 @@ if (key->size == 0) key->size++;  /* XXX "/" fixup. */
 
     (void) unblockSignals(db, &signalMask);
 
-    h = headerFree(h, "rpmdbRemove");
+    h = headerFree(h);
 
     /* XXX return ret; */
     return 0;
@@ -3403,7 +3429,7 @@ int rpmdbRebuild(const char * prefix)
            {   Header nh = (headerIsEntry(h, RPMTAG_HEADERIMAGE)
                                ? headerCopy(h) : NULL);
                rc = rpmdbAdd(newdb, -1, (nh ? nh : h));
-               nh = headerFree(nh, "rpmdbRebuild");
+               nh = headerFree(nh);
            }
 
            if (rc) {
index cdf7fd2..1f8d15e 100644 (file)
@@ -837,6 +837,16 @@ int rpmdbVerify(/*@null@*/ const char * prefix)
        /*@globals fileSystem @*/
        /*@modifies fileSystem @*/;
 
+/**
+ * Close a single database index.
+ * @param db           rpm database
+ * @param rpmtag       rpm tag
+ * @return              0 on success
+ */
+int rpmdbCloseDBI(/*@null@*/ rpmdb db, int rpmtag)
+       /*@globals fileSystem @*/
+       /*@modifies db, fileSystem @*/;
+
 /** \ingroup rpmdb
  * Close all database indices and free rpmdb.
  * @param db           rpm database
index 615be6f..584372f 100644 (file)
@@ -30,7 +30,7 @@ int main(int argc, char ** argv)
     Fclose(fdi);
   
     headerDump(h, stdout, HEADER_DUMP_INLINE, rpmTagTable);
-    h = headerFree(h, "headerDump");
+    h = headerFree(h);
 
     return 0;
 }
index 30041e6..2348868 100644 (file)
@@ -57,7 +57,7 @@ static inline Item freeItem(Item item) {
     if (item != NULL) {
        item->path = _free(item->path);
        item->this = rpmdsFree(item->this);
-       item->h = headerFree(item->h, NULL);
+       item->h = headerFree(item->h);
        item = _free(item);
     }
     return NULL;
@@ -274,7 +274,7 @@ static int ftsStashLatest(FTSENT * fts, rpmts ts)
     }
     st = NULL;
     items[i]->this = rpmdsThis(h, RPMTAG_PROVIDENAME, RPMSENSE_EQUAL);
-    items[i]->h = headerLink(h, NULL);
+    items[i]->h = headerLink(h);
 
     if (nitems > 1)
        qsort(items, nitems, sizeof(*items), cmpItem);
@@ -286,7 +286,7 @@ static int ftsStashLatest(FTSENT * fts, rpmts ts)
 #endif
 
 exit:
-    h = headerFree(h, NULL);
+    h = headerFree(h);
     add = rpmdsFree(add);
     return ec;
 }
index a5b973f..529c454 100644 (file)
@@ -148,7 +148,7 @@ restart:
 
        if (rpmrc == RPMRC_OK || rpmrc == RPMRC_BADSIZE) {
            rc = rpmtsAddInstallElement(ts, h, (fnpyKey)fileName, 0, NULL);
-           headerFree(h, "do_tsort"); 
+           h = headerFree(h); 
            continue;
        }
 
index b90c3a9..fdbd3aa 100644 (file)
@@ -423,11 +423,11 @@ headerInject(Header *hdrp, cmd_t *cmds[], int ncmds)
        
        addChangelogEntry(h, *getBuildTime(), name, text);
        headerCopyTags(*hdrp, h, cltags);
-       headerFree(*hdrp, "headerInject *hdrp");
        headerSort(h);
+       *hdrp = headerFree(*hdrp);
        *hdrp = h;
     } else {
-       headerFree(h, "headerInject h");
+       h = headerFree(h);
     }
 
     return ec;
index 1ff5e32..0a0a706 100644 (file)
@@ -173,7 +173,7 @@ restart:
 
        if (rc == 0) {
            rc = rpmtsAddInstallElement(ts, h, (fnpyKey)fileName, 0, NULL);
-           headerFree(h, "do_tsort"); 
+           h = headerFree(h); 
            continue;
        }